﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #f8fafc;
    color: #111827;
    line-height: 1.6;
}

/* ================= NAVBAR (Premium Glass) ================= */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 16px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    background: linear-gradient( to bottom, rgba(255,255,255,0.75), rgba(255,255,255,0.6) );
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.35s ease;
    z-index: 1000;
}

    /* Scroll State */
    .navbar.scrolled {
        background: rgba(15,23,42,0.92);
        backdrop-filter: blur(18px) saturate(180%);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    }

        .navbar.scrolled .nav-links > a ,
        .navbar.scrolled .brand-name {
            color: #ffffff;
        }
        /* Make user icon white when navbar is dark */
        .navbar.scrolled .user-btn {
            color: #ffffff;
        }
            .navbar.scrolled .user-btn svg {
                fill: #ffffff;
            }
           
/* BRAND */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 32px;
}

.brand-name {
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -0.4px;
    color: #111827;
    transition: 0.3s ease;
}



/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-links a {
        text-decoration: none;
        font-weight: 500;
        color: #111827;
        transition: 0.3s ease;
        position: relative;
    }

        /* Elegant underline animation */
        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0%;
            height: 2px;
            background: #2e5bff;
            transition: 0.3s ease;
        }

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

        .nav-links a:hover {
            color: #2e5bff;
        }

/* USER ICON BUTTON */

.user-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 50%;
    transition: 0.3s ease;
}

    .user-btn:hover {
        background: rgba(0,0,0,0.05);
    }

.navbar.scrolled .user-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* DROPDOWN */

/* DROPDOWN CONTAINER */
.login-dropdown {
    position: relative;
    z-index: 2000;
}

/* DROPDOWN MENU */
.dropdown-menu {
    position: absolute;
    right: 0;
    top: 120%;
    min-width: 190px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 3000;
}

    .dropdown-menu a {
        color: #111827;
    }


/* SHOW ON HOVER */
.login-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DROPDOWN LINKS */
.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    transition: background 0.2s ease;
}

    .dropdown-menu a:hover {
        background: #f3f4f6;
    }


/* ================= RESPONSIVE ================= */

/* ===============================
   DEFAULT (DESKTOP FIRST)
================================= */

/* Hide mobile header on desktop */
.mobile-header {
    display: none;
}

/* Keep your original desktop navbar as is */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

@media (max-width: 768px) {

    /* Hide desktop navbar on mobile */
    .navbar {
        display: none;
    }

    /* Show mobile header */
    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: #ffffff;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        z-index: 1000;
    }

    /* Force exact center */
    .brand-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 700;
        font-size: 18px;
    }

    /* Prevent content hiding behind fixed header */
    body {
        padding-top: 60px;
    }

    .mobile-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 75%;
        height: 100%;
        background: #ffffff;
        padding: 24px;
        transition: 0.3s ease;
        box-shadow: 4px 0 20px rgba(0,0,0,0.08);
        z-index: 999;
    }

        .mobile-menu a {
            display: block;
            padding: 14px 0;
            font-size: 16px;
            color: #111827;
            text-decoration: none;
            border-bottom: 1px solid #f1f1f1;
        }

        .mobile-menu.active {
            left: 0;
        }
}



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

.hero {
    position: relative;
    min-height: 55vh; /* reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 30px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    margin-top: 60px;
}

    /* Headline */
    .hero h1 {
        font-size: 48px; /* reduced from 60 */
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 12px;
    }

        .hero h1 span {
            color: #2e5bff;
        }

    /* Subtext */
    .hero p {
        font-size: 20px; /* reduced */
        max-width: 600px;
        margin: 0 auto 20px auto;
        opacity: 0.85;
    }

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center; /* center buttons */
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Primary button */
.btn-primary {
    background: #2e5bff;
    color: #fff;
    padding: 11px 18px; /* reduced padding */
    border-radius: 10px;
    font-size: 15px; /* proportional */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(46,91,255,0.35);
    }

/* Secondary button */
.btn-outline {
    border: 1.8px solid #fff;
    color: #fff;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

    @media (max-width: 768px) {

        /* HERO FIX */
        .hero {
            padding: 100px 12px 70px;
            min-height: 35vh;
            margin-top: 0;
        }

            .hero h1 {
                font-size: clamp(24px, 5vw, 48px);
                line-height: 1.25;
                padding: 0px 14px;
            }

            .hero p {
                font-size: clamp(12px, 2.4vw, 20px);
                margin-top: 12px;
                margin-bottom: 25px;
                padding: 0px 12px;
            }

        .hero-buttons {
            flex-direction: row;
            gap: 10px;
            margin-top: 18px;
        }

        .hero {
            margin-top: 0;
        }

        .btn-primary {
            width: 100px;
            padding: 12px 18px;
            font-size: 12px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 0px;
        }
        .btn-outline {
            width: 120px;
            padding: 12px 18px;
            font-size: 12px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 0px;
        }
    }




/* SECTIONS */
section {
    padding: 80px 10%;
    text-align: center;
}

    section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

/* PROBLEM GRID */
.reach-section {
    position: relative;
}

    .reach-section::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        height: 30px;
        background: linear-gradient(to bottom, rgba(15,23,42,1), rgba(248,250,252,1));
    }


.reach-section {
    padding: 80px 8%;
    background: #f8fafc;
    text-align: center;
    padding: 20px 8% 60px 8%;
    margin-top: -30px; /* gently lifts it upward */
}

    .reach-section h2 {
        font-size: 30px;
        font-weight: 700;
        margin-top: 40px;
        margin-bottom: 40px;
    }

        .reach-section h2 span {
            color: #2e5bff;
        }


/* GRID */
.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: start; /* 👈 THIS FIXES IT */
}

/* CARD */
.reach-card {
    position: relative;
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid transparent;
    height: auto;
}

    /* Subtle gradient border */
    .reach-card:hover {
        border: 1px solid transparent;
        background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #2e5bff, #7c3aed) border-box;
        transform: translateY(-5px);
    }

/* Top row */
.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Icon */
.reach-card .icon {
    font-size: 38px;
}

/* Title */
.reach-card h3 {
    flex: 1;
    margin-left: 12px;
    font-size: 17px;
    font-weight: 600;
    text-align: left;
}

/* Arrow */
.arrow {
    font-size: 22px;
    transition: 0.3s;
    color: #9ca3af;
}

/* Description */
.reach-card p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease, margin-top 0.3s ease;
    font-size: 14px;
    text-align: left;
}

/* Active (click expand) */
.reach-card.active p {
    max-height: 200px; /* enough for text */
    opacity: 0.85;
    margin-top: 12px;
}

.reach-card.active .arrow {
    transform: rotate(90deg);
    color: #2e5bff;
}

/* Ripple */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(46,91,255,0.3);
    transform: scale(0);
    animation: none;
}

.reach-card:active .ripple {
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
.reach-card.active {
    background: #f0f4ff;
    box-shadow: 0 10px 30px rgba(46,91,255,0.08);
}


.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }


    @media (max-width:768px) {

        /* GRID */
        .reach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 14px;
            align-items: start; /* 👈 THIS FIXES IT */
        }

        .reach-card {
            position: relative;
            background: #ffffff;
            border-radius: 14px;
            padding: 5px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid transparent;
            height: auto;
          
            
        }

        card-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* Icon */
        .reach-card .icon {
            font-size: 25px;
        }

        /* Title */
        .reach-card h3 {
            flex: 1;
            margin-left: 12px;
            font-size: 12px;
            font-weight: 600;
            text-align: left;
            line-height: 1.2
        }
        .reach-section {
            padding: 80px 8%;
            background: #f8fafc;
            text-align: center;
            padding: 20px 8% 60px 8%;
            margin-top: -30px; /* gently lifts it upward */
            margin-bottom: -12px
        }

            .reach-section h2 {
                font-size: 20px;
                font-weight: 700;
                margin-top: 40px;
                margin-bottom: 15px;
            }

                .reach-section h2 span {
                    color: #2e5bff;
                }

    }


/* ----------------QR SAFETY NOTICE------------------------------ */

/* Default: Desktop visible, Mobile hidden */
.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}


.qr-notice::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), transparent);
    margin-top: 0px;
}


.qr-notice {
    padding: 16px 8%;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    z-index: 5;
}


.notice-container {
    max-width: 800px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: #fff;
    font-size: 20px;
    opacity: 0.9;
}

.notice-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}
.notice-icon {
    font-size: 80px;
    filter: drop-shadow(0 0 12px rgba(96,165,250,0.35));
}

.notice-text {
    max-width: 420px;
}

    .notice-text h3 {
        font-size: 21px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 4px;
    }

    .notice-text span {
        color: #60a5fa;
    }

    .notice-text p {
        font-size: 15px;
        color: rgba(255,255,255,0.85);
    }

    .notice-text.hindi p {
        text-align: left;
    }

    .notice-text.hindi h3 {
        font-weight: 500;
        opacity: 0.95;
    }

    .notice-text p {
        font-size: 14px;
        opacity: 0.75;
    }



/* Mobile overrides */
@media (max-width: 768px) {
    .notice-wrapper {
        flex-direction: row; /* keep icon + text side by side */
        align-items: center;
        justify-content: flex-start;
        gap: 8px; /* tighter spacing */
        text-align: left;
        padding: -20px
    }


    .notice-icon {
        font-size: 32px;
        margin-right: 8px;
    }

    .desktop-text {
        display: none;
    }
    /* hide desktop version */
    .mobile-text {
        display: block;
        max-width: 100%;
    }
    /* show mobile Hinglish version */

    .notice-text h3 {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .notice-text p {
        font-size: 14px;
        line-height: 1.3;
    }
    
}

        /*Use Cases*/
        /* =========================================
   BUILT FOR REAL WORLD ASSETS SECTION
========================================= */

        .assets-section {
            padding: 35px 8%;
            background: linear-gradient(to bottom, #f8fafc, #eef2f7);
        }
        /* MAIN LAYOUT */
        .assets-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 70px;
        }
        /* =========================================
   LEFT IMAGE
========================================= */

        .assets-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .assets-image img {
                width: 100%;
                max-width: 720px;
                height: auto;
                animation: floatImage 4s ease-in-out infinite;
            }
        /* Floating animation */
        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-12px);
            }
        }
        /* =========================================
   RIGHT CONTENT HEADER
========================================= */


        .assets-content {
            position: relative;
        }

        .assets-header {
            margin-bottom: 35px;
        }

            .assets-header h2 {
                font-size: 36px;
                font-weight: 700;
                position: relative;
                display: inline-block;
                margin-bottom: 8px; /* was 15px */
                line-height: 1.2;
            }
                /* Proper centered blue underline */
                .assets-header h2::after {
                    content: "";
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: -14px;
                    width: 180px;
                    height: 4px;
                    background: #2e5bff;
                    border-radius: 4px;
                }

            .assets-header p {
                margin-top: 24px;
                color: #6b7280;
                font-size: 15px;
                margin-top: 10;
                margin-bottom: 24px;
            }
        /* =========================================
   CIRCULAR GRID
========================================= */

        .assets-grid {
            display: grid;
            grid-template-columns: repeat(3, 160px);
            gap: 40px;
            justify-content: start;
        }
        /* =========================================
   CIRCLE CARD
========================================= */

        .asset-circle {
            width: 160px;
            height: 160px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 45px;
            cursor: pointer;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid #e5e7eb;
            text-align: center;
            position: relative;
            z-index: 1;
        }
            /* Glowing halo */
            .asset-circle::before {
                content: "";
                position: absolute;
                width: 210px;
                height: 210px;
                background: radial-gradient(circle, rgba(46,91,255,0.2), transparent 60%);
                border-radius: 50%;
                z-index: -1;
                opacity: 0;
                transition: 0.4s ease;
            }
            /* Hover animation */
            .asset-circle:hover {
                transform: rotate(6deg) scale(1.08);
                border-color: #2e5bff;
                box-shadow: 0 20px 40px rgba(46,91,255,0.15);
                z-index: 100; /* bring hovered one to front */
            }

                .asset-circle:hover::before {
                    opacity: 1;
                }
            /* Label inside circle */
            .asset-circle span {
                font-size: 14px;
                font-weight: 600;
                margin-top: 10px;
                color: #111827;
            }
            /* =========================================
   TOOLTIP
========================================= */

            .asset-circle::after {
                content: attr(data-text);
                position: absolute;
                bottom: 115%;
                left: 50%;
                transform: translateX(-50%);
                background: #111827;
                color: white;
                font-size: 13px;
                padding: 8px 12px;
                border-radius: 8px;
                white-space: nowrap;
                opacity: 0;
                pointer-events: none;
                transition: 0.3s ease;
                z-index: 50; /* HIGHER */
            }

            .asset-circle:hover::after {
                opacity: 1;
            }

@media (max-width: 768px) {
    .assets-section {
        padding: 24px 6%; /* reduce padding */
    }

    .assets-wrapper {
        grid-template-columns: 1fr; /* stack image + content */
        gap: 20px; /* smaller gap */
        text-align: center;
       
    }

    .assets-header h2 {
        font-size: 24px; /* smaller heading */
        line-height: 1.3;
    }

        .assets-header h2::after {
            width: 100px; /* shorter underline */
            bottom: -8px;
        }

    .assets-header p {
        font-size: 12px;
        margin-bottom: -10px;
        margin-top: 10px
    }

    .assets-grid {
        grid-template-columns: repeat(3, 1fr); /* smaller grid */
        gap: 15px 30px;
        justify-content: center;
        justify-items: center;
       
    }

    .asset-circle {
        width: 90px;
        height: 90px;
        font-size: 25px; /* smaller icon size */
        position: relative;
        z-index: 5;
    }
        .asset-circle:hover {
            transform: rotate(6deg) scale(1.08);
            border-color: #2e5bff;
            box-shadow: 0 20px 40px rgba(46,91,255,0.15);
            z-index: 100; /* bring hovered one to front */
        }

        .asset-circle::before {
            width: 120px;
            height: 120px;
        }

        .asset-circle span {
            font-size: 8px;
            margin-top: 0px;
        }

        .asset-circle::after {
            content: attr(data-text);
            position: absolute;
            bottom: 120%;
            left: 50%;
            transform: translateX(-50%);
            background: #111827;
            color: white;
            font-size: 10px;
            padding: 8px 10px;
            border-radius: 8px;
            /* FIX */
            white-space: normal;
            max-width: 280px;
            text-align: center;
            line-height: 1.3;
            opacity: 0;
            pointer-events: none;
            transition: 0.25s ease;
            z-index: 9999;
            width: 80px;
        }

        .asset-circle:hover::after {
            opacity: 1;
        }


            .assets-section,
            .assets-wrapper,
            .assets-grid {
                overflow: visible !important;
            }
        }



        /* ================= HOW IT WORKS ================= */

        .how-section {
            padding: 40px 8%;
            background: #ffffff;
            text-align: center;
            overflow: hidden;
        }
            /* Heading underline animation */
            .how-section h2::after {
                content: "";
                display: block;
                width: 0;
                height: 4px;
                background: #2e5bff;
                margin: 14px auto 0;
                border-radius: 4px;
                transition: width 0.8s ease;
            }

            .how-section.active h2::after {
                width: 80px;
            }
        /* Timeline container */
        .how-steps {
            position: relative;
            display: flex;
            justify-content: space-between;
            margin-top: 70px;
        }
            /* Blue line animation */
            .how-steps::before {
                content: "";
                position: absolute;
                top: 30px;
                left: 0;
                height: 3px;
                width: 0;
                background: linear-gradient(to right, #2e5bff, #7c3aed);
                transition: width 1.2s ease;
            }

        .how-section.active .how-steps::before {
            width: 100%;
        }
        /* Each step */
        .how-step {
            width: 30%;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.0s ease;
        }

        .how-section.active .how-step {
            opacity: 1;
            transform: translateY(0);
        }
            /* Stagger effect */
            .how-section.active .how-step:nth-child(1) {
                transition-delay: 0.3s;
            }

            .how-section.active .how-step:nth-child(2) {
                transition-delay: 0.6s;
            }

            .how-section.active .how-step:nth-child(3) {
                transition-delay: 0.9s;
            }
        /* Circle */
        .step-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid #2e5bff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 20px;
            background: white;
            transition: all 0.3s ease;
            animation: pulseGlow 2.5s infinite ease-in-out;
        }

        @keyframes pulseGlow {
            0% {
                box-shadow: 0 0 0 rgba(46,91,255,0);
            }

            50% {
                box-shadow: 0 0 18px rgba(46,91,255,0.35);
            }

            100% {
                box-shadow: 0 0 0 rgba(46,91,255,0);
            }
        }
        /* Glow on hover */
        .step-circle:hover {
            box-shadow: 0 0 20px rgba(46,91,255,0.5);
            transform: scale(1.1);
        }

@media (max-width: 768px) {
    .how-section {
        padding: 24px 5%; /* slimmer padding */
    }

        .how-section h2 {
            font-size: 20px;
            line-height: 1.3;
            margin-bottom: 6px;
        }

            .how-section h2::after {
                height: 3px;
                margin: 10px auto 0;
                width: 60px; /* shorter underline */
            }

    /* Keep horizontal layout but tighter */
    .how-steps {
        margin-top: 40px; /* reduce spacing above steps */
        gap: 12px; /* add gap control between steps */
    }

        .how-steps::before {
            top: 20px; /* move line closer to circles */
            height: 2px; /* thinner line */
        }

    .how-step {
        width: 32%; /* slightly wider so text fits better */
        margin: 0; /* remove extra margins */
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .how-step p {
        font-size: 13px;
        line-height: 1.4;
        margin: 0 auto;
        max-width: 90%; /* keep text contained */
    }
}


        /* ------------------PRICING ----------------------*/
        .pricing-section {
            padding: 50px 0; /* smaller height */
            background: #f3f6ff;
            text-align: center;
        }

        .pricing-container {
            width: 85%;
            max-width: 1200px;
            margin: auto;
        }

            .pricing-container h2 {
                font-size: 36px; /* smaller heading */
                font-weight: 700;
                color: #111827;
                margin-bottom: 10px;
            }

            .pricing-container p {
                font-size: 16px;
                color: #6b7280;
                margin-bottom: 30px;
            }

        .pricing-cards {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
            align-items: stretch; /* equal height */
        }

        .pricing-card {
            background: #fff;
            padding: 30px; /* tighter padding */
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            flex: 1;
            min-width: 280px;
            max-width: 350px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* button stays at bottom */
        }

            .pricing-card h3 {
                font-size: 22px;
                font-weight: 700;
                color: #111827;
                margin-bottom: 10px;
            }

            .pricing-card .price {
                font-size: 26px;
                font-weight: 700;
                color: #2e5bff;
                margin-bottom: 20px;
            }

                .pricing-card .price span {
                    font-size: 14px;
                    color: #6b7280;
                }

            .pricing-card ul {
                list-style: none;
                padding: 0;
                margin-bottom: 20px;
            }

                .pricing-card ul li {
                    font-size: 15px;
                    color: #4b5563;
                    margin-bottom: 8px;
                }

        .addons-note {
            font-size: 13px;
            color: #374151;
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

            .addons-note span {
                background: #f3f4f6;
                padding: 4px 8px;
                border-radius: 6px;
                font-size: 13px;
            }

        .pricing-btn {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 8px;
            background: #2e5bff;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: 0.3s;
            margin-top: 20px;
        }

            .pricing-btn:hover {
                background: #1d3fcc;
            }

        .pricing-card.popular {
            border: 2px solid #2e5bff;
            transform: scale(1.05);
        }
        /* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 30px 0; /* reduce vertical padding */
    }
    .pricing-container {
        width: 80%; /* narrower container for mobile */
        text-align: center;
    }

    .pricing-container h2 {
        font-size: 28px; /* smaller heading */
        margin-bottom: 6px; /* tighter spacing */
    }

    .pricing-container p {
        font-size: 13px; /* smaller subheading */
        margin-bottom: 18px; /* less gap before cards */
    }
   
        .pricing-cards {
            flex-direction: column; /* stack vertically */
            align-items: center; /* center cards under heading */
            gap: 20px; /* spacing between cards */
        }

        .pricing-card {
            width: 92%; /* almost full width of screen */
            max-width: 360px; /* prevent it from looking oversized */
            margin: 0 auto; /* center horizontally */
            padding: 20px;
            border-radius: 14px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            text-align: left;
        }

            .pricing-card h3 {
                font-size: 18px;
                margin-bottom: 6px;
            }

            .pricing-card .price {
                font-size: 22px;
                margin-bottom: 12px;
            }

            .pricing-card ul li {
                font-size: 13px;
                margin-bottom: 6px;
            }

        .pricing-btn {
            font-size: 14px;
            padding: 10px;
            margin-top: 14px;
        }
    
    .addons-note {
        font-size: 11px;
        gap: 6px;
    }

        .addons-note span {
            font-size: 11px;
            padding: 3px 6px;
        }

    .pricing-btn {
        font-size: 14px;
        padding: 10px;
        margin-top: 14px;
    }
}

/* --------------CTA --------------*/
        .section-cta {
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            color: #ffffff;
            padding: 40px 0;
        }

.cta-box {
    background: #ffffff; /* white box */
    color: #111827; /* dark text inside */
    border-radius: 16px;
    padding: 30px;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}


        .cta-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .cta-text h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

.cta-text p {
    font-size: 16px;
    opacity: 0.9;
    color: #ffffff;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}




/* Base */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Outline (white style for blue background) */
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

    .btn-outline:hover {
        background: #ffffff;
        color: #1e3a8a;
    }

/* Solid button */
.btn-primary {
    background: #ffffff;
    color: #1e3a8a;
    border: none;
}

    .btn-primary:hover {
        background: #f3f4f6;
    }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {

    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-actions {
        flex-direction: row; /* side by side */
        justify-content: center;
        width: 100%;
        gap: 14px;
    }

    .btn {
        width: auto; /* important */
        padding: 5px 18px;
        font-size: 14px;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .cta-text p {
        font-size: 15px;
        max-width: 100%;
    }
}

       
        /* FOOTER */
        .footer {
            background: #0f172a;
            color: #ffffff;
            padding: 40px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
        }

        .footer-col h3,
        .footer-col h4 {
            margin-bottom: 10px;
        }

        .footer-col p {
            opacity: 0.8;
            line-height: 1.6;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

            .footer-col ul li {
                margin-bottom: 10px;
                opacity: 0.85;
            }

                .footer-col ul li a {
                    color: #ffffff;
                    text-decoration: none;
                }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 10px;
            padding-top: 20px;
            text-align: center;
            opacity: 0.7;
        }

@media (max-width: 768px) {

    .footer {
        padding: 30px 20px;
    }


        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, auto);
            gap: 30px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .footer-col {
            min-width: 180px;
        }
    }

    .footer-col h3,
    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer-col p,
    .footer-col ul li {
        font-size: 14px;
        line-height: 1.5;
    }

    .footer-bottom {
        font-size: 13px;
        padding-top: 15px;
        margin-top: 15px;
    }


    .footer-col.legal ul {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 16px;
    }

        .footer-col.legal ul li {
            width: 45%;
        }


}

        /* -------------Testimonial Section-------------- */

        .testimonials-section {
            padding: 30px 0; /* smaller height */
            background: #ffffff;
        }

        .testimonials-container {
            width: 85%;
            max-width: 1200px;
            margin: auto;
            display: flex;
            align-items: flex-start; /* align to top */
            gap: 60px;
        }

        .testimonials-left {
            flex: 1;
            text-align: left; /* left aligned text */
        }

            .testimonials-left h2 {
                font-size: 36px; /* smaller height */
                font-weight: 700;
                color: #111827;
                line-height: 1.2;
                margin-bottom: 15px;
            }

            .testimonials-left p {
                font-size: 16px;
                color: #6b7280;
                margin-bottom: 20px;
            }
        /* RIGHT SIDE */
        .testimonials-right {
            flex: 1.5;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .testimonial-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            min-width: 400px;
            background: transparent; /* merged with background */
            padding: 20px;
            border-radius: 12px;
            box-shadow: none; /* no strip look */
            border: 1px solid #e5e7eb; /* subtle border for separation */
        }

            .testimonial-card h4 {
                font-size: 18px;
                margin-bottom: 10px;
                color: #111827;
            }

            .testimonial-card p {
                font-size: 15px;
                color: #4b5563;
                line-height: 1.5;
            }

        .testimonial-arrows {
            display: flex;
            gap: 10px;
            justify-content: flex-end; /* arrows on right side */
        }

            .testimonial-arrows button {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                border: none;
                background: #2e5bff;
                color: #fff;
                font-size: 16px;
                cursor: pointer;
                transition: 0.3s;
            }

                .testimonial-arrows button:hover {
                    transform: scale(1.1);
                }
        /* Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 24px 0; /* tighter vertical spacing */
    }

    .testimonials-container {
        flex-direction: column; /* stack left + right */
        align-items: center; /* center everything */
        gap: 24px; /* reduce gap */
        width: 92%; /* narrower container */
        margin: 0 auto;
        text-align: center; /* center heading + intro text */
    }

    .testimonials-left h2 {
        font-size: 25px;
        margin-bottom: 8px;
        
    }

    .testimonials-left p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .testimonials-right {
        width: 100%;
        gap: 16px;
    }

    .testimonial-card {
        width: 100%; /* almost full width */
       
        min-width: 100%;
        margin: 0 auto; /* center under heading */
        padding: 10px;
        border-radius: 10px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        text-align: left;
    }

        .testimonial-card h4 {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .testimonial-card p {
            font-size: 13px;
            line-height: 1.4;
        }

    .testimonial-arrows {
        justify-content: center; /* arrows centered on mobile */
        gap: 12px;
    }

        .testimonial-arrows button {
            width: 34px;
            height: 34px;
            font-size: 14px;
        }
}
        /* ================= LEGAL PAGES ================= */

        body {
            background: #f8fafc;
        }

        .legal::before {
            content: "";
            display: block;
            height: 4px;
            width: 60px;
            background: linear-gradient(90deg, #2e5bff, #7c3aed);
            margin-bottom: 30px;
            border-radius: 4px;
        }


        .legal {
            max-width: 950px;
            margin: auto;
            background: #ffffff;
            padding: 60px;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.06);
            line-height: 1.7;
        }

            .legal h1 {
                font-size: 34px;
                margin-bottom: 10px;
            }

            .legal h2 {
                margin-top: 35px;
                font-size: 22px;
            }

            .legal p {
                margin-bottom: 14px;
                color: #374151;
            }

            .legal ul {
                margin: 10px 0 20px 20px;
            }

            .legal li {
                margin-bottom: 8px;
            }

            .legal a {
                color: #2e5bff;
                text-decoration: none;
                font-weight: 600;
            }

                .legal a:hover {
                    text-decoration: underline;
                }

        .back-home {
            margin: 30px 0;
            display: inline-block;
            color: #2e5bff;
            text-decoration: none;
            font-weight: 600;
        }


        /*Contact Sales*/
        /* Overlay */
        .sales-modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.55);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

            .sales-modal.active {
                display: flex;
            }
        /* Modal box */
        .sales-container {
            background: #ffffff;
            width: 92%;
            max-width: 520px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0,0,0,0.25);
            animation: fadeIn 0.25s ease;
        }
        /* Header strip */
        .sales-top {
            background: linear-gradient(135deg, #1e3a8a, #2e5bff);
            color: white;
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .sales-top h2 {
                margin: 0;
                font-size: 22px;
                font-weight: 600;
            }

        .close-btn {
            font-size: 26px;
            cursor: pointer;
        }
        /* Form */
        .sales-form {
            padding: 25px;
            display: flex;
            flex-direction: column;
        }

            .sales-form input,
            .sales-form textarea {
                margin-bottom: 14px;
                padding: 12px 14px;
                border-radius: 10px;
                border: 1px solid #ddd;
                font-size: 14px;
                transition: all 0.2s ease;
            }

            .sales-form textarea {
                resize: none;
                height: 90px;
            }

                .sales-form input:focus,
                .sales-form textarea:focus {
                    outline: none;
                    border-color: #2e5bff;
                    box-shadow: 0 0 0 3px rgba(46,91,255,0.08);
                }
        /* Buttons row */
        .sales-buttons {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        /* Submit */
        .btn-submit {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            border: none;
            background: #2e5bff;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: 0.2s ease;
        }

            .btn-submit:hover {
                background: #1e3a8a;
            }
        /* WhatsApp */
        .btn-whatsapp {
            flex: 1;
            padding: 12px;
            border-radius: 10px;
            background: #25D366;
            color: white;
            text-align: center;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .wa-icon {
            width: 18px;
            height: 18px;
        }


        .btn-whatsapp:hover {
            opacity: 0.9;
        }
        /* Animation */
        @keyframes fadeIn {
            from {
                transform: translateY(-10px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }


        @media (max-width: 768px) {

            html, body {
                margin: 0;
                padding: 0;
                overflow-x: hidden;
            }

            .container {
                width: 100%;
                padding: 0 18px;
            }
        }

        /*-----QR Scanner ----------*/
.mobile-bottom-bar {
    display: none;
}

.scanner-body {
    margin: 0;
    background: black;
    color: white;
    font-family: system-ui;
}

.scanner-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.6);
    z-index: 10;
}

.scanner-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scan-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    border: 2px solid #3b5bff;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {

    body {
        padding-bottom: 75px;
    }

    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
        z-index: 999;
    }

    .bottom-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 20px;
        color: #333;
        font-weight: bold;
    }

    .center-scan {
        position: relative;
        top: -20px;
    }

    .scan-circle {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #3b5bff;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 25px rgba(59, 91, 255, 0.4);
    }

    .scan-icon svg {
        width: 28px;
        height: 28px;
        stroke: white;
        stroke-width: 2;
        fill: none;
    }
}
