        :root {
            --red-color: #ff3333;
            --blue-color: #3366ff;
            --bg-color: #050505;
            --card-bg: #121212;
            --text-color: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            min-height: 100vh;
            overflow-x: hidden;
            color: #eaf2ff;
              background: url('bg.jpg')  no-repeat center center fixed;
    background-repeat: no-repeat;
    background-size: cover; 
    /* background-position: center; 
            background: radial-gradient(circle at top left,
                    rgba(37, 99, 235, .18), transparent 35%),
                radial-gradient(circle at top right,
                    rgba(6, 182, 212, .10), transparent 35%),
                linear-gradient(135deg, #0f203c 0%, #122945 30%, #12294c 70%, #142d52 100%);
            background: radial-gradient(circle at top left, rgba(37, 99, 235, .18), transparent 35%), radial-gradient(circle at top right, rgba(6, 182, 212, .10), transparent 35%), linear-gradient(135deg, #0f203c 0%, #031e4c 30%, #02183a 70%, #021a3d 100%); */
        }

        /* Background Glow */

        body::before {
            content: "";
            position: fixed;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: #2563eb;
            filter: blur(180px);
            opacity: .12;
            top: -250px;
            left: -200px;
            z-index: -1;
        }

        body::after {
            content: "";
            position: fixed;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: #06b6d4;
            filter: blur(180px);
            opacity: .08;
            bottom: -250px;
            right: -200px;
            z-index: -1;
        }


        .logo img {
            width: 100px;
        }


        header {
            height: 100vh;
            width: 100%;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            border-bottom: 2px solid var(--blue-color);
        }

        /* Main Navbar Container - Center aligned */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background: rgb(5 21 46 / 80%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(100, 255, 218, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .08);
        }




        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #cccccc;
            font-size: 1rem;
            font-weight: 500;
            transition: 0.3s;
            padding: 10px 15px;
            letter-spacing: 1px;
            display: flex;
            gap: 10px;
        }

        .nav-links a:hover {
            color: #fff;
        }



        .dropdown {
            position: static;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background: linear-gradient(180deg, #142d52, #021a3d);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            width: max-content;
            left: 50%;
            transform: translateX(-50%);
            top: 100%;
            z-index: 999;
            border-radius: 12px;

            padding: 20px;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-grid {
            display: flex;
            gap: 30px;
            justify-content: center;
        }



        .dropdown-category {
            padding: 10px 15px;
            font-weight: 700;
            color: white;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            margin-bottom: 8px;
            border-radius: 4px;
            font-weight: bolder;
            letter-spacing: 2px;
        }

        .dropdown-column {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .dropdown-item {
            padding: 10px 15px;
            color: #ccc;
            display: block;
            font-size: 0.9rem;
            text-decoration: none;
            transition: 0.3s;
            border-radius: 4px;
        }

        .dropdown-item:hover {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        .drop-btn {
            color: #fff !important;
            cursor: pointer;
        }

        .drop-btn::after {
            content: ' \f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-left: 5px;
        }

        .dropdown:hover .drop-btn::after {
            content: ' \f106';
        }

        /* Login Button - Right Side */
        .login-btn {
            padding: 10px 25px;
            background: transparent;
            border: 2px solid var(--red-color);
            color: var(--red-color);
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: 0.3s;
            text-decoration: none;
        }

        .login-btn:hover {
            background: var(--red-color);
            color: #fff;
        }
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 8% 80px;

    background-image: url('hero1.png');
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center; 
}

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            width: 100%;
        }

        .hero-left {
            flex: 1;
        }

        .hero-tag {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 50px;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
            backdrop-filter: blur(20px);
            margin-bottom: 25px;
            font-size: 14px;
        }

        .hero-left h1 {
            font-size: 60px;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 25px;
        }

        .hero-left h1 span {
            background: linear-gradient(90deg,
                    #60a5fa,
                    #38bdf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-left p {
            font-size: 20px;
            color: #cbd5e1;
            line-height: 1.8;
            max-width: 700px;
        }

        .hero-buttons {
            margin-top: 35px;
            display: flex;
            gap: 20px;
        }

        .primary-btn {
            padding: 15px 35px;
            background: #2563eb;
            color: #fff;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            transition: .3s;
        }

        .primary-btn:hover {
            transform: translateY(-3px);
        }

        .secondary-btn {
            padding: 15px 35px;
            border: 1px solid rgba(255, 255, 255, .15);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .hero-stats {
            display: flex;
            gap: 20px;
            margin-top: 50px;
        }

        .stat-box {
            background: rgba(255, 255, 255, .05);
            border: 1px solid rgba(255, 255, 255, .08);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            padding: 20px 25px;
            min-width: 140px;
        }

        .stat-box h3 {
            color: #60a5fa;
            font-size: 26px;
            margin-bottom: 5px;
        }

        .hero-right {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-right img {
            width: 100%;
            max-width: 550px;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .4));
        }

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 14px;
            padding: 15px 20px;
            font-weight: 600;
        }

        .card-1 {
            top: 80px;
            left: 20px;
        }

        .card-2 {
            bottom: 80px;
            right: 20px;
        }

        @media(max-width:992px) {

            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-left h1 {
                font-size: 45px;
            }

            .hero-buttons,
            .hero-stats {
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(96, 165, 250, .5),
                    transparent);
            margin: 60px 0;
        }

        .partners-section {

            overflow: hidden;
        }

        .section-head {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-head span {
            color: white;
            letter-spacing: 2px;
            font-size: 14px;
        }

        .section-head h2 {
            font-size: 42px;
            color: #fff;
            background: linear-gradient(90deg,
                    #60a5fa,
                    #38bdf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .partners-slider {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .partners-track {
            display: flex;
            width: max-content;
            animation: scrollPartners 30s linear infinite;
        }

        .partner-logo {
            width: 220px;
            height: 70px;
            margin: 0 15px;
            display: flex;
            align-items: center;
            justify-content: center;

            background: rgba(255, 255, 255, .05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 18px;
            cursor: pointer;
        }

        .partner-logo img {
            width: 120px;
            height: 70px;
            object-fit: contain;
            filter:brightness(0) invert(1);
            
            opacity: .85;
        }

        .partner-logo:hover img {
            opacity: 1;
            filter:brightness(1) invert(0);
        }

        @keyframes scrollPartners {

            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }


        .partners-track:hover {
            animation-play-state: paused;
        }

      .business-scroll{
    display:flex;
    padding:100px 8%;
    gap:60px;
    min-height:100vh;
}


.section-head p{
    font-size:15px;
    line-height:1.8;
    color:#94a3b8;
    max-width:800px;
    margin:12px auto 80px;
}


.business-image{
    flex:1;
    position:sticky;
    top:120px;
    height:450px;
}

.business-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:24px;
    transition:0.4s ease;
}

.business-content{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:100px;
    padding-bottom:0px;
}

.business-block{
    min-height:500px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.mobile-image{
    display:none;
}

.section-tag{
    color:var(--blue-color);
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
}

.business-block h2{
    font-size:48px;
    margin:20px 0;
}

.business-block p{
    font-size:18px;
    line-height:1.8;
    color:#cbd5e1;
    margin-bottom:30px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:30px;
}

.info-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:15px;
    padding:18px;
    text-align:center;
}

.info-card strong{
    color:var(--blue-color);
    font-size:18px;
}

.business-btn{
    display:inline-block;
    width:fit-content;
    padding:15px 30px;
    border-radius:12px;
    text-decoration:none;
    background:var(--blue-color);
    color:#fff;
    font-weight:600;
}

/* ==========================
   Mobile Layout
========================== */

@media(max-width:768px){

    .business-scroll{
        flex-direction:column;
        padding:60px 20px;
        gap:60px;
    }

    .business-image{
        display:none;
    }

    .business-content{
        gap:80px;
        padding-bottom:0;
    }

    .business-block{
        min-height:auto;
    }

    .mobile-image{
        display:block;
        width:100%;
        height:250px;
        object-fit:cover;
        border-radius:20px;
        margin-bottom:25px;
    }

    .business-block h2{
        font-size:32px;
    }

    .business-block p{
        font-size:16px;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

    .business-btn{
        width:100%;
        text-align:center;
    }
}


.standout-section{
    padding:120px 8%;
    position:relative;
    overflow:hidden;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}


.standout-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(51,102,255,.08);
    filter:blur(120px);
    top:-200px;
    left:-100px;
    z-index:-1;
}

.standout-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
        background: #06b6d4;
    /* filter: blur(180px); */
    opacity: .08;
    filter:blur(120px);
    bottom:-200px;
    right:-100px;
    z-index:-1;
}




.glass-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}


.glass-card{
    position:relative;
    padding:35px 25px;
    border-radius:28px;

    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.08);

    overflow:hidden;
    cursor:pointer;

    transition:all .4s ease;

    opacity:0;
    animation:fadeUp .8s ease forwards;
    background:
linear-gradient(
135deg,
rgba(255,255,255,0.08),
rgba(255,255,255,0.03)
);
}

/* Stagger Animation */
.glass-card:nth-child(1){
    animation-delay:.1s;
}

.glass-card:nth-child(2){
    animation-delay:.3s;
}

.glass-card:nth-child(3){
    animation-delay:.5s;
}

.glass-card:nth-child(4){
    animation-delay:.7s;
}

/* Glow Circle */
.glass-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;

    background:rgba(79,124,255,.15);

    top:-90px;
    right:-90px;

    filter:blur(40px);

    transition:.5s ease;
}

/* Hover Effect */
.glass-card:hover{
    transform:translateY(-12px);
    border-color:rgba(79,124,255,.4);

    box-shadow:
    0 15px 40px rgba(0,0,0,.25),
    0 0 30px rgba(79,124,255,.15);
}

.glass-card:hover::before{
    transform:scale(1.4);
}

/* ===============================
   Number
==================================*/

.card-number{
    position:absolute;
    top:15px;
    right:20px;

    font-size:70px;
    font-weight:800;
    line-height:1;

    color:rgba(255,255,255,.05);

    transition:.4s ease;
}

.glass-card:hover .card-number{
    color:rgba(79,124,255,.15);
    transform:scale(1.1);
}

/* ===============================
   Icon
==================================*/

.card-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    background:rgba(79,124,255,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    transition:.4s ease;
}

.card-icon i{
    color:#4f7cff;
    font-size:30px;
}

.glass-card:hover .card-icon{
    transform:rotate(8deg) scale(1.08);
    background:rgba(79,124,255,.2);
}

/* ===============================
   Content
==================================*/

.glass-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:12px;
}

.glass-card p{
    color:#94a3b8;
    line-height:1.8;
    font-size:15px;
}

/* ===============================
   Animations
==================================*/

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}



@media(max-width:991px){

    .glass-grid{
        grid-template-columns:repeat(2,1fr);
    }

}



@media(max-width:768px){

    .standout-section{
        padding:70px 20px;
    }

  

    .glass-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .glass-card{
        padding:30px 22px;
    }

    .card-number{
        font-size:50px;
    }

    .glass-card h3{
        font-size:22px;
    }
}    
.cta-section{
    position:relative;
    margin:100px 8%;
    border-radius:30px;
    overflow:hidden;
    height:450px;
}

.cta-section img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cta-overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(120deg, #142d52 20%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.2) 100%);
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:60px;
    color:#fff;
}

.cta-overlay span{
    color:#4f7cff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.cta-overlay h2{
    font-size:56px;
    max-width:650px;
    line-height:1.15;
    margin-bottom:20px;
}

.cta-overlay p{
    max-width:550px;
    color:#cbd5e1;
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}

.cta-overlay a{
    width:fit-content;
    text-decoration:none;
    background:#3366ff;
    color:#fff;
    padding:15px 30px;
    border-radius:12px;
    font-weight:600;
}

@media(max-width:768px){

    .cta-section{
        height:500px;
        margin:60px 20px;
    }

    .cta-overlay{
        padding:30px;
        text-align:center;
        align-items:center;
    }

    .cta-overlay h2{
        font-size:32px;
    }

    .cta-overlay p{
        font-size:16px;
    }
}

/* LEFT */
.faq-story-left{
    flex:1;
}

.faq-story-left h2{
    font-size:38px;
    margin:15px 0;
}

.faq-story-left p{
    color:#bbb;
    line-height:1.7;
}

.cta-btn{
    display:inline-block;
    margin-top:25px;
    padding:12px 22px;
    background:var(--blue-color);
    color:#fff;
    border-radius:8px;
    text-decoration:none;
}
.faq-story {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alignment adjust ki hai */
    padding: 90px 8%;
 
    color: #fff;
    gap: 60px;
}

/* Right Section Cards Styling */
.faq-story-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Cards ke beech space */
}

.faq-item {
    background: rgba(255, 255, 255, 0.05); /* Light grey card background */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--blue-color);
    background: rgba(255, 255, 255, 0.08);
}

.q-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.icoon {
    color: var(--blue-color);
    font-size: 24px;
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #bbb;
    line-height: 1.6;
}

.answer.show {
    max-height: 100px; 
    padding-top: 15px;
}

.faq-story-right{
    flex:1;
}

.q-line{
    font-size:18px;
    /* padding:12px 0; */
    border-bottom:1px solid rgba(255,255,255,0.08);
    color:#ddd;
    transition:0.3s;
    cursor:default;
}

.q-line:hover{
    color:var(--blue-color);
    transform:translateX(8px);
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
.q-line { 
    display: flex; 
    justify-content: space-between; 
    cursor: pointer; 
    padding-bottom: 10px; 
}
.support-cards{
    display:grid;
    grid-template-columns: repeat(3, 3fr);
    gap:12px;
    margin:25px 0;
}

.mini-card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    padding:12px 15px;
    border-radius:10px;
}

.mini-card strong{
    display:block;
    color:#fff;
    margin-bottom:3px;
}

.mini-card p{
    font-size:13px;
    color:#aaa;
}
.answer { 
    max-height: 0; 
    overflow: hidden; 
    transition: 0.3s ease-out; 
    color: #bbb; 
    padding: 0 10px;
}
.answer.show { 
    max-height: 100px; 
    padding: 10px 0; 
}
        .footer {
            background: linear-gradient(180deg, #021a3d, #10294e);
            backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            margin-top: 100px;
        }

        .footer-container {
          
            padding: 70px 6%;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
        }

        .footer-logo {
            width: 130px;
            margin-bottom: 20px;
        }

        .footer-col h4 {
            color: #60a5fa;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-col p,
        .footer-col a {
            color: #cbd5e1;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            line-height: 1.8;
            transition: .3s;
        }
.footer-col p{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-col p i{
    width: 40px;
    height: 40px;
    background: rgba(79,70,229,0.15);
    color: white;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-col p a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col p a:hover{
    color: #4f46e5;
}
        .footer-col a:hover {
            color: #60a5fa;
            padding-left: 5px;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-icons a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: #94a3b8;
        }

        @media(max-width:992px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
        }
        /* Sidebar Setup */

.logo1{
    display: none;
}
.nav-links.active { left: 0; }

.menu-toggle { display: none; cursor: pointer; font-size: 24px; }
.close-btn { display: none; align-self: flex-end; cursor: pointer; }

/* Desktop View */
@media (max-width: 769px) {
   .nav-links {
    position: fixed;
    top: 0;
    right: -75%; /* Hidden by default */
    width: 75%;
   
    display: flex;
    flex-direction: column;
    padding: 10px;
    transition: 0.3s;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        background:#021a3d;
        height: 100vh;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25), inset 0 1px 0 rgba(255, 255, 255, .08);
     overflow-y: scroll !important;
}

.logo1{
    display: block;

}
.logo1 img{
    width: 100px;
}
.nav-links a {
    font-size: 15px !important;
}
.mobile-api{
    justify-content: center;
}
}

/* Mobile View */
@media (max-width: 768px) {
    .menu-toggle, .close-btn { display: block; }
    
    html{
        overflow-x: hidden;
    }
}
/* Mobile view ke liye dropdown logic */
@media (max-width: 768px) {
    .dropdown-content {
        display: none; /* Default hide */
        position: relative; /* Sidebar ke andar adjust karne ke liye */
        width: 100%;
        box-shadow: none;
        top: 0%;  
        padding: 10px;
      }

    .dropdown.active .dropdown-content {
        display: none; /* Click hone par show hoga */
    }
    
    .dropdown-grid {
        display: flex;
        flex-direction: column; 
    }
}

.testimonial-section {
    padding: 80px 8%;
}

.container {
    max-width: 1100px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
       display: inline-block;
    padding: 10px 18px;
    background: rgba(37, 99, 235, 0.08);
    color: #00a3ff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.section-header h2 {
    font-size: 36px;
    margin: 10px 0;
}

.section-header p {
    color: #a1a1aa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}



.quote {
    font-size: 50px;
    color: #3b82f6;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: 0.2;
}




.testimonial-section{
    padding:90px 20px;
        background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}


.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header span{
    color:#60a5fa;
    font-weight:600;
    letter-spacing:2px;
        background: rgba(37, 99, 235, 0.08);
}

.section-header h2{
    font-size:38px;
    margin:10px 0;
}

.section-header p{
    color:#94a3b8;
}

.testimonial-wrapper{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding:10px;
    scroll-snap-type:x mandatory;
}

.testimonial-wrapper::-webkit-scrollbar{
    display:none;
}

.testimonial-card{
    min-width:320px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding:40px;
    border-radius:18px;
    transition:0.3s ease;
    scroll-snap-align:start;
    position:relative;
}

.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.2);
    border-color:#3b82f6;
}

.testimonial-card p{
    color:#d1d5db;
    line-height:1.6;
    font-size:15px;
}

.user{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:18px;
}

.user img{
    width:45px;
    height:45px;
    border-radius:50%;
    border:2px solid #3b82f6;
}

.user h4{
    margin:0;
    font-size:15px;
}

.user span{
    font-size:12px;
    color:#94a3b8;
}

.highlight{
    border:1px solid #3b82f6;
    box-shadow:0 0 25px rgba(59,130,246,0.2);
    transform: scale(1.05);
}
/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');


.softzix-services-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    padding:120px 20px;
    text-align:center;
  
}

/* =========================
   BACKGROUND VIDEO
========================= */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* =========================
   DARK OVERLAY
========================= */

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;

}



.softzix-hero-content{
    position:relative;
    z-index:5;
    max-width:950px;
    margin:auto;
}



.softzix-top-bar{
    position:absolute;
    top:35px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;

    padding:12px 22px;

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(14px);

    border-radius:50px;

    color:#fff;
    font-size:14px;
    font-weight:500;

    transition:.3s;
}

.softzix-top-bar:hover{
    border-color:#3b82f6;
}

/* =========================
   BADGES
========================= */

.softzix-badges{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:30px;
}

.softzix-badge{
    padding:10px 18px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    color:#dbeafe;

    font-size:14px;
    font-weight:500;

    backdrop-filter:blur(10px);
}

.softzix-badge i{
    margin-right:8px;
    color:#3b82f6;
}

/* =========================
   HEADING
========================= */

.softzix-hero-content h1{
    font-size:60px;
    line-height:1.05;
    font-weight:900;
    color:#fff;
    letter-spacing:-3px;
    margin-bottom:25px;
}

.softzix-hero-content h1 span{
    color:#3b82f6;
}

/* =========================
   DESCRIPTION
========================= */

.softzix-hero-content p{
    max-width:760px;
    margin:auto;

    color:#cbd5e1;

    font-size:18px;
    line-height:1.9;

    margin-bottom:40px;
}

/* =========================
   BUTTON
========================= */

.softzix-consult-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 30px;

    text-decoration:none;
    color:#fff;

    font-size:15px;
    font-weight:600;

    border-radius:14px;

    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    box-shadow:
        0 15px 35px rgba(37,99,235,.35);

    transition:.35s ease;
}

.softzix-consult-btn:hover{
    transform:translateY(-4px);

    box-shadow:
        0 20px 40px rgba(37,99,235,.45);
}

/* =========================
   SCROLL INDICATOR
========================= */

.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    z-index:5;

    color:#94a3b8;
    font-size:13px;
}

/* =========================
   LARGE TABLET
========================= */

@media(max-width:1024px){

    .softzix-hero-content h1{
        font-size:60px;
    }

    .softzix-hero-content p{
        font-size:17px;
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:768px){

    .softzix-services-hero{
        min-height:90vh;
        padding:120px 20px 80px;
    }

    .softzix-top-bar{
        width:90%;
        font-size:13px;
        top:20px;
    }

    .softzix-badges{
        gap:10px;
    }

    .softzix-badge{
        padding:8px 14px;
        font-size:13px;
    }

    .softzix-hero-content h1{
        font-size:48px;
        letter-spacing:-1px;
    }

    .softzix-hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .softzix-consult-btn{
        padding:14px 24px;
        font-size:14px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .softzix-services-hero{
        min-height:85vh;
        padding:110px 15px 70px;
    }

    .softzix-top-bar{
        width:95%;
        padding:10px 16px;
        font-size:12px;
    }

    .softzix-badges{
        margin-bottom:22px;
    }

    .softzix-badge{
        font-size:12px;
        padding:8px 12px;
    }

    .softzix-hero-content h1{
        font-size:38px;
        line-height:1.15;
    }

    .softzix-hero-content p{
        font-size:14px;
        line-height:1.7;
        margin-bottom:30px;
    }

    .softzix-consult-btn{
        width:100%;
        justify-content:center;
        max-width:280px;
    }

    .softzix-services-hero::before{
        width:280px;
        height:280px;
    }

    .softzix-services-hero::after{
        width:250px;
        height:250px;
    }
}



@media(max-width:380px){

    .softzix-hero-content h1{
        font-size:32px;
    }

    .softzix-badge{
        width:100%;
    }

}
.work-process{
    padding:120px 8%;
    color:#fff;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;
    align-items:start;
}

.process-left{
    position:sticky;
    top:100px;
}

.process-left span{
    color:#4f8cff;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.process-left h2{
    font-size:58px;
    line-height:1.1;
    margin:20px 0;
}

.process-left p{
    color:#aeb8c8;
    line-height:1.8;
}

.step{
    display:flex;
    gap:30px;
    padding:40px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.step h3{
    font-size:70px;
    color:transparent;
    -webkit-text-stroke:1px #4f8cff;
    min-width:110px;
}

.step h4{
    font-size:28px;
    margin-bottom:10px;
}

.step p{
    color:#aeb8c8;
    line-height:1.8;
}

@media(max-width:991px){

    .work-process{
        grid-template-columns:1fr;
        gap:40px;
    }

    .process-left{
        position:static;
    }

    .process-left h2{
        font-size:40px;
    }

    .step h3{
        font-size:50px;
        min-width:80px;
    }

    .step h4{
        font-size:22px;
    }
}
.services-section{
   
    color:#fff;
    padding:120px 8%;
}

.services-heading{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:100px;
}

.services-heading span{
    color:#3b82f6;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
}

.services-heading h2{
    font-size:40px;
    line-height:1.1;
    margin:15px 0;
}

.services-heading p{
    color:#9ca3af;
    line-height:1.8;
}

.service-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-bottom:80px;
}

.service-number{
    font-size:110px;
    font-weight:800;
    line-height:1;
    color:transparent;
    -webkit-text-stroke:1px rgba(59,130,246,.4);
    display:block;
}

.service-content h3{
    font-size:52px;
    margin:15px 0;
    line-height:1.1;
}

.service-content p{
    color:#9ca3af;
    line-height:1.8;
    max-width:500px;
}

.service-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:40px;
    backdrop-filter:blur(15px);
}

.service-card h4{
    font-size:28px;
    margin-bottom:15px;
}

.service-card p{
    color:#d1d5db;
    line-height:1.9;
}

.service-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:25px;
}

.service-tags span{
    padding:10px 18px;
    border-radius:50px;
    background:rgba(59,130,246,.12);
    border:1px solid rgba(59,130,246,.25);
    font-size:14px;
}

.service-buttons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.service-buttons a{
    text-decoration:none;
    padding:14px 28px;
    border-radius:50px;
    color:#fff;
    transition:.3s;
}

.service-buttons a:first-child{
    background:#2563eb;
}

.service-buttons a:last-child{
    border:1px solid rgba(255,255,255,.15);
}

.service-buttons a:hover{
    transform:translateY(-4px);
}

.reverse{
    grid-template-columns:1fr 1fr;
}

@media(max-width:991px){

    .service-row,
    .reverse{
        grid-template-columns:1fr;
        gap:30px;
    }

    .services-heading h2{
        font-size:38px;
    }

    .service-content h3{
        font-size:34px;
    }

    .service-number{
        font-size:70px;
    }
}


.about-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px;
    overflow:hidden;
}

/* VIDEO */
.hero-videoo{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* DARK OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(5,8,22,0.75),
        rgba(5,8,22,0.90)
    );
    z-index:2;
}



/* ABOUT */
.who-we-are {
    padding: 100px 8%;
    color: #fff;
}

.who-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-image{
    flex:1;
}

/* Image */
.who-image{
    position:relative;
    flex:1;
}

/* Image */
.who-image img{
width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    transition: 0.6s ease;
    filter: grayscale(20%) brightness(0.9);
    position: relative;
    z-index: 2;
}

/* OUTER BORDER (thicker) */
.who-image::before{
    content:"";
    position:absolute;
    top:5px;
    left:5px;
    width:100%;
    height:100%;

    border:8px solid rgba(59,130,246,0.7); /* 👈 increased from 2px to 4px */

    border-radius:18px;

    z-index:1;
}
.who-image:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1);
}
/* --- CONTENT SECTION --- */
.who-content .tag { color: #3b82f6; font-weight: 700; letter-spacing: 2px; }

.who-content h2 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin: 20px 0;
}

.who-content h2 span { color: #3b82f6; }

.who-content p {
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.who-btn {
    display: inline-block;
    padding: 16px 35px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}

.who-btn:hover {
    background: #2563eb;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .who-container { grid-template-columns: 1fr; }
    .who-image img { height: 350px; }
}


.stats-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.stat-card{
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* ICON BACKGROUND CIRCLE */
.stat-card i{
    font-size: 26px;
    color: #fff;
       background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    
    transition: 0.3s ease;
}

/* glow bubble background */
.stat-card::before{
    content:"";
    position:absolute;
    width:160px;
    height:160px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%);
    top:-40px;
    right:-40px;
    filter: blur(10px);
    z-index: 0;
}

/* hover effect */
.stat-card:hover{
    transform: translateY(-10px);
    border-color: #3b82f6;
}

.stat-card:hover i{
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(59,130,246,0.5);
}

/* NUMBER */
.stat-card h2{
    font-size: 42px;
    color: #3b82f6;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

/* TEXT */
.stat-card p{
    color: #cbd5e1;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

/* RESPONSIVE */
@media(max-width:900px){
    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:500px){
    .stats-container{
        grid-template-columns:1fr;
    }
}

/* RESPONSIVE */
@media(max-width:900px){
    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:500px){
    .stats-container{
        grid-template-columns:1fr;
    }
}


/* MAIN WRAPPER */
.mv-wrapper{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 80px 1fr;
    align-items:center;
    gap:20px;
    position:relative;
}

/* BLOCKS */
.mv-block{
    padding:30px 10px;
    opacity:0;
    transform:translateY(40px);
    animation:fadeUp 1s ease forwards;
}

.mv-block.right{
    animation-delay:0.3s;
}

/* ICON */
.mv-icon{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
       background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
    margin-bottom:20px;
    animation:pulse 3s infinite;
}

.mv-icon i{
    font-size:22px;
}

/* TITLE */
.mv-block h2{
    font-size:32px;
    margin-bottom:12px;
}

/* TEXT */
.mv-block p{
    color:#cbd5e1;
    font-size:15.5px;
    line-height:1.8;
}

/* CENTER LINE */
.mv-line{
    width:2px;
    height:100%;
    background:linear-gradient(to bottom, transparent, #3b82f6, transparent);
    animation:lineGlow 3s infinite;
}

/* ANIMATIONS */
@keyframes fadeUp{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

@keyframes lineGlow{
    0%,100%{opacity:0.4;}
    50%{opacity:1;}
}

/* RESPONSIVE */
@media(max-width:800px){
    .mv-wrapper{
        grid-template-columns:1fr;
        text-align:center;
    }

    .mv-line{
        display:none;
    }

    .mv-icon{
        margin:auto;
        margin-bottom:20px;
    }
}

/* VALUES */
.values{
padding:100px 20px;
text-align:center;
}

.value-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1100px;
margin:auto;
margin-top:40px;
}

.value{
background:#0f172a;
padding:30px;
border-radius:15px;
}

.value i{
font-size:30px;
color:#3b82f6;
margin-bottom:10px;
}

/* CTA */
.cta{
padding:120px 20px;
text-align:center;
background:#0f172a;
}

.cta h2{
font-size:40px;
margin-bottom:10px;
}

.cta p{
color:#cbd5e1;
margin-bottom:20px;
}

.cta a{
display:inline-block;
padding:12px 25px;
background:#3b82f6;
color:#fff;
text-decoration:none;
border-radius:8px;
}

/* RESPONSIVE */
@media(max-width:768px){

.container,
.mission,
.value-grid,
.stats{
grid-template-columns:1fr;
}

.about-hero h1{
font-size:38px;
}

.about-text h2{
font-size:28px;
}

.cta h2{
font-size:28px;
}
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


.contact-banner{
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url("contact1.png") center/cover no-repeat;
    filter: blur(4px);
    transform: scale(1.08);
    z-index: -2;
}

.contact-banner::after{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

.contact-banner-content{
    max-width: 900px;
    padding: 0 20px;
}

.contact-label{
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.contact-banner-content h1{
    font-size: 82px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-banner-content p{
    
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
}

@media (max-width: 991px){

    .contact-banner{
        height: 450px;
    }

    .contact-banner-content h1{
        font-size: 58px;
    }

    .contact-banner-content p{
        font-size: 18px;
    }

}

@media (max-width: 576px){

    .contact-banner{
        height: 400px;
    }

    .contact-banner-content h1{
        font-size: 42px;
    }

    .contact-banner-content p{
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-label{
        font-size: 12px;
        padding: 8px 18px;
    }

}
.social-section{
  padding:60px 8%;
  text-align:center;
}

.section-label{
  font-size:12px;
  letter-spacing:4px;
  color:#60a5fa;
  margin-bottom:25px;
  text-transform:uppercase;
}

.social-grid{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.social-card{
  width:65px;
  height:65px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:14px;
  transition:0.3s;
  text-decoration: none;
}

.social-card:hover{
  transform:translateY(-6px);
  border-color:#60a5fa;
  box-shadow:0 10px 30px rgba(96,165,250,0.15);
}

/* ICON FIX */
.social-card i{
    
    color: #fff;
    font-size: 34px;

}

/* ================= CONTACT ================= */
.contact-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
padding:20px 8%;
}

/* LEFT */
.contact-info h2{
  font-size:2.6rem;
  margin-bottom:10px;
}

.contact-info p{
  color:#9ca3af;
  line-height:1.7;
}

.status-badge{
  display:inline-block;
  margin-top:12px;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  color:#34d399;
  background:rgba(52,211,153,0.1);
  border:1px solid rgba(52,211,153,0.2);
}

/* INFO BOX */
.info-items{
  margin-top:30px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.info-item{
  display:flex;
  gap:14px;
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

.info-item:hover{
  border-color:#60a5fa;
  transform:translateX(4px);
}

.ii-icon{
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(96,165,250,0.1);
  border-radius:12px;
}

.ii-icon i{
  width:18px;
  color:white;
}

/* TEXT */
.ii-title{
  font-size:12px;
  color:#9ca3af;
  letter-spacing:1px;
  text-transform:uppercase;
}

.ii-value{
  font-size:15px;
  font-weight:500;
  margin-top:2px;
}

/* ================= FORM ================= */
.form-card{
  background:rgba(255,255,255,0.03);
  padding:30px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(10px);
}

.fg{
  margin-bottom:16px;
}

label{
  font-size:12px;
  color:#9ca3af;
  margin-bottom:6px;
  display:block;
  text-transform:uppercase;
  letter-spacing:1px;
}

input,textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.1);
      background: #142d52;

  color:#fff;
  outline:none;
  transition:0.3s;
}

input:focus,textarea:focus{
  border-color:#60a5fa;
  box-shadow:0 0 0 3px rgba(96,165,250,0.15);
}

/* BUTTON */
.send-btn{
  width:100%;
  padding:14px;
  background:linear-gradient(135deg,#3b82f6,#60a5fa);
  border:none;
  border-radius:12px;
  color:#fff;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.send-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(59,130,246,0.25);
}

.map-section{
  
  padding: 80px 20px;
}

.map-header{
  text-align: center;
  margin-bottom: 25px;
}

.map-header h2{
  font-size: 32px;
  color: #fff;
}

.map-header p{
  color: #aaa;
  margin-top: 8px;
  font-size: 14px;
}

.map-wrap{
  width: 100%;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  position: relative;
}

/* glow border effect */
.map-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #00a3ff, #7c4dff, #00ff88);
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.map-wrap iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(110%);
}

/* mobile */
@media(max-width: 768px){
  .map-wrap{
    height: 350px;
  }

  .map-header h2{
    font-size: 24px;
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .contact-section{
    grid-template-columns:1fr;
  }

  .top-section h1{
    font-size:2.8rem;
  }
}
    .api-showcase{
    padding:90px 8%;
    
}

.api-header{
    text-align:center;
    max-width:900px;
    margin:auto;
    margin-bottom:60px;
}

.api-header span{
     display:inline-block;
    padding:10px 18px;
    background:rgba(37,99,235,0.08);
    color:#00a3ff;
    font-size:14px;
    font-weight:600;
    border-radius:50px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.api-header h2{
    font-size:42px;
    margin:18px 0 15px;
    color:white;
}

.api-header p{
    color:#94a3b8;
    line-height:1.8;
}

.api-container{
  
    display:grid;
    grid-template-columns:repeat(3, 3fr);
    gap:30px;
}

.api-box{
    position:relative;
        background: rgba(255, 255, 255, 0.05);
    padding:35px;
    border-radius:24px;
    overflow:hidden;
    transition:.4s;
   border: 1px solid rgba(255, 255, 255, 0.08);
}

.api-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#5d81bc;
}

.api-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.api-icon{
    width:65px;
    height:65px;
    border-radius:18px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
  
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    margin-bottom:20px;
}

.api-box h3{
    font-size:22px;
    margin-bottom:12px;
    color:white;
}

.api-box p{
    color:#94a3b8;
    line-height:1.8;
    margin:0;
}
/* Tablet */
@media (max-width: 992px){

    .api-showcase{
        padding:70px 5%;
    }

    .api-container{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }

    .api-header h2{
        font-size:34px;
    }

    .api-box{
        padding:28px;
    }

}

/* Mobile */
@media (max-width: 768px){

    .api-showcase{
        padding:60px 20px;
    }

    .api-header{
        margin-bottom:40px;
    }

    .api-header span{
        font-size:12px;
        padding:8px 14px;
    }

    .api-header h2{
        font-size:28px;
        line-height:1.3;
    }

    .api-header p{
        font-size:15px;
        line-height:1.7;
    }

    .api-container{
        grid-template-columns:1fr;
        gap:20px;
    }

    .api-box{
        padding:25px;
        border-radius:20px;
    }

    .api-icon{
        width:55px;
        height:55px;
        font-size:22px;
        border-radius:14px;
        margin-bottom:15px;
    }

    .api-box h3{
        font-size:20px;
    }

    .api-box p{
        font-size:14px;
        line-height:1.7;
    }

}

/* Small Mobile */
@media (max-width: 480px){

    .api-showcase{
        padding:50px 15px;
    }

    .api-header h2{
        font-size:24px;
    }

    .api-header p{
        font-size:14px;
    }

    .api-box{
        padding:22px;
    }

    .api-box h3{
        font-size:18px;
    }

    .api-box p{
        font-size:13px;
    }

}.wl-section{
    padding:100px 8%;
   
    overflow:hidden;
}

.wl-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    align-items:center;
    gap:80px;
}

.wl-content span{
    display:inline-block;
    padding:10px 18px;
    background:rgba(37,99,235,0.08);
    color:#00a3ff;  
    font-size:14px;
    font-weight:600;
    border-radius:50px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.wl-content h2{
    font-size:40px;
    line-height:1.15;
    font-weight:700;
    color:white;
    margin:25px 0;
}

.wl-content h2 strong{
    display:block;
    color:#2563eb;
}

.wl-content p{
    font-size:17px;
    color:#94a3b8;
    line-height:1.8;
    margin-bottom:35px;
}

.wl-content ul{
    margin:0;
    padding:0;
    list-style:none;
       display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px 25px;
}

.wl-content ul li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    display: flex;
    flex-direction: row;
    font-size:16px;
    font-weight:500;
    color:#94a3b8;
}

.wl-content ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
}

.wl-content a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 32px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    margin-top:20px;
    font-weight:600;
    transition:.3s;
}

.wl-content a:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

.wl-image{
    position:relative;
}



.wl-image img{
    width:100%;
    border-radius:24px;
    position:relative;
    z-index:2;
    display:block;
    box-shadow:
    0 30px 60px rgba(15,23,42,0.10),
    0 10px 25px rgba(15,23,42,0.08);
}

/* Floating Cards */

.wl-image .floating-card{
    position:absolute;
    background:#fff;
    padding:18px 22px;
    border-radius:16px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    z-index:5;
}

.wl-image .card-one{
    top:30px;
    left:-30px;
}

.wl-image .card-two{
    bottom:40px;
    right:-30px;
}

.floating-card h4{
    margin:0;
    font-size:24px;
    color:#2563eb;
}

.floating-card p{
    margin:5px 0 0;
    color:#64748b;
    font-size:14px;
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px){

    .wl-wrapper{
        gap:50px;
    }

    .wl-content h2{
        font-size:36px;
    }

}

@media (max-width: 992px){

    .wl-section{
        padding:80px 5%;
    }

    .wl-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .wl-content{
        order:2;
        text-align:center;
    }

    .wl-image{
        order:1;
        max-width:700px;
        margin:auto;
    }

    .wl-content ul{
        max-width:700px;
        margin:auto;
        text-align:left;
    }

    .wl-content h2{
        font-size:34px;
    }

}

@media (max-width: 768px){

    .wl-section{
        padding:60px 20px;
    }

    .wl-wrapper{
        gap:35px;
    }

    .wl-content span{
        font-size:12px;
        padding:8px 14px;
    }

    .wl-content h2{
        font-size:28px;
        line-height:1.3;
        margin:18px 0;
    }

    .wl-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:25px;
    }

    .wl-content ul{
        grid-template-columns:1fr;
        gap:10px;
    }

    .wl-content ul li{
        font-size:14px;
        margin-bottom:10px;
        padding-left:30px;
    }

    .wl-image .floating-card{
        display:none;
    }

    .wl-content a{
        padding:14px 28px;
        font-size:15px;
    }

}

@media (max-width: 576px){

    .wl-section{
        padding:50px 15px;
    }

    .wl-content{
        text-align:left;
    }

    .wl-content h2{
        font-size:24px;
    }

    .wl-content h2 strong{
        display:inline;
    }

    .wl-content p{
        font-size:14px;
    }

    .wl-content ul li{
        font-size:13px;
    }

    .wl-content a{
        width:100%;
        justify-content:center;
    }

    .wl-image img{
        border-radius:18px;
    }

}
.growth-section{
    padding:100px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.growth-left span{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.06);
    color:#00a3ff;
    font-size:14px;
}

.growth-left h2{
    font-size:46px;
    color:#fff;
    margin:20px 0;
    line-height:1.2;
}

.growth-left h2 strong{
    color:#5d81bc;
    display:block;
}

.growth-left p{
    color:#94a3b8;
    line-height:1.9;
    margin-bottom:30px;
}

.growth-left a{
    display:inline-block;
    padding:14px 30px;
    background:#5d81bc;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
}

.growth-right{
    position:relative;
}

.growth-right::before{
    content:"";
    position:absolute;
    left:22px;
    top:0;
    width:2px;
    height:100%;
    background:rgba(255,255,255,.1);
}

.growth-item{
    display:flex;
    gap:25px;
    margin-bottom:40px;
    position:relative;
}

.growth-item h3{
    min-width:45px;
    width:45px;
    height:45px;
    border-radius:50%;
    background:#5d81bc;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    z-index:2;
}

.growth-item h4{
    color:#fff;
    margin-bottom:10px;
}

.growth-item p{
    color:#94a3b8;
    line-height:1.7;
}

@media(max-width:992px){
    .growth-section{
        grid-template-columns:1fr;
        gap:50px;
    }
}

@media(max-width:768px){
    .growth-section{
        padding:70px 20px;
    }

    .growth-left h2{
        font-size:30px;
    }
}
.brand-features-section{
    padding:0px 8%;
    background:transparent;
}

/* HEADER */
.brand-features-header{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.brand-features-header span{
    display:inline-block;
    padding:10px 18px;
    background:rgba(93,129,188,.08);
    border:1px solid rgba(93,129,188,.2);
    color:#00a3ff;
    font-size:13px;
    font-weight:600;
    border-radius:50px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.brand-features-header h2{
    font-size:35px;
    color:#fff;
    margin:22px 0;
    line-height:1.2;
    letter-spacing:-0.5px;
}

.brand-features-header p{
    color:#94a3b8;
    font-size:16px;
    line-height:1.9;
    max-width:700px;
    margin:auto;
}

/* GRID */
.brand-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:0;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    overflow:hidden;
    background:rgba(255,255,255,.02);
}

/* BOX */
.brand-feature{
    padding:40px 30px;
    position:relative;
    transition:.4s;
}

/* BORDER SEPARATION */
.brand-feature:not(:last-child){
    border-right:1px solid rgba(255,255,255,.08);
}

/* TOP LINE EFFECT */
.brand-feature::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#5d81bc,transparent);
    opacity:0;
    transition:.4s;
}

.brand-feature:hover::before{
    opacity:1;
}

/* NUMBER */
.feature-no{
    font-size:14px;
    font-weight:700;
    color:#5d81bc;
    letter-spacing:2px;
    margin-bottom:18px;
}

/* TITLE */
.brand-feature h3{
    color:#fff;
    font-size:20px;
    margin-bottom:12px;
}

/* TEXT */
.brand-feature p{
    color:#94a3b8;
    font-size:14px;
    line-height:1.7;
}

/* HOVER */
.brand-feature:hover{
    background:rgba(93,129,188,.05);
    transform:translateY(-6px);
}

/* RESPONSIVE */
@media(max-width:1024px){
    .brand-features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .brand-features-section{
        padding:70px 20px;
    }

    .brand-features-header h2{
        font-size:30px;
    }

    .brand-features{
        grid-template-columns:1fr;
    }

    .brand-feature:not(:last-child){
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.08);
    }
}



.section-header{
    text-align: center;
    margin-bottom: 70px;
}

.section-header span{
    color: #38bdf8;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
        background: rgba(37, 99, 235, 0.08);
}

.section-header h2{
    font-size: 42px;
    font-weight: 700;
    margin: 12px 0;
}

.section-header p{
    color: #94a3b8;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* GRID spacing improved */
.payinout-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}

.card{
    position: relative;
    padding: 45px 20px;
    border-radius: 22px;
        background: linear-gradient(145deg, #3b82f638, #3084ff24);

    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    overflow: hidden;
    min-height: 320px;
}


.card:hover{
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(56,189,248,0.5);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}


.card::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 55%);
    transform: rotate(20deg);
    opacity: 0;
    transition: 0.5s;
}

.card:hover::before{
    opacity: 1;
}


.icon{
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(56,189,248,0.15);
    margin-bottom: 20px;
    font-size: 26px;
    color: white;
}

/* TITLE */
.card h3{
    font-size: 26px;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.card p{
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: 16px;
}





.btn.ghost{
      background: linear-gradient(135deg, #4ea1ff, #2563eb);
    color: #fff;
    box-shadow: 0 10px 25px rgba(37,99,235,0.3);
 padding: 10px;
 border-radius: 8px;
}

.btn.ghost:hover{
    background: rgba(255,255,255,0.08);
}

/* LIST better spacing */
.card ul{
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}

.card ul li{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 18px;
}

/* icons inside list */
.card ul li i{
    color: #38bdf8;
    font-size: 15px;
}

/* CTA LINK */
.card a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.card a:hover{
    gap: 14px;
    color: #7dd3fc;
}

/* MOBILE */
@media(max-width: 768px){
    .payinout-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-header h2{
        font-size: 30px;
    }

    .card{
        padding: 35px 25px;
    }
    .card ul li{
   
    font-size: 15px !important;
}

}
.approval-workflow{
    padding: 80px 8%;

    font-family: Arial, sans-serif;
}

.section-title{
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    color: white;
    font-weight: 600;
}

.workflow-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.workflow-item{
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.icon{
    font-size: 24px;
    color: #007bff;
    line-height: 1;
    margin-top: 2px;
}

.workflow-item h4{
    margin: 0 0 8px 0;
    font-size: 18px;
    color: white;
}

.workflow-item p{
    color: #94a3b8;
    margin: 0;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px){
    .workflow-grid{
        grid-template-columns: 1fr;
    }

    .section-title{
        font-size: 28px;
    }
    .sb-grid{
        flex-direction: column !important;
    }
}
.pay-section{
    padding: 80px 8%;

    color: #fff;
}


.pay-wrapper{
    display: flex;
    align-items: center;
    gap: 70px;
}

/* LEFT IMAGE */
.pay-left{
    flex: 1;
}

.pay-left img{
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);
}

/* RIGHT */
.pay-right{
    flex: 1;
}

.pay-right h2{
    font-size: 44px;
    color: white;
    margin-bottom: 18px;
    line-height: 1.2;
}

.desc{
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 15px;
}

/* FEATURE */
.feature{
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 25px;
}

.item{
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.item i{
    font-size: 20px;
    color: #38bdf8;
    margin-top: 5px;
}

.item h4{
    font-size: 20px;
    margin-bottom: 5px;
}

.item p{
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin-top: 10px;
}

/* RESPONSIVE */
@media(max-width: 900px){
    .pay-wrapper{
        flex-direction: column;
        text-align: left;
    }

    .pay-right h2{
        font-size: 32px;
    }
}
.how-section{
    padding: 0px 8%;
  
    color: #fff;
}

.how-header{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.tagline{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 10px;
}

.how-header h2{
    font-size: 36px;
    margin-bottom: 10px;
}

.how-header p{
    color: #94a3b8;
    font-size: 15px;
}

.how-grid{
    display: grid;
    grid-template-columns: repeat(4, 4fr);
    gap: 25px;
}

.how-card{
   background: #142d524f;

    padding: 25px;
    border-radius: 14px;
    position: relative;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.how-card:hover{
    transform: translateY(-6px);
    border-color: #38bdf8;
}

.how-card .icon{
    width: 50px;
    height: 50px;
    background: rgba(56,189,248,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
    color: #38bdf8;
    font-size: 18px;
}

.how-card h3{
    margin-bottom: 10px;
    font-size: 18px;
}

.how-card p{
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.how-card span{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 12px;
    color: #38bdf8;
    font-weight: 600;
}


.sb-highlight {
    padding: 80px 8%;
   
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
}


.sb-grid {
    display: flex;
  flex-direction: row;
    gap: 30px;
  
}

.sb-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.sb-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #38bdf8;
}

.sb-card i {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 20px;
}

.sb-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.sb-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}
.process-section {
    padding: 80px 8%;
   
}

.process-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.process-item {
    flex: 1;
    border-left: 1px solid #e2e8f0; /* Sirf ek subtle separator line */
    padding-left: 20px;
}

.step-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.process-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.process-item p {
    color: #94a3b8;
    line-height: 1.5;
}

/* Tablet & Mobile responsive */
@media (max-width: 768px) {
    .process-wrapper { flex-direction: column; gap: 40px; }
    .process-item { border-left: 2px solid #3b82f6; }
}
.aeps-hero{
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 40px;

}

.aeps-overlay{
    position:absolute;
    inset:0;

 

    z-index:1;
}

.aeps-content{
    position:relative;
    z-index:2;
    max-width:1000px;
    padding:0 20px;
}

.aeps-badges{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.aeps-badges span{
    padding:12px 22px;
    border-radius:50px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-size:15px;
}

.aeps-badges i{
    margin-right:8px;
    color:#60a5fa;
}

.aeps-content h1{
    font-size:72px;
    line-height:1.1;
    color:#fff;
    font-weight:800;
    margin-bottom:25px;
}

.aeps-content h1 span{
    color:#60a5fa;
}

.aeps-content p{
    color:#dbeafe;
    font-size:21px;
    line-height:1.8;
    max-width:850px;
    margin:auto;
}

.aeps-btns{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.aeps-btn-primary{
    padding:16px 35px;
    border-radius:12px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

.aeps-btn-secondary{
    padding:16px 35px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:768px){

    .aeps-content h1{
        font-size:42px;
    }

    .aeps-content p{
        font-size:17px;
    }
}




.aeps-process{
    padding:0px 8%;
    overflow:hidden;
}

.process-heading{
    text-align:center;
    margin-bottom:80px;
}

.process-heading span{
    color:#2563eb;
    font-weight:600;
    letter-spacing:2px;
    font-size:13px;
}

.process-heading h2{
    font-size:48px;
    margin:15px 0;

}

.process-heading p{
    color:#94a3b8;
}

.process-path{
    position:relative;
    max-width:1200px;
    margin:auto;
    height:320px;
}

.flow-line{
    position:absolute;
    width:100%;
    height:100%;
}

.flow-step{
    position:absolute;
    text-align:center;
}

.flow-step i{
    width:90px;
    height:90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(190px);
    background-image: linear-gradient(#10388cad, #06183d5c), linear-gradient(45deg, #050c1a96, #5d81bc, #050c1aba);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    color:#ffffff;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    margin:auto;
}

.flow-step h4{
    margin-top:15px;
   
}

.step1{left:0;top:110px;}
.step2{left:250px;top:10px;}
.step3{left:520px;top:120px;}
.step4{left:790px;top:10px;}
.step5{right:0;top:110px;}

@media(max-width:992px){

    .process-path{
        height:auto;
        display:flex;
        flex-direction:column;
        gap:40px;
    }

    .flow-line{
        display:none;
    }

    .flow-step{
        position:static;
    }

    .process-heading h2{
        font-size:36px;
    }
}
.process-path { position: relative; }

#animated-line {
  
    animation: drawLine 8s linear infinite;
}

@keyframes drawLine {
    0% {
        stroke-dashoffset: 2000;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -2000; /* Line ko bahar nikalne ke liye */
    }
}

.aeps-highlight{
    padding:0px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:start;
}

.highlight-left{
    position:sticky;
    top:120px;
}

.highlight-left span{
    color:#2563eb;
    font-weight:600;
    letter-spacing:2px;
    font-size:13px;
}

.highlight-left h2{
    font-size:46px;
    line-height:1.05;
    margin-top:20px;
}
.highlight-left p{
    margin-top:20px;
    color: #94a3b8;
    line-height: 2;
}
.highlight-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:30px;
    padding:14px 28px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.highlight-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(37,99,235,.25);
}

.highlight-btn i{
    transition:.3s;
}

.highlight-btn:hover i{
    transform:translateX(4px);
}
.highlight-item{
    display:flex;
    align-items:flex-start;
    gap:25px;
    padding:40px 0;
    border-bottom:1px solid #e5e7eb;
}
.highlight-icon{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:28px;

    box-shadow:0 15px 35px rgba(37,99,235,.18);

    transition:.35s;
}

.highlight-item:hover .highlight-icon{
    transform:translateY(-5px) rotate(-8deg);
}

.highlight-item h3{
    font-size:32px;
    margin-bottom:12px;
}

.highlight-item p{
    color:#94a3b8;
    line-height:1.8;
}

.highlight-item:nth-child(2){
    margin-left:60px;
}

.highlight-item:nth-child(3){
    margin-left:120px;
}
.highlight-item:nth-child(4){
    margin-left:180px;
}
.highlight-item h3{
    font-size:32px;
    margin-bottom:12px;
  
}

.highlight-item p{
    color:#94a3b8;
    line-height:1.8;
}
@media (max-width: 1024px){

    .aeps-highlight{
        gap:50px;
    }

    .highlight-left h2{
        font-size:38px;
    }

    .highlight-item h3{
        font-size:28px;
    }

    .highlight-item:nth-child(2),
    .highlight-item:nth-child(3),
    .highlight-item:nth-child(4){
        margin-left:0;
    }
}

@media (max-width: 768px){

    .aeps-highlight{
        grid-template-columns:1fr;
        gap:40px;
        padding:80px 6%;
    }

    .highlight-left{
        position:static;
    }

    .highlight-left h2{
        font-size:34px;
        line-height:1.2;
    }

    .highlight-left p{
        line-height:1.8;
    }

    .highlight-right{
        width:100%;
    }

    .highlight-item{
        padding:30px 0;
        margin-left:0 !important;
    }

  
    .highlight-item{
        gap:18px;
    }

    .highlight-icon{
        min-width:55px;
        width:55px;
        height:55px;
        font-size:22px;
        border-radius:16px;
    }

    .highlight-item h3{
        font-size:22px;
    }
    .highlight-item p{
        font-size:15px;
    }

    .highlight-btn{
        width:fit-content;
    }
}

@media (max-width: 480px){

    .aeps-highlight{
        padding:70px 5%;
    }

    .highlight-left h2{
        font-size:28px;
    }

    .highlight-left p{
        font-size:15px;
    }

    .highlight-item h3{
        font-size:22px;
    }

    .highlight-item p{
        font-size:14px;
        line-height:1.7;
    }

    .highlight-btn{
        padding:12px 22px;
        font-size:14px;
    }
}

.service-showcase{
    margin:100px auto;
    padding:40px;

    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;

    border-radius:30px;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
}



.showcase-content h2{
    color:#fff;
    font-size:34px;
    line-height:1.1;
    margin:18px 0 5px;
}

.showcase-content p{
    color:#94a3b8;
    line-height:1.9;
    margin-bottom: 10px !important;
}

.showcase-features{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.feature-item i{
    width:50px;
    height:50px;
    min-width:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:rgba(56,189,248,.1);
    color:#38bdf8;
}

.feature-item h4{
    color:#fff;
    margin-bottom:5px;
    font-size:18px;
}

.feature-item p{
    color:#94a3b8;
    font-size:15px;
}

.showcase-btn{
    margin-top:35px;
    display:inline-flex;
    align-items:center;
    gap:10px;

    text-decoration:none;
    color:#fff;

    padding:15px 24px;
    border-radius:14px;

    background:linear-gradient(
        135deg,
        #0ea5e9,
        #2563eb
    );
}

.showcase-image img{
    width:100%;
    display:block;
    border-radius:24px;
    object-fit:cover;
}

@media(max-width:991px){

    .service-showcase{
        grid-template-columns:1fr;
        gap:40px;
        padding:40px;
    }

    .showcase-content h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .service-showcase{
        padding:30px;
    }

    .showcase-content h2{
        font-size:30px;
    }

    .feature-item{
        gap:12px;
    }

    .feature-item i{
        width:42px;
        height:42px;
        min-width:42px;
    }
}
.why-choose {
    padding: 0px 8%;
    position: relative;
    overflow: hidden;
}

.why-heading {
    text-align: center;

    margin: 0 auto 80px;
}

.why-heading span {
    display: inline-block;
    color: #60a5fa;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
 
    text-transform: uppercase;
}

.why-heading h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
 

    /* background: linear-gradient(
        180deg,
        #ffffff 0%,
        #dbeafe 50%,
        #60a5fa 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.why-heading p {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.8;
}



.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 35px;
   
   
}



.why-card {
    position: relative;
    overflow: hidden;

    padding: 45px;
    border-radius: 28px;

    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);

    transition: all .5s ease;
}



.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    background-size: 300% 300%;
    animation: borderMove 6s linear infinite;

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

@keyframes borderMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.why-card:hover {
  transform: scale(1.05);
    border-color: #38bdf8;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}



.shine {
    position: absolute;
    top: 0;
    left: -180%;
    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transform: skewX(-25deg);
}

.why-card:hover .shine {
    animation: shineMove 1.2s ease;
}

@keyframes shineMove {
    100% {
        left: 180%;
    }
}


.why-card i {
    width: 85px;
    height: 85px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    font-size: 34px;
    color: #60a5fa;

    margin-bottom: 28px;

    background: linear-gradient(
        135deg,
        rgba(37,99,235,.25),
        rgba(59,130,246,.08)
    );

    border: 1px solid rgba(96,165,250,.25);

    box-shadow:
        0 10px 25px rgba(37,99,235,.15),
        inset 0 1px 1px rgba(255,255,255,.05);

    transition: .5s;
}

.why-card:hover i {
    transform:
        translateY(-5px)
       
        scale(1.08);

   
}



.why-card h3 {
    color: #ffffff;
    font-size: 1.7rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

.why-card p {
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.8;
}

.why-card::after {
    content: '';
    position: absolute;

    width: 220px;
    height: 220px;

    background: rgba(59,130,246,.08);

    border-radius: 50%;

    top: -110px;
    right: -110px;

    transition: .6s;
}

.why-card:hover::after {
    transform: scale(1.4);
}



@media (max-width: 1100px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-heading h2 {
        font-size: 3rem;
    }

    .why-card {
        padding: 35px;
    }
}


@media (max-width: 768px) {

    .why-choose {
        padding: 80px 6%;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-heading {
        margin-bottom: 50px;
    }

    .why-heading h2 {
        font-size: 2.2rem;
    }

    .why-heading p {
        font-size: 16px;
    }

    .why-card {
        padding: 30px;
        border-radius: 22px;
    }

    .why-card i {
        width: 70px;
        height: 70px;
        font-size: 28px;
        border-radius: 18px;
        margin-bottom: 22px;
    }

    .why-card h3 {
        font-size: 1.4rem;
    }

    .why-card p {
        font-size: .95rem;
        line-height: 1.7;
    }

    .why-card:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 480px) {

    .why-heading h2 {
        font-size: 1.9rem;
    }

    .why-heading p {
        font-size: 15px;
    }

    .why-card {
        padding: 25px;
    }

    .why-card h3 {
        font-size: 1.25rem;
    }
}
