/* ========================= */
/* RESET */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --primary: #EF8002;
    --secondary: #025DA9;

    --container-width: 1200px;

    --primary-light: #ffb04f;
    --secondary-light: #3a8dd1;

    --dark: #0f172a;
    --text: #475569;

    --white: #ffffff;

    --border: #e5e7eb;

    --shadow:
        0 10px 40px rgba(0, 0, 0, .08);

    --radius: 18px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    color: var(--dark);
}

/* ========================= */
/* TOP STRIP */
/* ========================= */
.top-strip {
    background: linear-gradient(90deg, #015DA9, #EF7F03);
    color: white;
    font-size: 13.5px;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.top-strip-container {
    width: min(1400px, 92%);
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-strip-left,
.top-strip-center,
.top-strip-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Large desktops – comfortable spacing */
@media (max-width: 1440px) {
    .top-strip-left,
    .top-strip-center,
    .top-strip-right {
        gap: 18px;
    }

    .top-strip-left a,
    .top-strip-right a {
        font-size: 12.5px;
    }
}

/* Small laptops & tablets landscape */
@media (max-width: 1200px) {
    .top-strip-left,
    .top-strip-center,
    .top-strip-right {
        gap: 14px;
    }

    .top-strip-container {
        justify-content: center;
    }

    .top-strip-left a,
    .top-strip-right a {
        font-size: 12px;
    }
}

/* Mini laptops & small screens */
@media (max-width: 1024px) {
    .top-strip {
        font-size: 12px;
    }

    .top-strip-left,
    .top-strip-center,
    .top-strip-right {
        gap: 10px;
    }

    .top-strip-container {
        justify-content: flex-end;
        width: 96%;
    }

    .top-strip-left a,
    .top-strip-right a {
        font-size: 11.5px;
        gap: 5px;
    }
}

/* Tablets portrait & mobile */
@media (max-width: 768px) {
    .top-strip-left,
    .top-strip-center,
    .top-strip-right {
        gap: 8px;
        flex-direction: column;
        align-items: flex-end;
    }

    .top-strip-container {
        flex-direction: column;
        align-items: flex-end;
        padding: 5px 0;
    }

    .top-strip-left a,
    .top-strip-right a {
        font-size: 11px;
    }
}

.top-strip-center {
    flex: 1;
    justify-content: center;
    font-weight: 400;
}

.top-strip-center strong {
    font-weight: 700;
    margin-left: 5px;
}

.top-strip-right {
    justify-content: flex-end;
}

.top-strip-left span,
.top-strip-right span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.top-strip-left a,
.top-strip-right a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.top-strip-left a:hover,
.top-strip-right a:hover {
    opacity: 0.8;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lang-dropdown:hover .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-menu li a {
    color: #334155 !important;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.lang-dropdown-menu li a:hover {
    background: #f8fafc;
    color: #015DA9 !important;
    opacity: 1;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {

    position: fixed;

    top: 38px;

    left: 0;

    width: 100%;

    z-index: 999;
}

.nav-container {

    width: min(1400px, 92%);

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 14px 24px;

    border-radius: 24px;

    background:
        rgba(255, 255, 255, .8);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .5);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .08);
}

.logo img {

    height: 50px;

    display: block;
}

.desktop-nav {

    display: flex;
}

.nav-links {

    list-style: none;

    display: flex;

    gap: 34px;

    align-items: center;
}

.nav-links li {

    position: relative;
}

.nav-links a {

    text-decoration: none;

    color: var(--dark);

    font-size: 15px;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    transition: color .3s ease;

    position: relative;
}

/* Nav link underline sweep animation */
.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width .35s cubic-bezier(.25, .8, .25, 1);
    border-radius: 2px;
}

.nav-links>li>a:hover::after {
    width: 100%;
}

.nav-links a:hover {

    color: var(--secondary);
}

/* ========================= */
/* MEGA MENU */
/* ========================= */

.mega-menu {

    position: absolute;

    top: 70px;

    left: -120px;

    width: 780px;

    display: grid;

    grid-template-columns:
        1.2fr 1fr 1fr;

    gap: 30px;

    padding: 30px;

    background: #fff;

    border-radius: 24px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .12);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px) scale(0.98);

    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);

    transform-origin: top center;
}

.dropdown:hover .mega-menu,
.dropdown:focus-within .mega-menu,
.dropdown.active .mega-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0) scale(1);
}

.menu-feature {

    background:
        linear-gradient(135deg,
            rgba(239, 128, 2, .08),
            rgba(2, 93, 169, .08));

    padding: 24px;

    border-radius: 18px;
}

.menu-feature span {

    display: inline-block;

    color: var(--primary);

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 10px;
}

.menu-feature h3 {

    font-size: 22px;

    margin-bottom: 10px;
}

.menu-feature p {

    color: var(--text);

    line-height: 1.7;
}

.menu-column {

    display: flex;

    flex-direction: column;
}

.menu-column h4 {

    font-size: 15px;

    margin-bottom: 15px;

    color: var(--dark);
}

.menu-column a {
    padding: 10px 0;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-column a:hover {

    color: var(--secondary);

    padding-left: 8px;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.nav-actions {

    display: flex;

    gap: 14px;

    align-items: center;
}

.login-btn {

    color: var(--dark);

    text-decoration: none;

    font-weight: 600;
}

.sales-btn {
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    background: #015DA9;
    /* Blueish Base */
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Orange Sweep on hover */
.sales-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #EF8002, #FF9500);
    /* Orangeish Hover */
    transition: width .5s cubic-bezier(.16, 1, .3, 1);
    z-index: -1;
    border-radius: 14px;
}

.sales-btn:hover::before {
    width: 100%;
}

.sales-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(239, 128, 2, 0.35);
    /* Glowing Orange Shadow */
    color: #fff;
    border-color: #EF8002;
}

.mobile-toggle {

    display: none;

    border: none;

    background: none;

    font-size: 30px;

    cursor: pointer;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 40px;

    width: min(1400px, 92%);

    margin: auto;

    padding-top: 150px;

    padding-bottom: 80px;
}

.hero-left {

    max-width: 700px;
}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    border-radius: 999px;

    background:
        rgba(2, 93, 169, .08);

    color: var(--secondary);

    font-weight: 700;

    margin-bottom: 28px;

    position: relative;

    overflow: hidden;

    animation: badgePulse 3s ease-in-out infinite;
}

/* Shimmer sweep across the badge */
.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .4),
            transparent);
    animation: badgeShimmer 4s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0% {
        left: -100%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(2, 93, 169, .15);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(2, 93, 169, 0);
    }
}

.hero-left h1 {

    font-size:
        clamp(48px,
            6vw,
            75px);

    line-height: 1.05;

    font-weight: 800;

    margin-bottom: 24px;
}

.hero-left h1 span {

    /* background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    ); */

    background: var(--secondary);

    background-clip: text;

    -webkit-background-clip: text;

    color: transparent;
}

.hero-left p {

    font-size: 20px;

    color: var(--text);

    line-height: 1.8;

    max-width: 650px;
}

/* ========================= */
/* HERO BUTTONS */
/* ========================= */

.hero-buttons {

    display: flex;

    gap: 18px;

    margin-top: 40px;

    flex-wrap: wrap;
}

.primary-btn {
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 16px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #015DA9, #013b6e);
    /* Blueish Base Gradient */
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(1, 93, 169, 0.5);
    box-shadow: 0 8px 20px rgba(1, 93, 169, 0.2);
}

/* Orangeish sweep on hover */
.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EF8002, #FF4500);
    /* Vibrant Orange */
    transition: left .5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 16px;
}

.primary-btn:hover::before {
    left: 0;
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(239, 128, 2, 0.4);
    /* Glowing Orange Shadow */
    color: #fff;
    border-color: #EF8002;
}

.primary-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(239, 128, 2, 0.2);
}

.secondary-btn {
    text-decoration: none;
    padding: 18px 32px;
    border-radius: 16px;
    font-weight: 700;
    color: #015DA9;
    /* Blueish Text */
    background: #fff;
    border: 2px solid #015DA9;
    transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Blue to Orange fill on hover */
.secondary-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, #015DA9, #EF8002);
    transition: height .5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 14px
        /* inner border radius */
}

.secondary-btn:hover::before {
    height: 100%;
}

.secondary-btn:hover {
    background: transparent;
    border-color: #EF8002;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(239, 128, 2, 0.25);
}

.secondary-btn:active {
    transform: translateY(-1px);
}

/* ========================= */
/* STATS */
/* ========================= */

.hero-stats {

    display: flex;

    gap: 40px;

    margin-top: 50px;

    flex-wrap: wrap;
}

.stat {
    transition: transform .3s ease;
}

.stat:hover {
    transform: translateY(-4px);
}

.stat h3 {

    font-size: 32px;

    margin-bottom: 6px;

    font-weight: 800;

    color: var(--secondary);

    transition: text-shadow .4s ease;
}

.stat:hover h3 {
    text-shadow: 0 0 20px rgba(2, 93, 169, .3);
}

.stat span {

    color: var(--text);

    font-size: 14px;
}

/* ========================= */
/* HERO RIGHT */
/* ========================= */

.hero-right {

    display: flex;

    justify-content: center;

    align-items: center;
}

.orbit-wrapper {

    width: 700px;

    height: 700px;

    position: relative;
}

/* ========================= */
/* GLOW */
/* ========================= */

.glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    z-index: 1;
}

.glow {

    animation:
        glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

    0% {
        transform: scale(1);
        opacity: .7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: .7;
    }
}

.glow-orange {

    width: 280px;

    height: 280px;

    background:
        rgba(239, 128, 2, .25);

    top: 140px;

    left: 120px;
}

.glow-blue {

    width: 320px;

    height: 320px;

    background:
        rgba(2, 93, 169, .20);

    bottom: 120px;

    right: 80px;
}





/* ========================= */
/* ORBITS */
/* ========================= */

.orbit {

    position: absolute;

    border-radius: 50%;

    border:
        1px solid rgba(2, 93, 169, .18);
}

/* .orbit-1{

    width:700px;

    height:700px;
}

.orbit-2{

    width:500px;

    height:500px;

    top:100px;

    left:100px;
} */

.orbit-1 {

    width: 700px;
    height: 700px;

    animation:
        rotateSlow 120s linear infinite;
}

.orbit-2 {

    width: 500px;
    height: 500px;

    top: 100px;
    left: 100px;

    animation:
        rotateReverse 90s linear infinite;
}


/* ========================= */
/* CENTER IMAGE */
/* ========================= */

/* .center-user{

    position:absolute;

    width:290px;

    height:290px;

    top:50%;

    left:50%;

    transform:
    translate(-50%,-50%);

    border-radius:50%;

    overflow:hidden;

    z-index:5;

    border:8px solid white;

    box-shadow:
    0 30px 70px rgba(0,0,0,.15);

    animation:
    floating 6s ease-in-out infinite;
} */


.center-user {

    position: absolute;

    width: 290px;
    height: 290px;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    overflow: hidden;

    z-index: 10;

    border: 8px solid #fff;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .18);

    animation:
        floating 8s ease-in-out infinite;
}

.center-user img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}

/* ========================= */
/* ROTATION */
/* ========================= */

.rotating-group {

    position: absolute;

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;
}

/* .outer{

    animation:
    rotateSlow 90s linear infinite;
} */

.outer {
    animation: rotateSlow 90s linear infinite;
}

.inner {

    animation:
        rotateReverse 60s linear infinite;
}

.whatsapp-outer-dot {
    top: -35px;
    left: 315px;
}

.sms-outer-dot {
    bottom: -35px;
    left: 315px;
}

/* ========================= */
/* CARDS */
/* ========================= */

/* .service-card{

    position:absolute;

    width:220px;

    padding:20px;

    border-radius:24px;

    backdrop-filter:
    blur(18px);

    background:
    rgba(255,255,255,.78);

    border:
    1px solid rgba(255,255,255,.6);

    box-shadow:
    0 25px 50px rgba(0,0,0,.08);

    z-index:6;
} */


.service-card {

    position: absolute;

    width: 220px;

    padding: 20px;

    border-radius: 24px;

    backdrop-filter: blur(18px);

    background: rgba(255, 255, 255, .82);

    border: 1px solid rgba(255, 255, 255, .6);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .08);

    z-index: 6;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.service-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 35px 70px rgba(0, 0, 0, .15);
}

.service-card h4 {

    font-size: 18px;

    margin-bottom: 10px;
}

.service-card p {

    font-size: 14px;

    line-height: 1.8;

    color: var(--text);
}

.card1 {

    top: 30px;

    left: 420px;
}

.card2 {

    right: 10px;

    bottom: 160px;
}

.card3 {

    left: 10px;

    top: 300px;
}

/* .card4{

    top:520px;

    left:250px;
} */

/* ========================= */
/* ICONS */
/* ========================= */

.service-icon {

    width: 56px;

    height: 56px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 14px;

    font-weight: 800;
}

.whatsapp {

    color: #25D366;

    background:
        rgba(37, 211, 102, .12);
}

.rcs {

    color: #025DA9;

    background:
        rgba(2, 93, 169, .12);
}

.sms {

    color: #EF8002;

    background:
        rgba(239, 128, 2, .12);
}

.ai {

    color: #7c3aed;

    background:
        rgba(124, 58, 237, .12);
}

/* ========================= */
/* SMALL ORBIT ICONS */
/* ========================= */

.small-icon {

    position: absolute;

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, .08);
}

.whatsapp-dot {

    top: 70px;

    left: 220px;
}

.rcs-dot {

    top: 65px;

    left: 315px;
}

.sms-dot {

    bottom: 120px;

    left: 120px;
}

.ai-dot {

    bottom: 65px;

    left: 315px;
}

/* ========================= */
/* TRUST BAR */
/* ========================= */

.trust-bar {

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

    padding: 40px 20px 80px;
}

.trust-item {

    padding: 14px 24px;

    border-radius: 999px;

    background: #fff;

    border: 1px solid var(--border);

    font-weight: 600;

    transition: all .35s cubic-bezier(.16, 1, .3, 1);

    cursor: default;

    opacity: 0;
    transform: translateY(20px);
}

.trust-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 12px 30px rgba(2, 93, 169, .1);
}

/* ========================= */
/* MOBILE MENU */
/* ========================= */

.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: fixed;
    top: 120px;
    left: 20px;
    right: 20px;
    padding: 24px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.06);
    animation: mobileMenuSlideIn 0.3s ease forwards;
}

@keyframes mobileMenuSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu > a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 10px;
    display: block;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu > a:hover {
    background: rgba(2, 93, 169, 0.06);
    color: var(--secondary);
}

/* Mobile Dropdown */
.mobile-dropdown-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-dropdown-btn:hover {
    background: rgba(2, 93, 169, 0.06);
    color: var(--secondary);
}

.mobile-dropdown-btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.mobile-dropdown-wrapper.active .mobile-dropdown-btn {
    color: var(--secondary);
    background: rgba(2, 93, 169, 0.06);
}

.mobile-dropdown-wrapper.active .mobile-dropdown-btn svg {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.mobile-submenu {
    display: none;
    flex-direction: column;
    padding-left: 12px;
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 14px;
    gap: 2px;
    border-left: 2px solid rgba(2, 93, 169, 0.15);
}

.mobile-dropdown-wrapper.active .mobile-submenu {
    display: flex;
}

.mobile-submenu a {
    display: block;
    font-size: 14px;
    padding: 9px 14px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-submenu a:hover {
    background: rgba(2, 93, 169, 0.06);
    color: var(--secondary);
}

/* Products submenu - 2 column grid */
.mobile-dropdown-wrapper.active .mobile-submenu.products-mobile-submenu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.mobile-submenu.products-mobile-submenu a {
    padding: 7px 10px;
    font-size: 13px;
    word-break: break-word;
    white-space: normal;
}

/* Fix for other pages that toggle .open instead of .active */
.mobile-submenu.open {
    display: flex;
}

.mobile-dropdown-btn.open svg {
    transform: rotate(180deg);
}

.mobile-submenu.products-mobile-submenu.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

/* Mobile Sales Button */
.mobile-sales-btn {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #015DA9, #EF8002);
    color: #fff !important;
    padding: 14px 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-sales-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 128, 2, 0.3);
}

/* ========================= */
/* SCROLL REVEAL ANIMATION */
/* ========================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
        transform .7s cubic-bezier(.16, 1, .3, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(.85);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1),
        transform .6s cubic-bezier(.16, 1, .3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

@keyframes rotateSlow {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes floating {

    0% {
        transform:
            translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform:
            translate(-50%, -50%) translateY(-15px);
    }

    100% {
        transform:
            translate(-50%, -50%) translateY(0px);
    }
}

/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:1100px) {

    .hero {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-left {

        max-width: 100%;
    }

    .hero-buttons,
    .hero-stats {

        justify-content: center;
    }

    .orbit-wrapper {

        width: 560px;

        height: 560px;
    }

    .orbit-1 {

        width: 560px;
        height: 560px;
    }

    .orbit-2 {

        width: 380px;
        height: 380px;

        left: 90px;
        top: 90px;
    }

    .center-user {

        width: 220px;
        height: 220px;
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px) {

    .desktop-nav,
    .nav-actions {

        display: none;
    }

    .mobile-toggle {

        display: block;
    }

    .nav-container {
        margin-top: 22px;
    }

    .hero {

        padding-top: 160px;
    }

    .hero-left h1 {

        font-size: 46px;
    }

    .hero-left p {

        font-size: 18px;
    }

    .orbit-wrapper {

        width: 320px;
        height: 320px;
    }

    .orbit-1 {

        width: 320px;
        height: 320px;
    }

    .orbit-2 {

        width: 200px;
        height: 200px;

        top: 60px;
        left: 60px;
    }

    .center-user {

        width: 130px;
        height: 130px;
    }

    .service-card {

        width: 135px;

        padding: 10px;
    }

    .service-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        margin-bottom: 8px;
    }

    .service-icon svg {
        width: 20px;
        height: 20px;
    }

    .service-card h4 {

        font-size: 12px;
        margin-bottom: 4px;
    }

    .service-card p {

        font-size: 10px;
        line-height: 1.4;
    }

    .card1 {
        /* top: -10px;
        left: 10px; */
        top: -30px;
        left: 92px;
    }

    .card2 {
        top: 150px;
        right: -10px;
        bottom: auto;
    }

    .card3 {
        left: 0px;
        bottom: -10px;
        top: auto;
    }

    /* .card4{
        left:100px;
        bottom:-10px;
        top:auto;
    } */

    .small-icon {

        display: none;
    }

    .mega-menu {

        display: none;
    }

    .trust-bar {
        padding: 30px 15px 60px;
    }
}

@media(max-width: 380px) {
    .orbit-wrapper {
        transform: scale(0.8);
        transform-origin: center center;
    }
}

/* ========================= */
/* VIDEO SECTION */
/* ========================= */

.video-section {
    width: min(1400px, 92%);
    margin: 80px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.video-container {
    width: 100%;
    aspect-ratio: 21 / 9;
    /* Ultra-wide aspect ratio to crop top/bottom black bars */
    display: flex;

}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================= */
/* BRANDS SECTION */
/* ========================= */

.brands-section {
    width: min(1400px, 92%);
    margin: 80px auto 40px auto;
    text-align: center;
}

.brands-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 40px;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 30px 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .04);
}

/* Faded edges */
.brands-marquee::before,
.brands-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.brands-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.brands-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.brands-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 60px;
    animation: marquee-scroll 45s linear infinite;
    padding-left: 30px;
    padding-right: 30px;
}

.brands-track img {
    height: 45px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brands-track img:hover {
    transform: scale(1.08);
}

/* ========================= */
/* ========================= */
/* WHY CHOOSE INBOX ACCORDION SECTION */
/* ========================= */
.why-choose-accordion-section {
    background: #0f172a;
    /* Deep dark blue */
    background-image: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow: hidden;
}

.wca-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.wca-header {
    text-align: center;
    margin-bottom: 70px;
}

.wca-header .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    background: linear-gradient(to right, #a8c0ff, #3f2b96);
    background: linear-gradient(to right, #6366f1, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wca-header .section-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.wca-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE VISUALIZER */
.wca-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
}

.wca-left::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.wca-visual-core {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.core-orb {
    position: absolute;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    color: #fff;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 10;
    animation: orbPulse 3s infinite alternate;
}

@keyframes orbPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
    }

    100% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(236, 72, 153, 0.8);
    }
}

.core-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 260px;
    height: 260px;
    border-top-color: #6366f1;
    border-right-color: #ec4899;
    animation: spinRing 8s linear infinite;
    border-width: 3px;
}

.ring-2 {
    width: 380px;
    height: 380px;
    border-bottom-color: #38bdf8;
    border-left-color: #a855f7;
    animation: spinRingReverse 12s linear infinite;
    border-width: 2px;
    opacity: 0.7;
}

.ring-3 {
    width: 500px;
    height: 500px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    animation: spinRing 25s linear infinite;
}

@keyframes spinRing {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spinRingReverse {
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

.floating-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    padding: 12px 20px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 15;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.floating-node:hover {
    border-color: rgba(99, 102, 241, 0.6);
}

.node-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8, #a855f7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(56, 189, 248, 0.4);
}

.node-text {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.node-a {
    top: 5%;
    left: -5%;
    animation: floatNode 4s ease-in-out infinite;
}

.node-b {
    bottom: 20%;
    right: -10%;
    animation: floatNode 5s ease-in-out infinite 1s;
}

.node-c {
    bottom: -5%;
    left: 15%;
    animation: floatNode 6s ease-in-out infinite 2s;
}

.node-d {
    top: 25%;
    right: -5%;
    animation: floatNode 4.5s ease-in-out infinite 0.5s;
}

.node-e {
    top: 60%;
    left: -12%;
    animation: floatNode 5.5s ease-in-out infinite 1.5s;
}

@keyframes floatNode {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* RIGHT SIDE ACCORDION (Glassmorphism) */
.wca-right {
    flex: 1;
}

.wca-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wca-item {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.wca-item:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wca-item.active {
    border-color: rgba(236, 72, 153, 0.5);
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.wca-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.wca-item-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #f1f5f9;
    margin: 0;
    transition: color 0.3s ease;
}

.wca-icon {
    font-size: 24px;
    color: #94a3b8;
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease;
}

.wca-item.active .wca-item-header h3 {
    background: linear-gradient(to right, #a8c0ff, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wca-item.active .wca-icon {
    transform: rotate(45deg);
    color: #ec4899;
}

.wca-item-body {
    display: none;
    padding-top: 20px;
}

.wca-item-body p {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.wca-timeline {
    margin-left: 8px;
    border-left: 2px solid rgba(99, 102, 241, 0.3);
    padding-left: 24px;
    margin-bottom: 24px;
}

.wca-timeline-item {
    position: relative;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.5;
}

.wca-timeline-item:last-child {
    margin-bottom: 0;
}

.wca-timeline-item::before {
    content: '';
    position: absolute;
    left: -31px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #0f172a;
    border: 2px solid #6366f1;
    box-shadow: 0 0 10px #6366f1;
}

.wca-learn-more {
    display: inline-block;
    padding: 10px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wca-learn-more:hover {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.4);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .wca-content {
        flex-direction: column;
    }

    .wca-left {
        min-height: 400px;
        width: 100%;
    }
}

/* MODERN FOOTER */
/* ========================= */

.modern-footer {


    background: #0b0f19;
    /* Deep premium dark color */
    color: #94a3b8;
    padding: 120px 0 40px;
    /* Restored padding-top so text doesn't overlap */
    position: relative;
    margin-top: 100px;
    /* Restored margin-top to fit the overlapping top half */
    font-family: var(--body-font, 'Inter', sans-serif);
    z-index: 1;
}

/* Modern Gradient Top Border Separator */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #38bdf8, #818cf8, #c084fc, #e879f9, #38bdf8);
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
    z-index: 10;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Decorative Glows */
.footer-glows-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.footer-glow-1 {
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(1, 93, 169, 0.25);
    /* Blue Glow */
}

.footer-glow-2 {
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: rgba(239, 128, 2, 0.15);
    /* Orange Glow */
}

/* CTA Band */
.footer-cta-band {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Perfectly 50% overlap */
    width: min(1200px, 92%);
    z-index: 10;
}

.footer-cta-band-inner {
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 30px;
}

.footer-cta-band-content h3 {
    font-size: 26px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-cta-band-content p {
    color: #cbd5e1;
    font-size: 16px;
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
}

.footer-cta-band-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #015DA9 0%, #EF8002 100%);
    /* Blue to Orange Gradient */
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(239, 128, 2, 0.4);
}

.footer-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(239, 128, 2, 0.6);
    color: #fff;
}

.footer-cta-primary svg {
    transition: transform 0.3s ease;
}

.footer-cta-primary:hover svg {
    transform: translateX(4px);
}

.footer-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Main Container */
.footer-container {
    width: min(1400px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-logo img {
    height: 48px;
    margin-bottom: 24px;
    /* Removed filter to keep logo in color */
}

.footer-desc {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 380px;
    background: linear-gradient(90deg, #015DA9, #EF8002, #FF9500);
    /* Blue & Orange */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link[aria-label="LinkedIn"] {
    color: #0077b5;
}

.footer-social-link[aria-label="Twitter"] {
    color: #1DA1F2;
}

.footer-social-link[aria-label="Facebook"] {
    color: #1877F2;
}

.footer-social-link[aria-label="Instagram"] {
    color: #E4405F;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #015DA9, #EF8002);
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(239, 128, 2, 0.5);
    /* Orange shadow */
}

/* Columns General */
.footer-column h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #015DA9, #EF8002);
    border-radius: 2px;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 14px;
}

.footer-link-list a {
    color: #94a3b8;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link-list a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(1, 93, 169, 0.1);
    color: #EF8002;
    /* Orange icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(1, 93, 169, 0.2);
}

.footer-contact-label {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-contact-list a,
.footer-contact-address {
    color: #e2e8f0;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-contact-list a:hover {
    color: #EF8002;
}

/* Divider */
.footer-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    margin: 40px 0 30px;
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: #64748b;
    font-size: 14px;
}

.footer-copyright strong {
    color: #e2e8f0;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-dot {
    width: 4px;
    height: 4px;
    background: #475569;
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1.5fr;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
        margin-top: 20px;
    }

    .footer-contact-list {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .footer-cta-band-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .footer-cta-band-content h3 {
        font-size: 24px;
    }

    .footer-cta-band-content p {
        margin: 0 auto;
    }

    .footer-cta-band-actions {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .modern-footer {
        padding-top: 200px;
        /* Space for stacked CTA */
    }

    .footer-cta-band {
        width: 95%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-services-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact-list {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
        justify-content: center;
        padding-bottom: 20px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ========================= */
/* MODERN WHY CHOOSE SECTION */
/* ========================= */

.why-choose-modern {
    padding: 60px 0 20px 0;
    background: #ffffff;
    font-family: var(--body-font, 'Inter', sans-serif);
    overflow: hidden;
}

/* --- Block 1: Floating Pills --- */
.floating-pills-block {
    text-align: center;
    margin-bottom: 40px;
}

.floating-header {
    margin-bottom: 50px;
    padding: 0 20px;
}

.floating-header .title {
    font-size: 38px;
    font-weight: 400;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.3;
}

.floating-header .title strong {
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary, #015DA9), var(--secondary, #EF7F03));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-header .subtitle {
    font-size: 17px;
    color: #4b5563;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.center-glow-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #015DA9, #b56cfc);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(181, 108, 252, 0.4), inset 0 4px 10px rgba(255, 255, 255, 0.3), inset 0 -4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ---- Pulsing Energy Rings ---- */
.floating-header .center-glow-icon::before,
.floating-header .center-glow-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

/* Ring 1 — inner soft pulse */
.floating-header .center-glow-icon::before {
    width: 130px;
    height: 130px;
    margin-top: -65px;
    margin-left: -65px;
    border: 1.5px solid rgba(181, 108, 252, 0.25);
    animation: energyRingPulse1 3s ease-in-out infinite;
}

/* Ring 2 — outer ambient glow */
.floating-header .center-glow-icon::after {
    width: 190px;
    height: 190px;
    margin-top: -95px;
    margin-left: -95px;
    border: 1px solid rgba(1, 93, 169, 0.15);
    background: radial-gradient(circle, rgba(181, 108, 252, 0.06) 0%, transparent 70%);
    animation: energyRingPulse2 4s ease-in-out 0.8s infinite;
}

@keyframes energyRingPulse1 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
        border-color: rgba(181, 108, 252, 0.3);
    }

    50% {
        transform: scale(1.2);
        opacity: 0.3;
        border-color: rgba(1, 93, 169, 0.2);
    }
}

@keyframes energyRingPulse2 {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.15;
    }
}

/* ---- Orbiting particle dots (added via HTML or extra wrapper) ---- */
/* We use box-shadow on the icon itself for subtle ambient sparkle */
.floating-header .center-glow-icon {
    animation: iconAmbientGlow 5s ease-in-out infinite;
}

@keyframes iconAmbientGlow {

    0%,
    100% {
        box-shadow:
            0 10px 25px rgba(181, 108, 252, 0.4),
            inset 0 4px 10px rgba(255, 255, 255, 0.3),
            inset 0 -4px 10px rgba(0, 0, 0, 0.1),
            0 0 60px rgba(181, 108, 252, 0.08);
    }

    50% {
        box-shadow:
            0 10px 30px rgba(1, 93, 169, 0.5),
            inset 0 4px 10px rgba(255, 255, 255, 0.35),
            inset 0 -4px 10px rgba(0, 0, 0, 0.12),
            0 0 80px rgba(1, 93, 169, 0.12);
    }
}

/* ---- Third Ring (HTML element) ---- */
.floating-header .orbit-ring-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    margin-top: -125px;
    margin-left: -125px;
    border-radius: 50%;
    border: 1px dashed rgba(181, 108, 252, 0.12);
    pointer-events: none;
    z-index: -1;
    animation: energyRingPulse3 6s ease-in-out infinite;
}

@keyframes energyRingPulse3 {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.08) rotate(180deg);
        opacity: 0.15;
    }
}

/* ---- Orbiting Dots Track ---- */
.floating-header .orbit-dot-track {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    margin-top: -100px;
    margin-left: -100px;
    pointer-events: none;
    z-index: -1;
    animation: orbitSpin 12s linear infinite;
}

.orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.orbit-dot.dot-1 {
    top: 0;
    left: 50%;
    margin-left: -3px;
    background: rgba(181, 108, 252, 0.8);
    box-shadow: 0 0 12px rgba(181, 108, 252, 0.6), 0 0 4px rgba(181, 108, 252, 0.9);
    animation: dotFlicker 2s ease-in-out infinite;
}

.orbit-dot.dot-2 {
    bottom: 15%;
    left: 5%;
    background: rgba(1, 93, 169, 0.7);
    box-shadow: 0 0 12px rgba(1, 93, 169, 0.5), 0 0 4px rgba(1, 93, 169, 0.8);
    width: 5px;
    height: 5px;
    animation: dotFlicker 2.5s ease-in-out 0.5s infinite;
}

.orbit-dot.dot-3 {
    bottom: 15%;
    right: 5%;
    background: rgba(239, 127, 3, 0.7);
    box-shadow: 0 0 12px rgba(239, 127, 3, 0.5), 0 0 4px rgba(239, 127, 3, 0.8);
    width: 4px;
    height: 4px;
    animation: dotFlicker 3s ease-in-out 1s infinite;
}

@keyframes orbitSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes dotFlicker {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

.center-glow-icon:hover .orbit-dot-track {
    animation-duration: 6s;
}

.center-glow-icon:hover .orbit-ring-3 {
    border-color: rgba(181, 108, 252, 0.25);
    animation-duration: 3s;
}

.center-glow-icon:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(181, 108, 252, 0.6), inset 0 4px 10px rgba(255, 255, 255, 0.5), inset 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.center-glow-icon .bot-icon {
    position: relative;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.center-glow-icon .bot-icon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 8px;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.9) transparent transparent transparent;
}

.center-glow-icon .bot-eyes {
    display: flex;
    gap: 8px;
    margin-bottom: 5px;
}

.center-glow-icon .bot-eye {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
    animation: bot-blink 4s infinite;
}

.center-glow-icon .bot-smile {
    width: 14px;
    height: 5px;
    border: 2.5px solid #fff;
    border-top: 0;
    border-radius: 0 0 12px 12px;
}

@keyframes bot-blink {

    0%,
    96%,
    98% {
        transform: scaleY(1);
    }

    97% {
        transform: scaleY(0);
    }
}

/* Marquee Tracks */
.pill-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Gradient masks for smooth fade at edges */
.pill-track-wrapper::before,
.pill-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.pill-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.pill-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.pill-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.track-left {
    animation: marqueeLeft 35s linear infinite;
}

.track-right {
    animation: marqueeRight 40s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.pill-track-wrapper:hover .track-left,
.pill-track-wrapper:hover .track-right {
    animation-play-state: paused;
}

.ui-pill {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.ui-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.ui-pill:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 15px 35px rgba(181, 108, 252, 0.15), 0 5px 15px rgba(1, 93, 169, 0.1), inset 0 0 0 1px rgba(181, 108, 252, 0.4);
    border-color: rgba(181, 108, 252, 0.3);
    color: #111827;
}

.ui-pill:hover::before {
    left: 200%;
}

.ui-pill:hover i {
    transform: scale(1.15) rotate(-5deg);
    color: #b56cfc;
}

.ui-pill i {
    color: var(--primary, #015DA9);
    font-size: 18px;
    transition: all 0.3s ease;
}

.pill-action {
    margin-top: 50px;
}

.ui-btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #5a4bfa;
    /* Vibrant purple/blue matching the image */
    color: #fff;
    padding: 16px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(90, 75, 250, 0.3);
    transition: all 0.3s ease;
}

.ui-btn-pill:hover {
    background: #4736e6;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(90, 75, 250, 0.4);
}

/* --- Block 2: Branching Nodes --- */
.branching-nodes-block {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.branching-nodes-block .title {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.branching-nodes-block .subtitle {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 70px;
}

.branch-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.branch-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
}

/* The Main Node */
.branch-node {
    flex-shrink: 0;
    width: 220px;
    padding: 24px 0;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.node-green {
    background: #22c55e;
}

.node-pink {
    background: #ec4899;
}

.node-blue {
    background: #1e40af;
}

/* Connecting Line */
.branch-line {
    flex-grow: 1;
    max-width: 80px;
    height: 2px;
    position: relative;
}

/* The list of items inside the border loop */
.branch-content {
    flex: 1;
    max-width: 850px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 30px;
    border-radius: 60px;
    position: relative;
    background: #fff;
    border: 2px solid transparent;
}

/* Borders matching node color */
.content-green {
    border-color: #22c55e;
}

.content-pink {
    border-color: #ec4899;
}

.content-blue {
    border-color: #1e40af;
}

/* Connecting line to the border */
.branch-line::after {
    content: '';
    position: absolute;
    top: -1px;
    /* Align with border */
    left: 0;
    width: 100%;
    height: 2px;
}

.line-green::after {
    background: #22c55e;
}

.line-pink::after {
    background: #ec4899;
}

.line-blue::after {
    background: #1e40af;
}

/* Items inside branch content */
.branch-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #4b5563;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.branch-content span i {
    font-size: 18px;
}

/* Icon colors matching parent */
.content-green span i {
    color: #22c55e;
}

.content-pink span i {
    color: #ec4899;
}

.content-blue span i {
    color: #1e40af;
}

.branch-content span:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Reverse row for alternating flow */
.row-reverse {
    flex-direction: row-reverse;
}

/* Responsive */
@media (max-width: 992px) {
    .branch-row {
        flex-direction: column;
        gap: 20px;
    }

    .branch-line {
        width: 2px;
        height: 30px;
        max-width: 2px;
    }

    .branch-line::after {
        width: 2px;
        height: 100%;
        left: 0;
        top: 0;
    }

    .branch-content {
        padding: 20px;
        border-radius: 30px;
    }
}

@media (max-width: 576px) {
    .floating-header .title {
        font-size: 28px;
    }

    .branch-node {
        width: 100%;
        max-width: 280px;
    }

    .branch-content span {
        width: 100%;
        justify-content: center;
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
    }
}

/* ========================= */
/* MODERN SERVICES SECTION */
/* ========================= */
.services-modern-section {
    background-color: #eef0ff;
    /* Light purple/blue background */
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.services-modern-container {
    width: min(1400px, 92%);
    margin: 0 auto;
}

.services-modern-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.services-modern-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #0f172a;
    max-width: 700px;
    line-height: 1.2;
    margin: 0;
}

.services-modern-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-modern-btn i {
    background-color: #ffffff;
    color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.services-modern-btn:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2, 93, 169, 0.2);
    color: #ffffff;
}

.services-modern-btn:hover i {
    color: var(--secondary);
    transform: translateX(3px);
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-modern-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

/* Glowing animated border on hover */
.services-modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #015DA9, #EF8002);
    /* Blue to Orange Gradient */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.services-modern-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 40px rgba(239, 128, 2, 0.2);
    /* Orange glowing shadow */
}

.services-modern-card:hover::before {
    opacity: 1;
}

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f8fafc;
    position: relative;
}

/* Subtle overlay gradient on hover */
.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(1, 93, 169, 0.6) 100%);
    /* Blue overlay */
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: multiply;
}

.services-modern-card:hover .card-image::after {
    opacity: 1;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-modern-card:hover .card-image img {
    transform: scale(1.12) rotate(1deg);
}

.card-content {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 3;
    background: #ffffff;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Transitive content lift */
.services-modern-card:hover .card-content {
    transform: translateY(-8px);
}

.card-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.services-modern-card:hover .card-content h4 {
    color: #EF8002;
    /* Highlight title on hover in Orange */
}

.card-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
    transition: color 0.3s ease;
}

.card-action {
    display: flex;
    justify-content: flex-end;
}

.card-link-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Button pulse background */
.card-link-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #015DA9, #EF8002);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.services-modern-card:hover .card-link-btn {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(239, 128, 2, 0.5);
    /* Orange shadow */
    transform: scale(1.1);
}

.services-modern-card:hover .card-link-btn::before {
    opacity: 1;
}

.card-link-btn i {
    transform: rotate(45deg);
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.services-modern-card:hover .card-link-btn i {
    transform: rotate(45deg) translate(2px, -2px);
    color: #ffffff;
}

    @media (max-width: 768px) {
        .services-modern-header {
            flex-direction: column;
            align-items: flex-start;
        }
    }

    /* Extracted FAQ CSS */
    .accordion-box {
        position: relative;
    }

    .accordion-box .block {
        position: relative;
        background: #ffffff;
        margin-bottom: 20px;
        border-radius: 20px;
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
        -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    .accordion-box .block:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        border-color: rgba(99, 102, 241, 0.2);
    }

    .accordion-box .block.active-block {
        background: #ffffff;
        border-color: rgba(239, 128, 2, 0.5);
        /* Orange border */
        box-shadow: 0 20px 40px rgba(239, 128, 2, 0.15);
        /* Orange shadow */
    }

    .accordion-box .block.active-block .acc-btn {
        color: #EF8002;
        /* Orange color for active */
    }

    .accordion-box .block .acc-btn {
        position: relative;
        color: #1e293b;
        font-weight: 600;
        font-size: 19px;
        line-height: 1.4;
        cursor: pointer;
        padding: 24px 80px 24px 30px;
        /* Right padding for icon */
        text-transform: none;
        -webkit-transition: all 400ms ease;
        transition: all 400ms ease;
        display: flex;
        align-items: center;
    }

    .accordion-box .block .acc-btn .icon {
        position: absolute;
        top: 50%;
        right: 25px;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        font-size: 14px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #015DA9;
        background-color: rgba(1, 93, 169, 0.1);
        -webkit-transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    @media (max-width: 575.98px) {
        .accordion-box .block .acc-btn .icon {
            width: 36px;
            height: 36px;
            right: 15px;
        }

        .accordion-box .block .acc-btn {
            padding: 20px 60px 20px 20px;
            font-size: 17px;
        }
    }

    .accordion-box .block:hover .acc-btn .icon {
        background-color: #EF8002;
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(239, 128, 2, 0.4);
    }

    .accordion-box .block .acc-btn.active .icon {
        -webkit-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotate(180deg);
        background: linear-gradient(135deg, #6366f1, #ec4899);
        color: #ffffff;
        box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
    }

    .accordion-box .block .acc-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 400ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .accordion-box .block .acc-content.current {
        grid-template-rows: 1fr;
    }

    .accordion-box .block .acc-content .content {
        overflow: hidden;
        /* Required for grid animation to work properly */
    }

    .accordion-box .block .acc-content .content .text {
        display: block;
        font-size: 16px;
        line-height: 1.8;
        font-weight: 400;
        margin-bottom: 0;
        color: #475569;
        padding: 0 30px 30px 30px;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 400ms ease 100ms;
        /* Delay text appearance slightly */
    }

    @media (max-width: 575.98px) {
        .accordion-box .block .acc-content .content .text {
            padding: 0 20px 20px 20px;
        }
    }

    .accordion-box .block .acc-content.current .content .text {
        opacity: 1;
        transform: translateY(0);
    }

    /*** 
====================================================================
    Faq Section
====================================================================
***/
    .faq-section {
        position: relative;
        padding: 120px 15px 115px;
    }

    @media (max-width: 991.98px) {
        .faq-section {
            padding: 80px 15px 75px;
        }
    }

    .faq-section .outer-box {
        max-width: 1700px;
        margin: 0 auto;
        border-radius: 10px;
        border: 1px solid rgba(0, 0, 0, 0.0705882353);
        padding: 120px 0 0;
        position: relative;
        overflow: hidden;
    }

    @media (max-width: 991.98px) {
        .faq-section .outer-box {
            padding: 80px 0 0;
        }
    }

    @media (max-width: 767.98px) {
        .faq-section .outer-box {
            padding: 60px 0 0;
        }
    }

    .faq-section .shape-17 {
        position: absolute;
        top: 0;
        left: 50px;
        pointer-events: none;
    }

    @media (max-width: 1199.98px) {
        .faq-section .shape-17 {
            display: none;
        }
    }

    .faq-section .shape-2 {
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .faq-section .shape-3 {
        position: absolute;
        bottom: 20px;
        left: 0px;
    }

    .faq-section .content-column .inner-column {
        position: relative;
        padding-right: 11px;
    }

    .faq-section .content-column .inner-column .sec-title-h1 {
        margin-bottom: 42px;
        padding-left: 30px;

    }

    .faq-section .content-column .inner-column .accordion-box .block .acc-btn {
        font-weight: 700;
    }

    .faq-section .image-column .inner-column {
        position: relative;
        margin-right: -57px;
        padding-left: 50px;
        margin-top: -60px;
    }

    @media (max-width: 1199.98px) {
        .faq-section .image-column .inner-column {
            margin-right: 0;
            padding-left: 0;
            margin-top: 0;
            text-align: center;
        }
    }

    .faq-section .image-column .inner-column .image {
        position: relative;
        margin-bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 5;
    }

    @media (max-width: 991.98px) {
        .faq-section .image-column .inner-column .image {
            width: 70%;
            margin: 0 auto;
        }
    }

    @media (max-width: 767.98px) {
        .faq-section .image-column .inner-column .image {
            width: 90%;
        }
    }

    @media (max-width: 575.98px) {
        .faq-section .image-column .inner-column .image {
            width: 100%;
        }
    }

    .faq-section .image-column .inner-column .image img {
        position: relative;
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .faq-section .image-column .inner-column .icon-20 {
        position: absolute;
        bottom: 65px;
        right: -100px;
        z-index: 6;
        -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
        box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
    }

    @media (max-width: 1699.98px) {
        .faq-section .image-column .inner-column .icon-20 {
            right: 0;
        }
    }

    @media (max-width: 991.98px) {
        .faq-section .image-column .inner-column .icon-20 {
            display: none;
        }
    }

    .faq-section .image-column .inner-column .icon-21 {
        position: absolute;
        top: 40px;
        left: -70px;
    }

    @media (max-width: 991.98px) {
        .faq-section .image-column .inner-column .icon-21 {
            display: none;
        }
    }

    .faq-section .image-column .inner-column .icon-22 {
        position: absolute;
        bottom: 30px;
        left: 0;
        -webkit-animation: fa-spin 10s infinite linear;
        animation: fa-spin 10s infinite linear;
    }

    @media (max-width: 767.98px) {
        .faq-section .image-column .inner-column .icon-22 {
            display: none;
        }
    }

    .faq-section .image-column .inner-column .icon-23 {
        position: absolute;
        top: 230px;
        right: -90px;
        z-index: 2;
        -webkit-animation: fa-spin 10s infinite linear;
        animation: fa-spin 10s infinite linear;
    }

    @media (max-width: 767.98px) {
        .faq-section .image-column .inner-column .icon-23 {
            display: none;
        }
    }

    .faq-section .image-column .inner-column .icon-24 {
        position: absolute;
        bottom: 60px;
        left: -40px;
        z-index: 1;
    }

    @media (max-width: 1199.98px) {
        .faq-section .image-column .inner-column .icon-24 {
            bottom: 0;
        }
    }

    @media (max-width: 991.98px) {
        .faq-section .image-column .inner-column .icon-24 {
            left: 0;
        }
    }

    @media (max-width: 767.98px) {
        .faq-section .image-column .inner-column .icon-24 {
            display: none;
        }
    }

    .faq-section .image-column .inner-column .icon-25 {
        position: absolute;
        top: -80px;
        right: -90px;
    }

    @media (max-width: 575.98px) {
        .faq-section .image-column .inner-column .icon-25 {
            display: none;
        }
    }

    .faq-section .image-column .inner-column .shape-18 {
        position: absolute;
        top: 0;
        right: -150px;
    }

    @media (max-width: 575.98px) {
        .faq-section .image-column .inner-column .shape-18 {
            display: none;
        }
    }

    /*** 


/* Extracted sec-title-h1 CSS */
    .sec-title-h1 {
        margin-bottom: 50px;
    }

    @media (max-width: 991.98px) {
        .sec-title-h1 {
            margin-bottom: 35px;
        }
    }

    .sec-title-h1 .sub-title {
        color: var(--primary);
        display: inline-block;
        font-weight: 700;
        letter-spacing: 0.8px;
        margin-bottom: 0;
        position: relative;
        text-transform: uppercase;
    }

    .sec-title-h1 .sub-title:before {
        background: var(--primary);
        bottom: 10px;
        content: "";
        height: 3px;
        position: absolute;
        right: -70px;
        width: 54px;
    }

    @media (max-width: 339.98px) {
        .sec-title-h1 .sub-title:before {
            display: none;
        }
    }

    .sec-title-h1 .sub-title.white {
        color: var(#ffffff);
    }

    .sec-title-h1 .title {
        font-weight: 700;
        line-height: 60px;
    }

    @media (max-width: 991.98px) {
        .sec-title-h1 .title {
            font-size: 36px;
            line-height: 45px;
        }

        .sec-title-h1 .title br {
            display: none;
        }
    }

    .sec-title-h1 .title.uppercase {
        text-transform: uppercase;
    }

    .sec-title-h1 .text {
        color: var(#475569);
        margin-top: 40px;
    }

    .sec-title-h1.white .sub-title {
        font-family: var(--text-font);
    }

    .sec-title-h1.white .title {
        color: var(#ffffff);
    }


    /* Extracted auto-container CSS */
    .large-container {
        max-width: var(--large-container-width);
        padding: 0px 15px;
        margin: 0 auto;
        width: 100%;
    }

    .auto-container {
        position: static;
        max-width: var(--container-width);
        padding: 0px 15px;
        margin: 0 auto;
        width: 100%;
    }

    .small-container {
        position: static;
        max-width: var(--small-container-width);
        padding: 0px 15px;
        margin: 0 auto;
        width: 100%;
    }

    /* Custom Grid for FAQ Section since Bootstrap is missing */
    .faq-section .row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-right: -15px;
        margin-left: -15px;
    }

    .faq-section .content-column,
    .faq-section .image-column {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        flex: 0 0 50%;
        max-width: 50%;
    }

    @media (max-width: 991.98px) {

        .faq-section .content-column,
        .faq-section .image-column {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
