:root {
    --background-primary: #1d4ed8;
    --background-secondary: #3b82f6;
    --background-tertiary: #4BB8FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    font-style: normal;
    /* background: #f5f9ff; */
    background: rgb(245, 249, 255) !important;
    /* color: #1f2937; */
}

.cursor {
    width: 12px;
    height: 12px;
    /* background-color: #d8b48a; */
    background: var(--background-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.1s ease;
    z-index: 9999;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4);
}

.header-container {
    width: 95%;
    max-width: 1300px;
    margin: auto;
}

/* ================= MOBILE MENU ================= */

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    /* color: white; */
    color: #383838;
    font-size: 30px;
    cursor: pointer;
}

/* Drawer */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    z-index: 2000;

    /* background: linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6); */
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    transition: .4s ease;
    padding: 80px 25px;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    z-index: 1999;
    transition: .3s;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-drawer {
    position: absolute;
    top: 20px;
    right: 20px;

    background: none;
    border: none;
    color: #383838;
    /* color: white; */
    font-size: 28px;
    cursor: pointer;
}

.mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu a,
.mobile-dropdown-header {
    display: block;
    /* color: white; */
    color: #383838;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 0;
    font-size: 17px;
    cursor: pointer;
}

/* Mobile Dropdown */

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
    padding-left: 15px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 500px;
}

.mobile-dropdown-menu a {
    font-size: 15px;
    opacity: .9;
}

.mobile-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .nav-links,
    .header-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    /* nav {
        padding: 20px 0;
    } */
}

/* ================Dropdown Container ============================ */
.header-dropdown {
    position: relative;
}

/* Dropdown Menu */
.header-dropdown-menu {
    position: absolute;
    top: 140%;
    left: 0;
    min-width: 370px;
    list-style: none;
    padding: 12px 0;
    border-radius: 10px;
    /* background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.98),
            rgba(29, 78, 216, 0.95),
            rgba(59, 130, 246, 0.9)); */
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border: 1px solid rgba(255, 255, 255, 0.12); */
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(59, 130, 246, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(.96);
    transition: all .35s ease;
    overflow: hidden;
}

/* Show Dropdown on Hover */
.header-dropdown:hover .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Items */
.header-dropdown-menu li {
    width: 100%;
}

.header-dropdown-menu a {
    display: block;
    padding: 14px 22px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    border-left: 3px solid transparent;
}

/* Hover Effect */
.header-dropdown-menu a:hover {
    /* background: rgba(255, 255, 255, 0.08); */
    /* color: #fff; */
    /* border-left-color: #60a5fa; */
    padding-left: 30px;
}

.header-dropdown:hover>a {
    /* color: #93c5fd; */
    color: var(--background-primary);
}

/* ================ Header Dropdown CSS end ============================ */


/* ==================== Header CSS start ========================= */
/* Header */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 25px 0; */
    transition: all .3s ease;
}

.header-contact {
    background:
        linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow .4s ease;
    box-shadow: none;
}

header.scrolled {
    /* background:
        linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6); */
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    /* backdrop-filter: blur(15px); */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    animation: slideDown .4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo {
    /* border: 1px solid gray; */
    height: 120px;
    width: 200px;
    display: flex;
    align-items: center;
}

/* .logo a {
    color: #fff;
    font-size: clamp(18px, 1.5vw, 28px);
    font-weight: 700;
    text-decoration: none;
} */

.nav-links a {
    /* color: #fff; */
    color: rgb(3, 3, 94);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.5vw, 16px);
}

.nav-links a:hover {
    color: var(--background-primary);
}

.header-btn-outline {
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
}

.nav-links {
    display: flex;
    align-items: center;
    height: 100%;
    list-style: none;
    gap: 35px;
}


.header-btn {
    text-decoration: none;
    /* padding: 14px 30px; */
    padding: clamp(10px, 1.5vw, 14px) clamp(15px, 1.5vw, 30px);
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    border: 1px solid transparent;
    background-color: var(--background-primary);
    color: #fff;
}


.header-btn-outline:hover {
    /* background: white;
    color: #2563eb; */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .6);
    color: #2563eb;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

/* ==================== Header CSS end ========================= */

/* ======================== Hero section CSS start ======================== */
/* Hero */
.hero {
    min-height: 100vh;
    /* background:
        linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6); */
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0px 30px;
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(var(--x1), var(--y1));
    }

    50% {
        transform: translate(var(--x2), var(--y2));
    }

    75% {
        transform: translate(var(--x3), var(--y3));
    }

    100% {
        transform: translate(0, 0);
    }
}

/* .hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(20deg, #E7F4FD, #509ce7);
    box-shadow: 0 6px rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: -200px;
    right: -100px;
} */

.planet {
    position: absolute;
    width: 1800px;
    top: -340px;
    right: -650px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    /* background: rgba(255, 255, 255, .15); */
    background: #fff;
    color: var(--background-secondary);
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-text h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: rgb(3, 3, 94);
}

.hero-text h1 span {
    color: var(--background-secondary);
}

.hero-text p {
    font-size: 18px;
    /* color: rgba(255, 255, 255, .8); */
    color: #383838;
    font-weight: 500;
    max-width: 600px;
    margin-bottom: 40px;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: #2563eb;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .4);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
}

/* Glass Cards */
.hero-image {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.glass-card {
    padding: clamp(12px, 2.5vw, 40px);
    border-radius: 25px;
    /* background: rgba(255, 255, 255, .12); */
    background: #fff;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.glass-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: rgb(3, 3, 94);
    font-weight: 700;
}

.glass-card p {
    /* opacity: .8; */
    color: var(--background-secondary);
    font-weight: 600;
    margin-bottom: 0px;
}

/* ======================== Hero section CSS end ======================== */

/* ======================== (FEATURE SECTION CSS START) ================================= */

/* Features */
.features {
    padding: clamp(20px, 5.5vw, 100px) 0px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-weight: 800;
    font-size: 42px;
    /* color: #0f172a; */
    color: #383838;
}

.section-title p {
    color: #64748b;
    margin-top: 15px;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    /* background: linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6); */
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    backdrop-filter: blur(50px);
    transform: translateY(-10px);
    /* box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15); */
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.feature-card:hover::before {
    opacity: 1;
}

.icon {
    height: 300px;
    width: 100%;
    margin-bottom: 20px;
}

.feature-card:hover h3,
.feature-card:hover p {
    /* color: #ffff; */
    color: #383838;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #383838;
}

.feature-card p {
    color: #64748b;
    text-align: justify;
    font-weight: 500;
}

/* ======================== (FEATURE SECTION CSS END) ================================= */

/* ======================== (ABOUT SECTION CSS START) ================================= */
.about {
    padding-bottom: clamp(20px, 5.5vw, 100px);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: clamp(22px, 3.5vw, 60px);
    font-weight: 600;
    text-align: start;
    color: #383838;
}

.about-content p {
    color: #506075;
    text-align: justify;
    font-weight: 500;
}

.about-content .about-caption {
    color: #383838;
    font-size: 20px;
    font-weight: 600;
}

/* ======================== (ABOUT SECTION CSS END) ================================= */


/* ======================== (AUTHOR SECTION CSS START) ================================= */
.author-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    /* background:
        linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6); */
}

.author-card {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: white;
    border-radius: 30px;
    padding: clamp(1rem, 2.5vw, 3rem);
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); */
    overflow: hidden;
}

.author-image {
    position: relative;
}

.author-image::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 25px;
    background: linear-gradient(135deg,
            #d8b48a,
            #f7e4c7,
            #c89b65);
    z-index: 0;
}

.author-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    display: block;
}

.author-label {
    display: inline-block;
    color: #383838;
    /* color: #fff; */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.author-name {
    font-size: clamp(22px, 2.5vw, 42px);
    margin-bottom: 20px;
    color: #383838;
    /* color: #fff; */
    font-weight: 700;
}

.author-description {
    color: #383838;
    font-weight: 500;
    /* color: #fff; */
    text-align: justify;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 35px;
}

.author-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.stat h3 {
    font-size: 28px;
    color: #b68b5e;
    margin-bottom: 5px;
}

.stat span {
    color: #777;
    font-size: 14px;
}

.author-social {
    display: flex;
    gap: 15px;
}

.author-social a {
    /* text-decoration: none;
    padding: 12px 22px;
    border-radius: 50px;
    background: #f4f4f4;
    color: #333;
    font-weight: 600;
    transition: 0.3s ease; */
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
    border: 1px solid transparent;
    background: var(--background-primary);
    color: #fff;
}

.author-social a:hover {
    /* background: #b68b5e;
    color: #fff; */
    /* background: white; */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .6);
    color: #2563eb;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .author-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-image {
        max-width: 350px;
        margin: auto;
    }

    .author-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .author-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .author-name {
        font-size: 34px;
    }
}

/* ======================== (AUTHOR SECTION CSS END) ================================= */


/* ======================== (INNOVATION SECTION CSS START) ================================= */
.innovation {
    /* padding: 100px 0px; */
    padding: clamp(20px, 5.5vw, 100px) 0px;
}

/* ======================== (INNOVATION SECTION CSS END) ================================= */



/* ======================== (CTA SECTION CSS START) ================================= */
.cta {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    /* background:
        linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6); */
}

.cta-content {
    position: relative;
    z-index: 2;
    width: min(1300px, 90%);
    /* width: clamp(300px, 50%, 1400px); */
    /* max-width: 1400px; */
    text-align: center;
    /* padding: 60px; */
    padding: clamp(20px, 2.5vw, 60px);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1); */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta h2 {
    font-size: clamp(2rem, 2.5vw, 4rem);
    font-weight: 800;
    /* color: #fff; */
    color: #383838;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.cta p {
    /* color: rgba(255, 255, 255, 0.75); */
    color: #383838;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: var(--background-primary);
    border: 1px solid transparent;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
}

.cta a:hover {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .6);
    color: #2563eb;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-5px);
}

/* Animated Background */
/* .cta-bg span {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.cta-bg span:nth-child(1) {
    width: 350px;
    height: 350px;
    background: #4f46e5;
    top: -100px;
    left: -100px;
    animation: float 12s infinite ease-in-out;
}

.cta-bg span:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #9333ea;
    bottom: -100px;
    right: -50px;
    animation: float 15s infinite ease-in-out reverse;
}

.cta-bg span:nth-child(3) {
    width: 250px;
    height: 250px;
    background: #06b6d4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s infinite ease-in-out;
} */

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, -50px) scale(1.2);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
    }
}

/* ======================== (CTA SECTION CSS END) ================================= */


/* ================================== (SCROLL TO TOP BUTTON START) ================================= */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); */
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    /* Hidden by default, prepared for fade-in effect */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
}

.to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ================================== (SCROLL TO TOP BUTTON END) ================================= */


/* ============================================ (CONTACT FORM CSS START) ======================================= */
/* .glass-card {
    max-width: 550px;
    margin: auto;
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
} */

/* .glass-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.15),
            transparent 70%);
    top: -100px;
    right: -100px;
} */

.form-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    font-size: 15px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
    display: block !important;
}

.iti__selected-country-primary:hover {
    background: transparent !important;
}

.iti {
    display: block !important;
}

.iti__search-input {
    background: #4bb7fa5e !important;
    border: none !important;
    color: #fff !important;
}

.iti--inline-dropdown .iti__dropdown-content {
    padding: 10px;
    background: var(--background-secondary);
    border-radius: 10px;
}

.iti__country-list {
    margin-top: 15px !important;
}

.iti__country {
    border-radius: 5px;
    color: #fff;
}

.iti__dial-code {
    color: #fff !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}

.form-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* background-color: #fff; */
    background: rgba(255, 255, 255, 0.8);
    padding: clamp(20px, 2.5vw, 50px);
    border-radius: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    /* height: 60px; */
    padding: 18px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: #4bb7fa5e;
    /* background: rgb(178 178 189 / 76%); */
    /* background: var(--background-tertiary); */
    color: #383838;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.input-group textarea::placeholder {
    /* color: #fff; */
    color: #383838;
    opacity: 0.7;
    font-weight: 500;
}

.input-group select {
    appearance: base-select;
    background: #4bb7fa5e;
    /* background: rgb(178 178 189 / 76%); */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    width: 100%;
    padding: 18px 20px;
}

::picker(select) {
    appearance: base-select;
    height: 300px;
    /* background: linear-gradient(135deg,
            rgba(15, 23, 42, 0.98),
            rgba(29, 78, 216, 0.95),
            rgba(59, 130, 246, 0.9)); */
    /* border: 1px solid rgba(255, 255, 255, 0.15); */
    background: var(--background-secondary);
    border: none;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    z-index: 999;
    position: relative;
}

::picker(select)::-webkit-scrollbar {
    width: 12px;
    /* border-top-right-radius: 10px; */
}

::picker(select)::-webkit-scrollbar-track {
    /* background: #f1f1f1; */
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
}

::picker(select)::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
}

select::picker-icon {
    transition: 150ms ease;
}

select:open {
    border-color: rgba(255, 255, 255, 0.4);
    background: #4bb7fa5e;
    /* background: rgb(178 178 189 / 76%); */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

select:open::picker-icon {
    rotate: 180deg;
}

select option {
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 1px;
    color: #fff;
}

select option:checked {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

select {
    opacity: 0.7;
    font-weight: 500;
}

/* When a real option is selected */
select.valid {
    /* color: white; */
    color: #383838;
    opacity: 1;
    font-weight: 400;
}

.input-group input::placeholder {
    /* color: #fff; */
    color: #383838;
    opacity: 0.7;
    font-weight: 500;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: #4bb7fa5e;
    /* background: rgb(178 178 189 / 76%); */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

/* .input-group select:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
} */

.input-group label {
    position: absolute;
    left: 18px;
    top: 18px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: 0.3s ease;
    background: transparent;
}

.input-group input:focus+label,
.input-group input:valid+label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    padding: 0 8px;
    color: #fff;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
}

/* .input-group select:focus+label,
.input-group select:valid+label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    padding: 0 8px;
    color: #fff;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
} */

/* .input-group select option {
    background: #111;
    color: #fff;
} */

.submit-btn {
    width: 100%;
    height: 60px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: #fff;
    /* background: linear-gradient(135deg,
            #6a11cb,
            #2575fc); */
    background: var(--background-secondary);
    border: 1px solid transparent;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    border: 1px solid rgba(255, 255, 255, .6);
    color: #2563eb;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-3px);
}

.submit-btn:active {
    transform: translateY(0);
}

.modal-wrapper {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 350px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /* background-color: rgb(0, 0, 0); */
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-container {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 20px 0px;
    border: 1px solid #888;
    border-radius: 20px;
    width: min(600px, 90%);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-text {
    font-size: clamp(15px, 3.5vw, 30px);
    margin-top: 20px;
    font-weight: 700;
    color: #3b82f6;
}

.loading {
    width: 8px;
    height: 8px;
    background: #FFF;
    border-radius: 100%;
    float: left;
    margin-right: 5px;
}

.loading-0 {
    -webkit-animation-name: bounce 1s infinite;
    -webkit-animation-delay: .1s;
    background: #3b82f6
}

.loading-1 {
    -webkit-animation: bounce 1s infinite;
    -webkit-animation-delay: .3s;
    background: #3b82f6;
}

.loading-2 {
    -webkit-animation: bounce 1s infinite ease;
    -webkit-animation-delay: .5s;
    background: #3b82f6;
}

.loading-3 {
    -webkit-animation: bounce 1s infinite ease;
    -webkit-animation-delay: .7s;
    background: #3b82f6;
}

@-webkit-keyframes bounce {

    0%,
    100% {
        opacity: 1;
    }

    60% {
        opacity: .0;

    }
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/* ============================================ (CONTACT FORM CSS END) ======================================= */


/* ============================================ (INNOVATION PAGES CSS START) ======================================= */
.innovation-hero {
    min-height: 70vh;
    /* background:
        linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6); */
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 999;
}

/* .innovation-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    top: -200px;
    right: -100px;
} */

.innovation-content {
    z-index: 9999;
}

.innovation-text .tag {
    display: inline-block;
    padding: 10px 18px;
    /* background: rgba(255, 255, 255, .15); */
    background: #fff;
    border-radius: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    /* color: #fff; */
    color: #383838;
}

.innovation-text h1 {
    font-size: clamp(25px, 3vw, 60px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    /* color: #fff; */
    color: rgb(3, 3, 94);
}

.innovation-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, .8);
    max-width: 600px;
    /* margin-bottom: 40px; */
    text-align: center;
    /* color: #fff; */
    color: #383838;
    font-weight: 500;
}


.content-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: #0d6efd;
    font-weight: 600;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    background-color: #e8f1ff;
    /* background-color: rgba(255, 255, 255, .15); */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, .15); */
    border-radius: 30px;
    padding: 10px 20px;
}

.section-header h2 {
    font-size: clamp(20px, 2vw, 42px);
    margin: 30px 0 10px;
    font-weight: 800;
    color: #383838;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* Gallery */
.gallery-section {
    padding: clamp(20px, 2.5vw, 80px) 0;
}

.gallery-container {
    width: 90%;
    max-width: 1600px;
    margin: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-auto-rows: 250px; */
    gap: 20px;
}

/* .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
} */

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    /* min-height: 500px; */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    /* height: clamp(200px, 100dvh, 500px); */
    /* object-fit: cover; */
    /* aspect-ratio: 16 / 9; */
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.large {
    grid-column: span 2;
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

/* Content Section */
.content-section {
    padding: clamp(20px, 3.5vw, 100px) 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* align-items: center; */
    gap: 60px;
}

.content-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.tag {
    display: inline-block;
    padding: 8px 18px;
    background: #e8f1ff;
    color: #0d6efd;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-text h2 {
    font-size: clamp(20px, 2vw, 42px);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #383838;
}

.content-text .subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #383838;
}

.content-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.btn {
    display: inline-block;
    text-decoration: none;
    background: #0d6efd;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    margin-top: 10px;
    transition: .3s;
}

.btn:hover {
    background: #084dc4;
    transform: translateY(-3px);
}

/* Tablet */
@media(max-width:992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .content-text {
        order: 2;
    }

    .content-image {
        order: 1;
    }
}

/* Mobile */
@media(max-width:576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .large,
    .wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .section-header h2,
    .content-text h2 {
        font-size: 30px;
    }
}



/* .innovation-section {
    padding: 120px 0;
    background: linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(0, 102, 255, 0.08);
    color: #0066ff;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.8;
}

.innovation-timeline {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-card {
    display: flex;
    gap: 30px;
    padding: 40px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2);

    transition: all .4s ease;
}

.timeline-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.12);
}

.step-number {
    min-width: 90px;
    height: 90px;
    border-radius: 50%;

    background: linear-gradient(135deg,
            #1d4ed8,
            #3b82f6);

    color: white;
    font-size: 32px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}

.section-header h2 {
    color: white;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.card-content h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 15px;
}

.card-content p {
    color: #dbeafe;
    line-height: 1.9;
} */


/* ============================================ (INNOVATION PAGES CSS END) ======================================= */


/* Footer */
.footer {
    background: linear-gradient(135deg, #E7F4FD, #AFD5FC);
    /* background:
        linear-gradient(135deg,
            #0f172a,
            #1d4ed8,
            #3b82f6); */
    /* color: #fff; */
    color: #383838;
    font-weight: 500;
    padding: 40px 0 24px;
    position: relative;
    text-align: center;
    text-wrap: balance;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: clamp(20px, 5.5vw, 100px);
}

.footer .website {
    text-decoration: none;
    /* color: #fff; */
    color: #383838;
    font-weight: 500;
}

.footer .website:hover {
    /* color: var(--background-secondary); */
    /* text-decoration: underline; */
    color: var(--background-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #60a5fa;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all .3s ease;
}

.footer-col ul li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}



/* Responsive Footer */
@media (max-width: 992px) {
    .cursor {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }
}

/* Responsive */
@media(max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 50px;
    }

    /* .feature-grid {
        grid-template-columns: 1fr;
    } */

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        display: none;
    }
}

@media(max-width: 576px) {

    .hero-text h1 {
        font-size: 38px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .btn {
        padding: 12px 24px;
    }
}