:root {
    --surface-light: #f9fafb;
    --surface-dark: #0f172a;    
    --text-dark: #1f2937;
    --text-muted: #a4acbb;
    --text-primary: #2563eb;
    --input-bg: #ffffff;
    --border-light: #e5e7eb;
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --border-color: #d1d5db;
}

.dark {
    --surface-dark: #0f172a;
    --surface-light: #f9fafb;
    --text-light: #f8fafc;
    --text-muted: #a4acbb;
    --input-bg: #1e293b;
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --border-color: #334155;
}

/* Base styles for body */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--surface-light);
    color: var(--text-dark);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark mode */
body.dark {
    background-color: var(--surface-dark);
    color: var(--text-light);
}


.text-muted {
    color: var(--text-muted) !important;
}

body,
html {
    overflow-x: hidden;
    /* horizontal disable only */
    overflow-y: auto;
    /* allow vertical scroll */
}
html {
    scroll-behavior: smooth;
}

.bg-video {
    object-fit: cover;
}

.bg-overlay {
    backdrop-filter: blur(6px);
    background: rgba(0, 0, 0, 0.4);
}

.logo-carousel {
    overflow: hidden;
    white-space: nowrap;
}

.logo-track {
    display: inline-block;
    padding-left: 100%;
    animation: scrollLogos 20s linear infinite;
}

.logo-track img {
    height: 40px;
    margin: 0 2rem;
    filter: grayscale(100%) brightness(1.2);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.1);
    filter: brightness(1.5);
}

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

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

.gpt-badge {
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 10px #0ff;
    }

    50% {
        box-shadow: 0 0 20px #0ff;
    }
}


/* ✅ Services Section Background */
.services-section {
    background-color: #0f172a;
    transition: background-color 0.4s ease;
    padding: 60px 0;
}

/* ✅ Individual Service Box */
.service-box {
    background-color: #1e293b;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ✅ Hover Effect - Glow + Scale */
.service-box:hover {
    transform: translateY(-6px) scale(1.03);
    background: linear-gradient(135deg, #1e293b, #0f172a);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

/* ✅ Icon & Text Glow on Hover */
.service-box:hover i,
.service-box:hover h5 {
    color: #38bdf8 !important;
    /* sky-400 */
}

/* ✅ Glowing Border Animation */
.service-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, #38bdf8, #6366f1, #f472b6, #38bdf8);
    animation: rotateBorder 6s linear infinite;
    z-index: 0;
    opacity: 0.07;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 0.25;
}

/* ✅ Animation for border rotation */
@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}





#scrollToTop {
    z-index: 9999;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.dark #scrollToTop {
    background-color: #1e293b;
    color: #f1f5f9;
}





    /* ✅ features Section Background */
        .features-section {
            background-color: #0f172a;
            color: #f1f5f9;
            padding-bottom: 0;
            margin-bottom: 0;
        }
    


    .text-gradient {
        background: linear-gradient(to right, #38bdf8, #6366f1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .feature-box {
        background: #1e293b;
        transition: all 0.4s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .feature-box:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 24px rgba(0, 255, 255, 0.12);
        border-color: #38bdf8;
    }

    .hover-glow:hover .icon-box {
        background: linear-gradient(to bottom right, #38bdf8, #6366f1);
        box-shadow: 0 0 15px rgba(56, 189, 248, 0.6);
    }

    .icon-box {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: #334155;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }



/* ✅ achievements Section Background */

        .achievements-section {
            background: linear-gradient(to right, #0f172a, #1e293b);
            color: #f1f5f9;
            transition: background 0.5s ease;
        }
    
        .counter-box {
            background: #1e293b;
            border-radius: 16px;
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
    
        .counter-box:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 255, 255, 0.15);
        }






/* ✅ use-cases Section Background */

           /* ✅ Use Cases Section Background */
           .use-cases-section {
               background: linear-gradient(to right, #0f172a, #1e293b);
               color: #f1f5f9;
               transition: background 0.5s ease;
           }


        /* 🌊 Wrapper for wave */
        .wave-usecase-transition-wrapper {
            position: relative;
            height: 150px;
            overflow: hidden;
            line-height: 0;
            margin-bottom: -1px;
            /* ⛳ Fix thin line */
            box-shadow: inset 0px -10px 20px rgba(0, 0, 0, 0.25);
            /* Optional shadow */
        }
    
        /* Background fill matching use-cases */
        .usecase-bg-fill {
            background: linear-gradient(to right, #0f172a, #1e293b);
            /* match use-cases */
            height: 100%;
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
        }
    
        /* SVG inside wave */
        .wave-usecase-transition-wrapper svg {
            position: relative;
            z-index: 1;
            display: block;
            width: 100%;
            height: 100%;
        }
    
        /* Optional soft bottom line */
        .wave-usecase-transition-wrapper::after {
            content: "";
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.05);
        }


        
    
        /* ✅ Fix trust-section margin */
        .trust-section {
            background-color: #0f172a;
            color: #f1f5f9;
            margin-top: 0 !important;
            padding-top: 0 !important;
 
 
        }
        .hover-scale {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
    
        .hover-scale:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1);
        }


        



        /* ✅ price-card Section Background */
        .price-card {
            background: linear-gradient(to right, #0f172a, #1e293b);
            color: #f1f5f9;
            transition: background 0.5s ease;
        }
    
        .price-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
        }
    
        .hover-glow:hover {
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 0 40px rgba(56, 189, 248, 0.15);
        }
    
        .active-plan {
            border: 2px solid #22c55e;
            background: linear-gradient(135deg, #1e293b, #0f172a);
        }


        
        
          /* ✅ Trust Section Background */
          .trust-section {
              background-color: #0f172a;
              color: #f1f5f9;
              transition: background-color 0.4s ease;
          }
    
           .badge-card {
               padding: 1rem;
               background-color: #1e293b;
               border-radius: 12px;
               border: 1px solid rgba(255, 255, 255, 0.05);
               transition: transform 0.3s ease, box-shadow 0.3s ease;
           }
    
        .badge-card:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow: 0 10px 20px rgba(56, 189, 248, 0.2);
        }





        /* ✅ partners Section Background */
                 .faq-section {
                     background: linear-gradient(to right, #0f172a, #1e293b);
                     color: #f1f5f9;
                     transition: background 0.5s ease;
                 }
    
        .partner-logos-section {
                 background: radial-gradient(circle at top left, #0f172a, #1e293b);
                            color: #f1f5f9;
        }
    
        .partner-logos-section .section-title {
            font-size: 1.75rem;
            color: #0f172a;
        }
    
        .dark .partner-logos-section .section-title {
            color: #e2e8f0;
        }
    
        .partner-logos-section .section-subtitle {
            font-size: 1rem;
            color: #64748b;
        }
    
        .partner-logo-box {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border-radius: 12px;
            padding: 15px;
            transition: all 0.4s ease;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    
        .partner-logo-box:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }
    
        .partner-logo-box img {
            max-height: 40px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }
    
        .partner-logo-box:hover img {
            filter: grayscale(0%) drop-shadow(0 0 5px rgba(59, 130, 246, 0.2));
        }
    
        @media (max-width: 768px) {
            .partner-logo-box {
                padding: 10px;
            }
    
            .partner-logo-box img {
                max-height: 30px;
            }
        }


        /* ✅ FAQ Section Background */
       .faq-section {
        background: linear-gradient(to right, #0f172a, #1e293b);
        color: #f1f5f9;
        transition: background 0.5s ease;
    }

        .accordion-button {
            transition: background-color 0.3s ease, color 0.3s ease;
        }
    
        .accordion-button:not(.collapsed) {
            background-color: #1e293b;
            color: #38bdf8;
        }
    
        .accordion-body {
            background-color: #0f172a;
            color: #f1f5f9;
        }
    
        .accordion-item {
            border: none;
            overflow: hidden;
        }

        .custom-divider {
            height: 100px;
            overflow: hidden;
        }


      
        

        /* ✅ CTA  + Hero/Baner Section Background */
        body {
            font-family: 'Segoe UI', sans-serif;
            background-color: #0d1117;
        }
    

        .gpt-badge {
            background-color: #00e1ff !important;
            color: #000 !important;
            font-weight: 500;
        }
    
        .btn-info {
            background-color: #00cfff;
            border: none;
            color: #000;
        }
    
        .btn-info:hover {
            background-color: #00b8e6;
        }

    