:root {
    --bg-dark: #010C1A;
    --active-teal: #00D2D3;
    --text-color: #8892B0;
    ---text-color-secondary: #94a3b8;
    --light-slate: #CCD6F6;
    --secondary-blue: #35A2C7;
    --slate-dark: #5e687a;
    --navy: #1c2736;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth !important;
}

::-webkit-scrollbar {
    display: flex;
    width: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(0, 210, 211, 1) 50%, rgba(53, 162, 199, 1) 100%);
    border-radius: 12px;
}

body {
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
    font-family: "Poppins", Helvetica, sans-serif;
}

body.loading {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

a {
    text-decoration: none !important;
    color: var(--text-color);
}


/* Preloader Start*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.5s, transform 0.5s;
}

.preloader.onload {
    opacity: 0;
    transform: scale(3);
}

.preloader .loader {
    text-align: center;
}

.preloader .loader .eye-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 3px solid var(--active-teal);
    border-radius: 50%;
    position: relative;
    animation: pulse 1s infinite;
}

.preloader .loader .eye-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--active-teal);
    border-radius: 50%;
}

.preloader .loader .loading-text {
    color: var(--active-teal);
    font-size: 24px;
    font-weight: 700;
    animation: fadeInOut 1s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Preloader end */


/* Header Start */
.header {
    max-width: 1440px;
    width: 100%;
    height: 65px;
    background: rgb(1, 12, 26, 0.2);
    backdrop-filter: blur(50px);
    position: fixed;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    border-radius: 25px;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: top 0.4s ease;
    z-index: 9999;
}

.header.down {
    top: 1%;
}

.header .header-main {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.header-main a {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-main a:nth-child(2) {
    opacity: 0;
}

.header-main a img {
    width: 100%;
}

.header-logo-item {
    font-size: 20px;
    color: var(--text-color);
}

.header .header-items nav a {
    margin-left: 1rem;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.5s ease;
}

.header .header-items nav a.active,
.header .header-items nav a:hover {
    color: var(--active-teal);
}

.header .header-items nav a::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--active-teal);
    scale: 0;
    transition: scale 0.5s ease;
}

.header .header-items nav a:hover::before {
    scale: 1;
}

.header .header-items nav a.active::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--active-teal);
    scale: 1;
    transition: scale 0.5s ease;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    z-index: 999;
}

.header .contact_us {
    display: flex;
}

.header .contact_us .contact_us_us {
    border-radius: 15px;
    padding: 6px 10px;
    background: transparent;
    color: var(--active-teal);
    border: 2px solid var(--active-teal);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: background 0.3s ease, color 0.3s ease;
}

.header .contact_us .contact_us_us:hover {
    background: var(--active-teal);
    color: var(--bg-dark);
}

/* Header End */


/* Particle Start */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #0D121B;
}

/* Particles End */

/* Footer Start */
footer {
    background: var(--navy);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 30px 0;
    position: relative;
    z-index: 1;
}

.footer-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgb(53, 162, 199, 0.4) 0%, #00D2D3 50%, rgb(53, 162, 199, 0.4) 100%);
    border-radius: 10px;
    margin-bottom: 4rem;
    box-shadow: 0 0px 5px 5px rgba(28, 39, 54, 0.4);
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.footer-cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--navy);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.cta-button {
    display: inline-block;
    border-radius: 25px;
    padding: 15px 25px;
    background: #fff;
    color: var(--active-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 0px 1px 5px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 0px 10px 5px rgba(0, 0, 0, 0.3);
    background: var(--active-teal);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding: 0px 15px 50px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--active-teal);
    position: relative;
    padding-bottom: 5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--active-teal);
    border-radius: 2px;
}

.footer-section p,
.footer-section span {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    margin-top: 0.7rem;
}

.footer-section span a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-section span a:hover {
    transform: translate(8px, -2px);
    color: var(--active-teal);
}

.social-links {
    display: flex;
    margin-top: 1rem;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 2px solid var(--active-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 0.5rem;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--active-teal);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.social-link i {
    position: relative;
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--active-teal);
    z-index: 0;
    transition: all 0.3s;
}

.social-link:hover {
    color: var(--navy);
    transform: translateY(-5px);
}

.social-link:hover::before {
    width: 105%;
    height: 105%;
}

.footer-column h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--active-teal);
    position: relative;
    padding-bottom: 5px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--active-teal);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--active-teal);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(0,
            210,
            211, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--active-teal);
    font-size: 16px;
}

.contact-text {
    padding-top: 5px;
    font-size: 15px;
}

.contact-text a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--active-teal);
}

.footer-bottom {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #94a3b8;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 25px;
    list-style: none;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--active-teal);
}

/* Footer End */

/* Back to top start */
#backtotop {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 99999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--active-teal);
    color: var(--bg-dark);
    cursor: pointer;
    transform: translateY(150px);
    transition: transform 0.3s;
}

#backtotop.show {
    transform: translateY(0px);
}

#backtotop:hover {
    transform: translateY(-4px);
}


#backtotop .fa-solid {
    font-size: 1rem;
    font-weight: bold;
}

/* Back To Top End */