:root {
    --dark-navy-blue: #17206A;
    --deep-blue: #0A1FAF;
    --royel-blue: #1E5BFF;
    --cyan: #16C7FF;
    --purple: #7A00FF;
    --magenta: #E933B8;
    --orange: #FF7A00;
    --yellow-orange: #FFC300;
    --white: #fff;
    --black: #000;
    --Montserrat: "Montserrat", sans-serif;
    --Poppins: "Poppins", sans-serif;
    --lato: "Lato", sans-serif;
}

/* h1 {
    background: linear-gradient(90deg,#0A1FAF,#16C7FF,#7A00FF,#E933B8,#FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: var(--Montserrat);
    background: #f6f7fc;
    overflow-x: hidden;
    position: relative;
    font-size: 15px;
}

input,
select,
textarea {
    outline: none;
}

a {
    text-decoration: none;
    color: var(--dark-navy-blue);
    display: inline-block;
}

a:hover {
    text-decoration: none;
}

.button {
    padding: 9px 30px;
    background: linear-gradient(90deg, #7A00FF, #E933B8, #FF7A00);
    color: var(--white);
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    transition: 0.5s all ease;
}

.button:hover {
    transition: 0.5s all ease;
    background: linear-gradient(270deg, #7A00FF, #E933B8, #FF7A00);
    color: var(--white);
}

.title {
    font-size: 28px;
    font-weight: 500;
    color: #444;
}

ul {
    list-style-type: none;
    margin-bottom: 0px;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 90%;
    padding: 0px 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 95%;
    padding: 0px 15px;
    margin-right: auto;
    margin-left: auto;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.content-center {
    display: grid;
    place-content: center;
}

.d-flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-around {
    display: flex;
    justify-content: space-around;
}

.flex-between-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-around-center {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

@media max-width(480px) {
    .flex-column {
        display: flex;
        flex-direction: column;
    }

    .full {
        width: 100%;
    }
}

.d-block {
    display: block;
}

.align-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}




/* =========================
        HEADER
==========================*/

header {
    padding: 22px 0;
    position: relative;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo img {
    width: 220px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu li a {
    color: var(--dark-navy-blue);
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: var(--royel-blue);
}

.nav-menu li.active a {
    color: var(--royel-blue);
}

.nav-menu li.active a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background: var(--royel-blue);
    border-radius: 10px;
}

.dropdown i {
    font-size: 12px;
    margin-left: 5px;
}

.header-btn {
    padding: 16px 34px;
    border-radius: 14px;
    background: linear-gradient(90deg,
            var(--purple),
            var(--magenta),
            var(--orange));
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
}

.header-btn:hover {
    transform: translateY(-3px);
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    color: var(--dark-navy-blue);
    cursor: pointer;
}

/* =========================
            HERO
        ==========================*/

.hero-section {
    position: relative;
    /* padding: 30px 0 70px; */
    overflow: hidden;
}

.heroOver {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.0));
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.heroContent {
    position: relative;
    z-index: 5;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 91, 255, 0.08);
    border: 1px solid rgba(30, 91, 255, 0.1);
    color: var(--royel-blue);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 28px;
}

.mini-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--royel-blue);
    border-radius: 50%;
}

.hero-title {
    font-size: 40px;
    line-height: 1.1;
    color: var(--dark-navy-blue);
    font-weight: 800;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(90deg,
            var(--royel-blue),
            var(--purple),
            var(--magenta),
            var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    max-width: 600px;
    margin-bottom: 25px;
    font-family: var(--Poppins);
    margin-top: 10px;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 55px;
}

.primary-btn {
    padding: 18px 34px;
    border-radius: 16px;
    background: linear-gradient(90deg,
            var(--purple),
            var(--magenta),
            var(--orange));
    color: var(--white);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: 0.4s;
}

.primary-btn:hover {
    transform: translateY(-4px);
}

.secondary-btn {
    padding: 18px 30px;
    border-radius: 16px;
    border: 1px solid #cfd6ff;
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-navy-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
            STATS
==========================*/

.hero-stats {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 15px;
    border-radius: 16px;
    /* border: 1px solid #cfd6ff;
            background: rgba(255, 255, 255, 0.8); */
    color: var(--dark-navy-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

/* 
        .stat-item:hover {
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        } */

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(122, 0, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--royel-blue);
    font-size: 20px;
    background: white;
}

.stat-content h3 {
    color: var(--dark-navy-blue);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-content p {
    color: #59608f;
    font-size: 15px;
    font-weight: 500;
}

/* =========================
        RIGHT IMAGE
==========================*/


.hero-right::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(122, 0, 255, 0.2),
            transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}


.desktopBanner {
    display: block;
}

.mobileBanner {
    display: none;
}





/* ===========================
            TRUSTED BRAND SECTION
        =========================== */

.trusted-section {
    padding-top: 35px;
}

.trusted-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(23, 32, 106, 0.06);
    border-radius: 26px;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
    flex-wrap: wrap;
}

.trusted-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    color: #5a628d;
    max-width: 220px;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex: 1;
    flex-wrap: wrap;
}

.trusted-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b73a7;
    font-weight: 700;
    font-size: 18px;
}

.trusted-logo i {
    color: var(--royel-blue);
    font-size: 20px;
}

/* ===========================
            SERVICES SECTION
        =========================== */

.services-section {
    padding: 90px 0;
    position: relative;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* LEFT SIDE */

.service-left {
    position: sticky;
    top: 20px;
}

.section-tag {
    font-size: 13px;
    font-weight: 800;
    color: var(--royel-blue);
    letter-spacing: 1px;
    margin-bottom: 18px;
    display: inline-block;
}

.section-title {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--dark-navy-blue);
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(90deg,
            var(--royel-blue),
            var(--purple),
            var(--magenta),
            var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 18px;
    line-height: 1.9;
    color: #5f678f;
    margin-bottom: 35px;
    font-family: var(--Poppins);
}

.gradient-btn {
    padding: 18px 34px;
    border-radius: 14px;
    background: linear-gradient(90deg,
            var(--purple),
            var(--magenta),
            var(--orange));
    color: white;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    transition: 0.4s;
    margin-bottom: 55px;
}

.gradient-btn:hover {
    transform: translateY(-4px);
}

.service-image {
    max-width: 420px;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* RIGHT SIDE */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 25px;
    border: 1px solid rgba(23, 32, 106, 0.08);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: radial-gradient(circle,
            rgba(122, 0, 255, 0.07),
            transparent 70%);
    top: -40px;
    right: -40px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}

.icon-blue {
    background: linear-gradient(135deg,
            var(--royel-blue),
            var(--cyan));
}

.icon-purple {
    background: linear-gradient(135deg,
            var(--purple),
            var(--magenta));
}

.icon-orange {
    background: linear-gradient(135deg,
            var(--orange),
            var(--yellow-orange));
}

.icon-pink {
    background: linear-gradient(135deg,
            #ff4fa3,
            var(--magenta));
}

.icon-green {
    background: linear-gradient(135deg,
            #00c7a7,
            #45e2c2);
}

.icon-violet {
    background: linear-gradient(135deg,
            #5d4fff,
            #9b6dff);
}

.service-card h3 {
    font-size: 18px;
    color: var(--dark-navy-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #5f678f;
    line-height: 1.9;
    font-size: 14px;
    margin-bottom: 28px;
    font-family: var(--Poppins);
}

.learn-more {
    color: var(--royel-blue);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.learn-more:hover {
    gap: 16px;
}

/* ===========================
            WHY CHOOSE US
        =========================== */

.why-section {
    background:
        radial-gradient(circle at top left,
            rgba(122, 0, 255, 0.18),
            transparent 35%),
        linear-gradient(90deg,
            #02094d,
            #040055,
            #120064);
    padding: 85px 0;
    overflow: hidden;
    position: relative;
}

.why-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.08),
            transparent 70%);
    top: -200px;
    right: -200px;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.why-left .section-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    border-radius: 50px;
}

.why-left h2 {
    color: white;
}

.why-left p {
    color: rgba(255, 255, 255, 0.75);
}

.outline-btn {
    padding: 18px 32px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
}

.outline-btn:hover {
    background: white;
    color: var(--dark-navy-blue);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    text-align: center;
}

.why-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    margin: auto auto 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 28px;
    position: relative;
}

.why-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.7;
    z-index: -1;
}

.why-blue {
    background: rgba(30, 91, 255, 0.15);
    border: 1px solid rgba(30, 91, 255, 0.3);
}

.why-blue::before {
    background: var(--royel-blue);
}

.why-purple {
    background: rgba(233, 51, 184, 0.12);
    border: 1px solid rgba(233, 51, 184, 0.3);
}

.why-purple::before {
    background: var(--magenta);
}

.why-pink {
    background: rgba(255, 80, 160, 0.12);
    border: 1px solid rgba(255, 80, 160, 0.3);
}

.why-pink::before {
    background: #ff4fa3;
}

.why-orange {
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.3);
}

.why-orange::before {
    background: var(--orange);
}

.why-card h3 {
    color: var(--dark-navy-blue);
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.why-card p {
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.9;
    font-size: 13px;
    font-family: var(--Poppins);
}




/* ==========================
            WHY CHOOSE SECTION
        ========================== */

.why-choose-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right,
            rgba(122, 0, 255, 0.08),
            transparent 30%),
        linear-gradient(180deg,
            #f7f9ff 0%,
            #f2f5ff 100%);
}

/* floating dots */

.why-choose-section::before,
.why-choose-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background-image:
        radial-gradient(circle,
            rgba(22, 199, 255, 0.45) 2px,
            transparent 2px);
    background-size: 35px 35px;
    opacity: 0.35;
    z-index: 0;
}

.why-choose-section::before {
    top: -50px;
    left: -120px;
}

.why-choose-section::after {
    bottom: -100px;
    right: -120px;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* LEFT SIDE */

.section-subtitle {
    color: var(--royel-blue);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: inline-block;
}

.main-title {
    font-size: 35px;
    line-height: 1.08;
    color: #0d1226;
    font-weight: 800;
    margin-bottom: 20px;
}

.description {
    font-size: 15px;
    line-height: 1.9;
    color: #69718f;
    font-family: var(--Poppins);
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.feature-item {
    font-size: 18px;
    line-height: 1.4;
    color: #1c2238;
    font-family: var(--Poppins);
}

.feature-item strong {
    font-weight: 700;
    color: #0d1226;
}

/* RIGHT SIDE */

.process-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 45px;
    padding: 55px 55px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(23, 32, 106, 0.06);
    box-shadow: 0 20px 60px rgba(18, 35, 90, 0.08);
}

.process-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background:
        radial-gradient(circle,
            rgba(122, 0, 255, 0.08),
            transparent 70%);
    top: -80px;
    right: -80px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 15px;
    width: 3px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom,
            #a8ecff,
            #d7f7ff);
}

.timeline-item {
    position: relative;
    padding-bottom: 55px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.step-number {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--cyan),
            #d35cff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1226;
    font-size: 21px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(122, 0, 255, 0.18);
}

.timeline-item h3 {
    font-size: 20px;
    color: #0d1226;
    font-weight: 700;
    /* margin-bottom: 16px; */
}

.timeline-item p {
    color: #6b728f;
    font-size: 16px;
    line-height: 1.8;
    font-family: var(--Poppins);
}



/* ===================================
            WHY CHOOSE US SECTION
        =================================== */

.partnership-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top right,
            rgba(122, 0, 255, 0.25),
            transparent 35%),
        radial-gradient(circle at bottom left,
            rgba(30, 91, 255, 0.18),
            transparent 40%),
        linear-gradient(90deg,
            #020a55 0%,
            #04003d 40%,
            #14004d 100%);
}

.partnership-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(122, 0, 255, 0.15),
            transparent 70%);
    top: -250px;
    right: -250px;
}

.partnership-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ======================
            LEFT CONTENT
        ====================== */

.left-content .section-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.left-content h2 {
    font-size: 40px;
    line-height: 1.1;
    color: white;
    font-weight: 800;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(90deg,
            #7A00FF,
            #E933B8,
            #FF7A00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.left-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 20px;
    font-family: var(--Poppins);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
}

.outline-btn:hover {
    background: white;
    color: var(--dark-navy-blue);
    transform: translateY(-4px);
}

/* ======================
            CENTER IMAGE
        ====================== */

.center-image {
    position: relative;
}

.cube-wrapper {
    position: relative;
    animation: float 5s ease-in-out infinite;
}

.cube-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle,
            rgba(122, 0, 255, 0.3),
            transparent 65%);
    filter: blur(40px);
    z-index: -1;
}

.cube-wrapper img {
    filter:
        drop-shadow(0 0 30px rgba(122, 0, 255, 0.6)) drop-shadow(0 0 80px rgba(30, 91, 255, 0.4));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* ======================
            RIGHT FEATURES
        ====================== */

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.feature-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 18px;
    color: white;
}

.feature-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.7;
    z-index: -1;
}

.purple-icon {
    background: rgba(233, 51, 184, 0.12);
    border: 2px solid rgba(233, 51, 184, 0.5);
}

.purple-icon::before {
    background: #E933B8;
}

.blue-icon {
    background: rgba(30, 91, 255, 0.12);
    border: 2px solid rgba(30, 91, 255, 0.5);
}

.blue-icon::before {
    background: #1E5BFF;
}

.pink-icon {
    background: rgba(255, 90, 180, 0.12);
    border: 2px solid rgba(255, 90, 180, 0.5);
}

.pink-icon::before {
    background: #ff4fa3;
}

.cyan-icon {
    background: rgba(22, 199, 255, 0.12);
    border: 2px solid rgba(22, 199, 255, 0.5);
}

.cyan-icon::before {
    background: #16C7FF;
}

.feature-content h3 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.3;
    font-family: var(--Poppins);
}









/*========================
    STATS SECTION
========================*/
.stats-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(122, 0, 255, 0.45), transparent 30%),
        linear-gradient(90deg, #17206A 0%, #1a0f92 35%, #4c00c7 100%);
    padding: 28px 0;
}

/* background glow */
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: .35;
    pointer-events: none;
}

/* globe effect */
.stats-section::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -60px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, .18) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: .35;
    transform: rotate(12deg);
    pointer-events: none;
}

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding-right: 40px;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.stat-content h2 {
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-content p {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.last-text {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}







/*==============================
    GLOBAL
==============================*/
.section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--royel-blue);
    margin-bottom: 18px;
}

.section-title {
    font-size: 35px;
    line-height: 1.5;
    font-weight: 800;
    max-width: 720px;
    color: #0f172a;
}

.gradient-text {
    background: linear-gradient(90deg,
            var(--royel-blue),
            var(--cyan),
            var(--purple),
            var(--magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*==============================
    TECHNOLOGY SECTION
==============================*/
.tech-section {
    position: relative;
    padding: 120px 0 110px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(22, 199, 255, .10), transparent 22%),
        radial-gradient(circle at top right, rgba(233, 51, 184, .10), transparent 25%),
        linear-gradient(135deg, #eef4ff 0%, #edf4ff 40%, #f7ecff 100%);
}

/* BLUR GLOW */
.tech-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg,
            rgba(22, 199, 255, .18),
            rgba(122, 0, 255, .16));
    border-radius: 50%;
    filter: blur(90px);
    top: -220px;
    left: -150px;
    animation: floatGlow 8s ease-in-out infinite alternate;
}

.tech-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg,
            rgba(233, 51, 184, .16),
            rgba(30, 91, 255, .16));
    border-radius: 50%;
    filter: blur(90px);
    bottom: -180px;
    right: -120px;
    animation: floatGlow2 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(30px);
    }
}

@keyframes floatGlow2 {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-35px);
    }
}

/* PARTICLES */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(22, 199, 255, .65);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.particles span:nth-child(1) {
    left: 5%;
    top: 20%;
    animation-duration: 9s;
}

.particles span:nth-child(2) {
    left: 12%;
    top: 72%;
    animation-duration: 11s;
}

.particles span:nth-child(3) {
    left: 22%;
    top: 45%;
    animation-duration: 7s;
}

.particles span:nth-child(4) {
    left: 40%;
    top: 82%;
    animation-duration: 13s;
}

.particles span:nth-child(5) {
    left: 58%;
    top: 15%;
    animation-duration: 10s;
}

.particles span:nth-child(6) {
    left: 72%;
    top: 65%;
    animation-duration: 15s;
}

.particles span:nth-child(7) {
    left: 84%;
    top: 25%;
    animation-duration: 12s;
}

.particles span:nth-child(8) {
    left: 94%;
    top: 78%;
    animation-duration: 14s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-130px);
        opacity: 0;
    }
}

/* TECH GRID */
.tech-wrapper {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.tech-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .48);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .7);
    overflow: hidden;
    transition: .45s ease;
}

.tech-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(22, 199, 255, .08),
            rgba(233, 51, 184, .08));
    opacity: 0;
    transition: .4s;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(23, 32, 106, .12);
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg,
            rgba(22, 199, 255, .18),
            rgba(122, 0, 255, .16));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tech-icon i {
    font-size: 28px;
    color: var(--royel-blue);
}

.tech-name {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
}

/*==============================
    CONTACT SECTION
==============================*/
.contact-section {
    position: relative;
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;
    align-items: start;
}

/* LEFT CONTENT */
.contact-content h2 {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 28px;
    color: #0f172a;
}

.contact-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #667085;
    max-width: 580px;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 24px;
    background: #f8fbff;
    border: 1px solid rgba(22, 199, 255, .12);
    transition: .45s ease;
}

.contact-box:hover {
    transform: translateX(8px);
    background: #fff;
    box-shadow: 0 18px 40px rgba(23, 32, 106, .08);
}

.contact-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg,
            rgba(22, 199, 255, .18),
            rgba(233, 51, 184, .18));
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 22px;
    color: var(--royel-blue);
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #0f172a;
}

.contact-text span {
    font-size: 15px;
    color: #667085;
}

/* FORM */
.contact-form {
    position: relative;
    padding: 45px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(22, 199, 255, .12);
    box-shadow: 0 25px 60px rgba(23, 32, 106, .08);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.form-control {
    width: 100%;
    border: none;
    border-radius: 18px;
    background: #f7faff;
    padding: 18px 20px;
    font-size: 15px;
    font-family: var(--Montserrat);
    border: 1px solid transparent;
    transition: .35s ease;
}

textarea.form-control {
    min-height: 150px;
    resize: none;
}

.form-control:focus {
    border-color: rgba(122, 0, 255, .35);
    background: #fff;
    box-shadow: 0 0 0 5px rgba(122, 0, 255, .08);
}

.submit-btn {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 18px 30px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    font-family: var(--Montserrat);
    background: linear-gradient(90deg,
            var(--cyan),
            var(--royel-blue),
            var(--purple),
            var(--magenta));
    background-size: 300% 300%;
    transition: .5s ease;
    animation: gradientMove 5s ease infinite;
    box-shadow: 0 18px 40px rgba(122, 0, 255, .22);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(122, 0, 255, .28);
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}




/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(90deg, #020b34 0%, #071654 100%);
    padding: 60px 0 25px;
    color: var(--white);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    width: 315px;
    margin-bottom: 18px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--white);
    transition: 0.4s;
}

.social-links a:hover {
    background: linear-gradient(90deg, #7A00FF, #E933B8, #FF7A00);
    border-color: transparent;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.newsletter-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
}

.newsletter-form {
    position: relative;
    width: 100%;
}

.newsletter-form input {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    padding: 0 55px 0 16px;
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(90deg, #7A00FF, #E933B8);
    color: var(--white);
    font-size: 16px;
}

.footer-bottom {
    margin-top: 45px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}




.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    display: none;
    align-items: center;
    justify-content: center;

    z-index: 9999;
}

.popup-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;

    width: 90%;
    max-width: 400px;

    animation: pop 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@keyframes pop {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.check-icon {
    width: 80px;
    height: 80px;

    background: #28a745;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 35px;

    border-radius: 50%;

    margin: 0 auto 20px;
}

.popup-box h2 {
    margin-bottom: 10px;
    color: #2d1300;
}

.popup-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.popup-btn {
    background: linear-gradient(90deg, var(--purple), var(--magenta), var(--orange));
    color: white;
    border: none;

    padding: 12px 25px;
    border-radius: 10px;

    cursor: pointer;
}

.popup-overlay {
    display: none;
}

.dropdown { position: relative; }
.dropdown-trigger { display: flex; align-items: center; }
.dropdown-toggle { border: 0; background: transparent; color: var(--dark-navy-blue); cursor: pointer; padding: 8px; }
.dropdown-menu { position: absolute; top: calc(100% + 18px); left: -20px; z-index: 1000; min-width: 265px; padding: 12px; background: #fff; border-radius: 14px; box-shadow: 0 18px 40px rgba(9, 21, 81, .16); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 8px; white-space: nowrap; }
.dropdown-menu li a:hover { background: #f1f4ff; }
