     :root {
            --primary-dark: #0f1624;
            --secondary-dark: #1a2332;
            --accent-blue: #4d7cfe;
            --gradient-start: #4d7cfe;
            --gradient-end: #b24dfe;
            --light-bg: #f8f9fa;
            --orange-color: #ff7a00;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #fff;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .go-navbar {
            background: #ffffff;
            border-bottom: 1px solid #eee;
            height: 70px;
        }

        /* LOGO */
        .logo-circle {
            width: 32px;
            height: 32px;
            background: #ff7a00;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 8px;
        }

        .logo-text {
            font-size: 1.4rem;
            font-weight: 700;
            color: #000;
        }

        .logo-text span {
            color: #ff7a00;
        }

        /* SEARCH */
        .search-bar input {
            width: 300px;
            padding: 8px 14px;
            border-radius: 20px;
            border: 1px solid #ddd;
            outline: none;
            font-size: 0.9rem;
        }

        .search-bar input:focus {
            border-color: #ff7a00;
        }

        /* LINKS */
        .nav-link {
            font-weight: 500;
            color: #000 !important;
        }

        .nav-link.active {
            font-weight: 600;
        }

        /* LOGIN */
        .login-link {
            font-weight: 500;
        }

        /* BASE DROPDOWN */
        .solution-dropdown .dropdown-menu {
            border-radius: 10px;
            border: 1px solid #eee;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
            /*margin-top: 10px;*/
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.25s ease;
        }

        /* SHOW ON HOVER (DESKTOP) */
        @media (min-width: 992px) {
            .solution-dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                display: block;
            }
        }

        /* DROPDOWN ITEMS */
        .solution-dropdown .dropdown-item {
            padding: 10px 18px;
            font-weight: 500;
        }

        /* MOBILE FIX */
        @media (max-width: 991px) {
            .solution-dropdown .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                margin-top: 0;
            }
        }
        /* GET STARTED BUTTON */
        .btn-getstarted {
            background: #f36522;
            color: #fff;
            padding: 8px 18px;
            border-radius: 20px;
            font-weight: 600;
            border: none;
        }

        .btn-getstarted:hover {
            background: #e56c00;
        }

        /* MOBILE */
        @media (max-width: 991px) {
            .go-navbar {
                height: auto;
            }

            .search-bar input {
                width: 100%;
            }

            .navbar-nav {
                padding: 15px 0;
            }
        }

        /* For School Page css */

        .hero-section-school {
        position: relative;
        min-height: 90vh;
        background: linear-gradient(rgba(12, 18, 32, 0.75),rgba(12, 18, 32, 0.75)),url('https://i.postimg.cc/FHffjnzF/Solution-Image.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 8rem 1.5rem 6rem;
        }

        .hero-content-school {
            max-width: 900px;
            margin: auto;
        }

        .hero-title-school {
            font-size: clamp(2.1rem, 5vw, 3.6rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            color: #fff;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-description-school {
            font-size: clamp(0.95rem, 2vw, 1.15rem);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.4s both;
        }

        /* Overview Section */
        .overview-section {
        padding: 4.5rem 1rem;
        background: #ffffff;
        }

        .overview-title {
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: #111827;
        }

        .overview-desc {
        max-width: 850px;
        font-size: 0.95rem;
        color: #374151;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        }

        /* Badge */
        .key-feature-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #6d28d9; /* Purple background */
        padding: 8px 18px 8px 10px;
        border-radius: 999px;
        color: #ffffff;
        font-weight: 600;
        font-size: 0.9rem;
        box-shadow: 0 6px 18px rgba(109, 40, 217, 0.35);
        margin-bottom: 2rem;
        }

        /* Icon Circle */
        .key-feature-icon {
        width: 32px;
        height: 32px;
        background: #7c3aed;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        }

        /* Text */
        .key-feature-text {
        letter-spacing: 0.3px;
        }

        /* Responsive */
        @media (max-width: 576px) {
        .key-feature-pill {
            font-size: 0.85rem;
            padding: 6px 14px 6px 8px;
        }

        .key-feature-icon {
            width: 28px;
            height: 28px;
            font-size: 0.9rem;
        }
        }


        /* Grid */
        .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
        }

        /* Card */
        .feature-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 1.4rem;
        border: 1px solid #2c2a29;
        transition: all 0.3s ease;
        animation: fadeUp 0.6s ease both;
        }

        .feature-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
        color: #2c2a29;
        }

        .feature-card p {
        font-size: 0.98rem;
        color: #2c2a29;
        line-height: 1.5;
        }

        /* Hover */
        .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        border-color: #f36522;
        }

        /* Animation */
        @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        /* Responsive */
        @media (max-width: 1024px) {
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        }

        @media (max-width: 576px) {
        .overview-title {
            font-size: 1.4rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }
        }
        /* End here */

        /* Hero Section */
        .hero-section {
        position: relative;
        min-height: 90vh;
        background: linear-gradient(rgba(12, 18, 32, 0.75),rgba(12, 18, 32, 0.75)),url('https://i.postimg.cc/cHdYqh9T/Image1.jpg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 8rem 1.5rem 6rem;
        }

        /* CENTERED CONTENT */
        .hero-content {
            max-width: 900px;
            margin: auto;
        }

        /* TITLE */
        .hero-title {
            font-size: clamp(2.1rem, 5vw, 3.6rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            color: #fff;
            animation: fadeInUp 1s ease 0.2s both;
        }

    
        /* DESCRIPTION */
        .hero-description {
            font-size: clamp(0.95rem, 2vw, 1.15rem);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.8;
            animation: fadeInUp 1s ease 0.4s both;
        }

        /* BUTTON GROUP */
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* PRIMARY BUTTON */
        .btn-primary-custom {
            background: linear-gradient(135deg, #ff7a00, #ff7a00);
            color: #fff;
            border: none;
            padding: 1rem 2.2rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s both;
            text-decoration: none;

        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(77, 124, 254, 0.5);
        }

        /* Adjust padding for smaller screens */
        @media (max-width: 992px) {
            .hero-section {
                padding: 6rem 1.5rem 4rem;
            }

            .hero-section-school {
                padding: 6rem 1.5rem 4rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 5rem 1rem 3rem;
                min-height: 70vh;
            }

             .hero-section-school {
                padding: 5rem 1rem 3rem;
                min-height: 70vh;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 4rem 0.8rem 2rem;
                min-height: 60vh;
                background-size: cover;
                text-align: center;
            }

            .hero-section-school {
                padding: 4rem 0.8rem 2rem;
                min-height: 60vh;
                background-size: cover;
                text-align: center;
            }
        }


        /* MOBILE ADJUSTMENTS */
        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                width: 100%;
            }
        }


        
      /* STATS WRAPPER */
        .stats-section {
            background: transparent;
            position: relative;
            margin-top: -80px;   /* Pulls stats into hero bottom */
            z-index: 20;
        }

        /* CENTERED CARD */
        .stats-container {
            max-width: 800px;
            margin: auto;
            padding: 1rem;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }

        /* STAT ITEM */
        .stat-item {
            background: #f2f2f2;
            padding: 1rem 1rem;
            text-align: center;
            border-radius: 14px;
            transition: all 0.35s ease;
            border: 1px solid #333;
        }

        .stat-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* NUMBER */
        .stat-number {
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 500;
            background: linear-gradient(135deg, #0046c7, #0a2d6d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* LABEL */
        .stat-label {
            font-weight: 600;
            margin-top: 0px;
            color: #555;
        }

        /* TABLET */
        @media (max-width: 991px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                padding: 1.5rem;
            }
        }

        /* MOBILE */
        @media (max-width: 576px) {
            .stats-section {
                margin-top: -40px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }
        
        /* Ecosystem Section */
        .trending-section {
        padding: 2rem 0;
        background: #F4F7FA;
        }

        .trending-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        }

         .trending-title
         {
            color: #000;
         }

         .trending-subtitle
         {
            color: #000;

         }

        .trending-title span:last-child {
        color: #f36522;
        }

        .trending-slider {
        overflow: hidden;
        }

        .trending-track {
        display: flex;
        gap: 1.5rem;
        animation: scroll 15s linear infinite;
        }

        .book-card {
        min-width: 350px;
        background: #333;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .book-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        }

        .class-tag {
        position: absolute;
        top: 10px;
        left: 80%;
        background: #f36522;
        color: #fff;
        padding: 4px 10px;
        font-size: 12px;
        border-radius: 20px;
        }

        .book-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .publisher {
            margin: 0;
            font-size: 13px;
            color: #666;
        }

        .price {
            margin: 0;
            font-size: 14px;
            font-weight: 800;
            color: #f36522;
        }

        .book-body {
        padding: 1rem;
        }

        .badge {
        background: #eef3ff;
        color: #2c2a29;
        padding: 4px 8px;
        font-size: 11px;
        border-radius: 6px;
        }

        .publisher {
        color: #fff;
        font-size: 13px;
        }

        .view-all
        {
            text-decoration: none;
            color: #f36522;
            font-weight: 600;
            font-size: 2rem;
        }

        @keyframes scroll {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
        }

        /* MOBILE */
        @media (max-width: 576px) {
        .trending-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        }

        /* Security Section */
      .ecosystem-main {
        padding: 5rem 0;
        background: #ffffff;
        }

        /* Titles */
        .column-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #f36522;
        }

        .column-subtitle {
        font-size: 0.9rem;
        color: #000;
        font-weight: 500;
        margin-bottom: 2rem;
        }

        /* Ecosystem Cards */
      .eco-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        }

       .eco-card {
            background: #ffffff;
            border-radius: 14px;
            padding: 1.5rem 1rem;
            text-align: center;
            box-shadow: 0 8px 15px rgba(255, 165, 0, 0.4);
            transition: all 0.3s ease;
        }

        .eco-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 35px rgba(255, 165, 0, 0.6);
        }

        /* Icon circle */
        .eco-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        font-size: 1.5rem;
        }

        /* Colors exactly like image */
        .eco-icon.blue { background: #e6edff; color: #3758f9; }
        .eco-icon.green { background: #dcfce7; color: #16a34a; }
        .eco-icon.purple { background: #ede9fe; color: #7c3aed; }
        .eco-icon.orange { background: #ffedd5; color: #ea580c; }

        .eco-card h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
        color: #111827;
        }

        .eco-card p {
        font-size: 0.85rem;
        color: #4b5563;
        line-height: 1.4;
        margin-bottom: 1rem;
        }

        .eco-card a {
        font-size: 0.85rem;
        font-weight: 600;
        color: #f97316;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        }

        .eco-card a span {
        transition: transform 0.3s ease;
        }

        .eco-card a:hover span {
        transform: translateX(4px);
        }

        /* Mobile */
        @media (max-width: 576px) {
        .eco-grid {
            grid-template-columns: 1fr;
        }
        }

        /* Why GoErudite Cards */
        .info-card {
        background: #fff;
        border-radius: 12px;
        padding: 1.2rem;
        margin-bottom: 1rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.05);
        }

        .info-card h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
        }

        .info-card p {
        font-size: 0.85rem;
        color: #475569;
        }

        /* Ebook checklist */
       .ebook-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .ebook-list .info-card {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 1rem;
            font-size: 14px;
            color: #2c2a20;
        }

        /* Circle check before each item */
        .ebook-list .info-card::before {
            content: "\2713"; /* check mark */
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 1.2rem;
            height: 1.2rem;
            background: #f36522; /* orange background */
            color: #fff; /* white check */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }


        .info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.4rem;
        }

        .info-card {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        background: #ffffff;
        border-radius: 12px;
        padding: 1.2rem 1.4rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        transition: transform 0.3s ease;
        }
        

        .info-card:hover {
        transform: translateY(-4px);
        }

        /* Icon circle */
        .info-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        flex-shrink: 0;
        }

        /* Icon colors */
        .info-icon.green {
        background: #dcfce7;
        color: #16a34a;
        }

        .info-icon.orange {
        background: #ffedd5;
        color: #ea580c;
        }

        .info-icon.blue {
        background: #e0e7ff;
        color: #2563eb;
        }

        .info-content h5 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
        color: #111827;
        }

        .info-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        color: #4b5563;
        margin: 0;
        }

        /* Mobile responsive */
        @media (max-width: 576px) {
        .info-card {
            padding: 1rem;
        }
        }

        /* Responsive */
        @media (max-width: 992px) {
        .eco-grid {
            grid-template-columns: 1fr;
        }
        }

        /* testimonial section */
        .testimonial-section {
        background: #2b324a;
        padding: 4.5rem 1rem;
        }

        .testimonial-header {
        text-align: center;
        color: #fff;
        margin-bottom: 3rem;
        }

        .testimonial-header h2 {
        font-size: 2rem;
        font-weight: 800;
        }

        .testimonial-header p {
        font-size: 1rem;
        opacity: 0.85;
        }

        /* Grid */
        .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        }

        /* Card */
        .testimonial-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 1.6rem;
        position: relative;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .testimonial-card p {
        font-size: 0.95rem;
        color: #374151;
        line-height: 1.6;
        margin-bottom: 1.8rem;
        }

        /* Quote icon */
        /* Author */
        .author {
        display: flex;
        justify-content: space-between;
        align-items: center;
        }

        .author h5 {
        font-size: 0.9rem;
        font-weight: 700;
        margin: 0;
        color: #111827;
        }

        .author span {
        font-size: 0.75rem;
        color: #f36522;
        }

        .author img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #f36522;
        }

        /* Responsive */
        @media (max-width: 992px) {
        .testimonial-grid {
            grid-template-columns: 1fr;
        }
        }

    /* CTA Section */
       .cta-section {
        background: #f26a2b;
        overflow: hidden;
        }

        .cta-container {
        display: flex;
        align-items: center;
        }

        /* Image */
        .cta-image img {
        max-width: 510px;
        width: 100%;
        }

        /* Content */
        .cta-content {
        color: #fff;
        max-width: 700px;
        }

        .cta-content h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        font-weight: 800;
        margin-bottom: 0.6rem;
        }

        .cta-content p {
        font-size: 1rem;
        opacity: 0.95;
        margin-bottom: 1.5rem;
        }

        /* Buttons */
        .cta-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        }

        .btn {
        padding: 0.6rem 1.8rem;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        }

        /* White Button */
        .btn-primary {
        background: #fff;
        color: #000;
        border: 1px solid #2c2a29;
        }

        .btn-primary:hover {
        background: #333;
        }

        /* Outline Button */
        .btn-secondary {
        background: #fff;
        color: #000;
        border: 1px solid #2c2a29;
        }

        .btn-secondary:hover {
        background: #333;
        }

        /* Responsive */
        @media (max-width: 992px) {
        .cta-container {
            flex-direction: column;
            text-align: center;
        }

        .cta-image img {
            max-width: 220px;
        }

        .cta-buttons {
            justify-content: center;
        }
        }

        @media (max-width: 576px) {
        .cta-content h2 {
            font-size: 1.4rem;
        }
        }


        /* Footer */
       /* Footer */
.footer {
    background: #0f1624;
    color: #fff;
    padding: 4rem 1rem 1.5rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.footer-brand img {
    width: 40px;
    height: 40px;
}

.footer-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
}

/* Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #f36522;
}

/* Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-list a:hover {
    color: #6a5af9;
    padding-left: 5px;
}

/* Contact */
.footer-contact {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }
}


/* Logo Bounce Animation */
@keyframes logoBounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-brand {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-title {
        text-align: center;
    }
    .footer-link {
        text-align: center;
    }
}


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        .delay-4 { animation-delay: 0.8s; }
        .delay-5 { animation-delay: 1s; }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero-section {
                padding: 7rem 0 3rem;
            }

            .security-content {
                padding: 2rem 0;
                margin-top: 2rem;
            }

            .floating-card {
                position: relative !important;
                top: auto !important;
                right: auto !important;
                left: auto !important;
                bottom: auto !important;
                margin: 1rem 0;
            }
        }

        @media (max-width: 767.98px) {
            .navbar-brand {
                font-size: 1.2rem;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .btn-login {
                padding: 0.5rem 1rem;
                font-size: 0.9rem;
            }

            .btn-primary-custom,
             .btn-secondary-custom {
                width: 90%;        /* slightly smaller than full width */
                max-width: 300px;  /* optional max width */
                display: block;
                margin: 0.5rem auto; /* centers the button */
                justify-content: center; /* keep content centered */
            }

            .stats-section {
                padding: 2rem 0;
            }

            .stat-item {
                padding: 1rem 0.5rem;
            }

            .ecosystem-section,
            .security-section {
                padding: 3rem 0;
            }

            .cta-section {
                padding: 3rem 0;
            }

            .btn-white,
            .btn-white-outline {
                width: 100%;
                margin: 0.3rem 0;
            }

            .footer {
                padding: 3rem 0 1.5rem;
            }
        }

        @media (max-width: 575.98px) {
            .hero-section {
                padding: 6rem 0 2rem;
            }

        
            .section-subtitle {
                font-size: 0.95rem;
            }

            .feature-card {
                padding: 1.5rem;
            }
        }


        /* Contact page CSS */
        .contact-hero {
        background: linear-gradient(270deg, #b24dfe, #0f1624, #6a5af9, #0f1624);
        background-size: 800% 800%;
        animation: gradientMove 15s ease infinite; 
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff; 
        border-radius: 12px; 
    }

    /* Animation Keyframes */
    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }

        .contact-title {
            font-size: 2.8rem;
            font-weight: 800;
        }

        .contact-subtitle {
            font-size: 1.1rem;
            color: #fff;
        }

        /* Contact Section */
            .contact-section {
            background: #f4f7f9;
            padding: 80px 0;
            }

            /* GRID */
            .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            }

            /* LEFT */
            .contact-info h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            }

            .contact-info p {
            color: #555;
            margin-bottom: 30px;
            }

            .info-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            }

            .info-item .icon {
            font-size: 22px;
            }

            /* RIGHT CARD */
            .contact-form-card {
            background: #fff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            }

            .contact-form-card h3 {
            margin-bottom: 20px;
            }

            /* FORM */
            .contact-form-card form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            }

            .form-row {
            display: flex;
            gap: 15px;
            }

            .contact-form-card input,
            .contact-form-card select,
            .contact-form-card textarea {
            width: 100%;
            padding: 12px 14px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-size: 14px;
            }

            .contact-form-card input:focus,
            .contact-form-card select:focus,
            .contact-form-card textarea:focus {
            border-color: #f36522;
            outline: none;
            }

            /* BUTTON */
            .contact-form-card button {
            margin-top: 10px;
            background: #f36522;
            color: #fff;
            border: none;
            padding: 12px;
            border-radius: 999px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            }

            .contact-form-card button:hover {
            background: #e65c1d;
            transform: translateY(-2px);
            }

            /* ANIMATIONS */
            .animate-left {
            animation: slideLeft 0.8s ease forwards;
            }

            .animate-right {
            animation: slideRight 0.8s ease forwards;
            }

            @keyframes slideLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
            }

            @keyframes slideRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
            }

            /* RESPONSIVE */
            @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .form-row {
                flex-direction: column;
            }
            }

        .pricing-section {
        background: #f6f9fc;
        padding: 5rem 0;
        }

        .pricing-card {
        background: #fff;
        border-radius: 14px;
        padding: 2rem 1.5rem;
        height: 100%;
        position: relative;
        box-shadow: 0 8px 25px rgba(0,0,0,0.06);
        transition: all 0.35s ease;
        animation: fadeUp 0.8s ease both;
        }

        .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.12);
        }

        .plan-title {
        font-weight: 700;
        color: #0f766e;
        }

        .plan-for {
        font-size: 0.85rem;
        color: #2c2a29;
        margin-bottom: 1rem;
        }

        .price {
        font-size: 1.9rem;
        font-weight: 800;
        color: #000;
        }

        .price span {
        font-size: 0.85rem;
        font-weight: 500;
        color: #666;
        }

        .free {
        color: #f97316;
        }

        .price-note {
        font-size: 0.85rem;
        color: #555;
        margin-bottom: 1.2rem;
        }

        .feature-list {
        list-style: none;
        padding: 0;
        margin-bottom: 1.5rem;
        }

        .feature-list li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        padding-left: 1.5rem;
        position: relative;
        color: #2c2a29;
        }

        .feature-list li.yes::before {
        content: "✓";
        color: #22c55e;
        position: absolute;
        left: 0;
        }

        .feature-list li.no::before {
        content: "✕";
        color: #ef4444;
        position: absolute;
        left: 0;
        }

        .btn-orange {
        display: block;
        text-align: center;
        background: #f97316;
        color: #fff;
        padding: 0.65rem;
        border-radius: 999px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
        }

        .btn-orange:hover {
        background: #ea580c;
        }

        /* Popular */
        .popular {
        border: 2px solid #f97316;
        }

        .popular-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: #f97316;
        color: #fff;
        font-size: 0.65rem;
        padding: 4px 8px;
        border-radius: 999px;
        font-weight: 600;
        }

        /* Animation */
        @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(25px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        /* Mobile */
        @media (max-width: 576px) {
        .pricing-card {
            padding: 1.5rem;
        }
        }

        .enterprise-billing-section {
        background: #ffffff;
        padding: 1.5rem 0;
        }

        .billing-header {
        max-width: 850px;
        margin: 0 auto 3rem;
        }

        .billing-tag {
        color: #f97316;
        font-weight: 700;
        letter-spacing: 0.5px;
        }

        .billing-intro {
        color: #2c2a29;
        font-size: 0.95rem;
        margin-top: 0.5rem;
        }

        .billing-list {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        }

        .billing-item {
        display: flex;
        gap: 1.2rem;
        background: #f9fafb;
        padding: 1.2rem 1.4rem;
        border-radius: 10px;
        border: 1px solid #e5e7eb;
        transition: all 0.4s ease;
        animation: fadeSlideUp 0.8s ease both;
        }

        .billing-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        }

        .billing-number {
        min-width: 42px;
        height: 42px;
        border-radius: 8px;
        background: #10b981;
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        }

        .billing-item h5 {
        margin-bottom: 0.3rem;
        font-weight: 700;
        font-size: 1.5rem;
        color: #000;
        }

        .billing-item p {
        margin: 0;
        font-size: 1rem;
        color: #2c2a29;
        }

        .billing-footer {
        margin-top: 2.5rem;
        }

        .billing-note {
        font-size: 0.75rem;
        color: #555;
        margin-bottom: 0.8rem;
        }

        .billing-cta {
        color: #f97316;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.85rem;
        }

        .billing-cta:hover {
        text-decoration: underline;
        }

        /* Animation */
        @keyframes fadeSlideUp {
        from {
            opacity: 0;
            transform: translateY(25px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        /* Responsive */
        @media (max-width: 768px) {
        .billing-item {
            flex-direction: column;
        }

        .billing-number {
            width: 42px;
        }
        }

        /* Social Icons */
        .social-wrapper {
            margin-top: 2rem;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            background: #3b82f6;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: #1d4ed8;
            transform: translateY(-4px);
        }

        /* Right Form */
        .contact-form-box {
            background: linear-gradient(135deg, #b24dfe 0%, #0f1624 100%);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.06);
        }

        .form-heading {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .form-label {
            color: #000;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* Map */
        .map-section {
            margin-top: 3rem;
        }

        /* about page css */
        .about-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 0 60px;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.09rem);
            color: #fefeff;
            max-width: 1200px;
            line-height: 1.8;
        }

        /* Animation Classes */
        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate {
            opacity: 1;
            transform: translate(0, 0);
        }

        /* Content Section */
        .content-section {
            padding: 40px 0;
            position: relative;
        }

        /* .content-section:nth-child(even) {
            background: #0f0f0f;
        } */

        .content-row {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 80px;
        }

        .content-text {
            flex: 1;
        }

        .content-text h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #000;
        }

        .content-text .highlight {
            background: linear-gradient(135deg, #f36522 0%, #f36522 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 1rem;
        }

        .content-image {
            flex: 1;
            position: relative;
        }

        .image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .values-section {
        position: relative;
        padding: 40px 0;
        }

        .values-title {
            color: #ffffff;
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 40px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .value-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: all 0.35s ease;
        }

        .value-card h4 {
            color: #f36522;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .value-card p {
            font-size: 0.95rem;
            color: #2c2a29;
            line-height: 1.6;
        }

        /* Hover animation */
        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        /* Tablet */
        @media (max-width: 992px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .values-section {
                padding: 60px 0;
                text-align: center;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Rotated Image Effect */
        .rotated-left .image-wrapper {
            transform: rotate(-5deg);
            transition: transform 0.5s ease;
        }

        .rotated-right .image-wrapper {
            transform: rotate(5deg);
            transition: transform 0.5s ease;
        }

        .rotated-left .image-wrapper:hover,
        .rotated-right .image-wrapper:hover {
            transform: rotate(0deg) scale(1.05);
        }

        .image-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(167, 139, 250, 0.2) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .image-wrapper:hover::before {
            opacity: 1;
        }

        /* Stats Section */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            padding: 60px 0;
        }

        .stat-card {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(96, 165, 250, 0.3);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 500;
            background: linear-gradient(135deg, #333 0%, #333 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .team-card {
            text-align: center;
            transition: transform 0.3s ease;
        }

        .team-card:hover {
            transform: scale(1.05);
        }

        .team-avatar {
            width: 200px;
            height: 200px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
            padding: 5px;
            position: relative;
            overflow: hidden;
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            background: #1a1a2e;
        }

        .team-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: #fff;
        }

        .team-role {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Section Title */
        .section-title-center {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title-center h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-title-center p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .content-row {
                flex-direction: column;
                gap: 40px;
            }

            .content-row.reverse {
                flex-direction: column;
            }

            .rotated-left .image-wrapper,
            .rotated-right .image-wrapper {
                transform: rotate(0deg);
            }
        }

        @media (max-width: 768px) {
            .about-hero {
                min-height: 50vh;
                padding: 60px 0 40px;
            }

            .content-section {
                padding: 60px 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .values-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }
        }


        /* Publisher CSS */
        .publisher-cta {
        background: #ee6a2c; /* exact orange tone */
        padding: 4.5rem 1rem;
        text-align: center;
        overflow: hidden;
        }

        .publisher-cta-content {
        max-width: 900px;
        margin: 0 auto;
        animation: fadeSlideUp 0.8s ease both;
        }

        .publisher-cta h2 {
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        font-weight: 800;
        color: #fff;
        margin-bottom: 1rem;
        }

        .publisher-cta p {
        font-size: clamp(0.95rem, 2vw, 1.05rem);
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.7;
        margin-bottom: 2rem;
        }

        /* Button */
        .cta-btn {
        display: inline-block;
        background: #ffffff;
        color: #000;
        padding: 0.8rem 1.8rem;
        border-radius: 999px;
        font-weight: 700;
        font-size: 0.95rem;
        text-decoration: none;
        transition: all 0.3s ease;
        }

        .cta-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        /* Animation */
        @keyframes fadeSlideUp {
        from {
            opacity: 0;
            transform: translateY(25px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        /* Mobile adjustments */
        @media (max-width: 576px) {
        .publisher-cta {
            padding: 3.5rem 1rem;
        }

        .publisher-cta p {
            font-size: 0.95rem;
        }
        }

        .help-center-section {
        /* padding: 4.5rem 0; */
        background: #ffffff;
        }

        .help-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 1rem;
        align-items: center;
        }

        /* LEFT CONTENT */
        .help-disclaimer {
        font-size: 0.85rem;
        color: #2c2a29;
        margin-bottom: 1rem;
        }

        .help-content h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.8rem;
        }

        .help-intro {
        font-size: 0.95rem;
        color: #2c2a29;
        margin-bottom: 1rem;
        }

        .help-list {
        padding-left: 1.2rem;
        margin-bottom: 1rem;
        }

        .help-list li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        }

        .help-note {
        font-size: 0.8rem;
        color: #2c2a29;
        }

        /* RIGHT VISUAL */
        .help-visual {
        display: flex;
        justify-content: center;
        }

        .support-card {
        position: relative;
        width: 300px;
        height: 220px;
        background: #f4f6fb;
        border-radius: 18px;
        animation: float 6s ease-in-out infinite;
        }

        /* Agent avatar */
        .avatar {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 80px;
        background: #6366f1;
        border-radius: 50%;
        }

        /* Floating icons */
        .floating-icon {
        position: absolute;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        animation: pulse 2.5s infinite ease-in-out;
        }

        .chat { background: #f97316; top: 15px; left: 30px; }
        .help { background: #22c55e; top: 25px; right: 35px; }
        .mail { background: #3b82f6; bottom: 60px; left: 25px; }
        .search { background: #a855f7; bottom: 40px; right: 30px; }
        .gear { background: #ef4444; top: 90px; left: -10px; }
        .clock { background: #0ea5e9; top: 90px; right: -10px; }

        /* Animations */
        @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-12px); }
        }

        @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.8; }
        50% { transform: scale(1.1); opacity: 1; }
        }

        /* RESPONSIVE */
        @media (max-width: 992px) {
        .help-grid {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .help-list {
            text-align: left;
            display: inline-block;
        }
        }


.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 1.2rem;
    justify-content: flex-start;
}

/* Social Button */
.social-link {
    width: 42px;
    height: 42px;
    background: #1f2933;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Animation */
.social-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link:hover {
    transform: translateY(-6px) scale(1.05);
}

/* Platform Colors */
.social-link.facebook:hover { background: #1877f2; }
.social-link.twitter:hover { background: #1da1f2; }
.social-link.instagram:hover { background: #e1306c; }
.social-link.linkedin:hover { background: #0a66c2; }

/* Icon bounce */
.social-link:hover i {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

/* Mobile Centering */
@media (max-width: 768px) {
    .footer-social {
        justify-content: center;
    }
}

/* Login Signup CSS */

        .form-section {
            display: none;
            max-width: 600px;
            margin: 30px auto;
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .form-section.active {
            display: block;
        }

        .form-header {
            background-color: #000;
            color: white;
            padding: 15px 20px;
            border-radius: 8px 8px 0 0;
            margin: -30px -30px 30px -30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .back-btn {
            background: white;
            color: black;
            border: none;
            padding: 5px 15px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
        }

        .form-title {
            font-size: 16px;
        }

        .form-subtitle {
            font-size: 12px;
            opacity: 0.8;
        }

        h2 {
            margin-bottom: 20px;
            font-size: 18px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        label {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        label span {
            font-size: 11px;
            font-weight: normal;
            color: #666;
        }

        input, select, textarea {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            background-color: #fafafa;
        }

        textarea {
            resize: vertical;
            min-height: 80px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin: 20px 0;
            grid-column: 1 / -1;
        }

        .checkbox-group input[type="checkbox"] {
            margin-top: 3px;
            width: auto;
        }

        .checkbox-group label {
            font-size: 12px;
            font-weight: normal;
            margin: 0;
        }

        .submit-btn {
            background-color: #ff6b35;
            color: white;
            border: none;
            padding: 12px 40px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            display: block;
            margin: 20px auto;
        }

        .submit-btn:hover {
            background-color: #e55a2b;
        }

        .terms {
            text-align: center;
            font-size: 12px;
            color: #666;
            margin-top: 10px;
        }

        .terms a {
            color: #ff6b35;
            text-decoration: none;
        }


/* Catelog shop page css */
.shop-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar Filters */
.sidebar-filters {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    height: fit-content;
    position: sticky;
    top: 80px;
    overflow: hidden;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background: #fef6f0;
    border-bottom: 1px solid #f3f4f6;
}

.filter-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-header h3::before {
    content: "☰";
    color: #f36522;
}

.clear-all {
    color: #f36522;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.filter-section {
    padding: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    font-size: 12px;
    font-weight: 700;
    color: #f36522;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.filter-options-single {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    margin: 3px 8px 0 0;
    cursor: pointer;
    flex-shrink: 0;
}

.filter-option label {
    font-size: 13px;
    color: #374151;
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}

.price-range-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 13px;
    color: #6b7280;
}

.price-range-display span:last-child {
    color: #f36522;
    font-weight: 600;
}

.session-badges {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.session-badge {
    padding: 4px 10px;
    background: #fef3e8;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
}

.session-badge.new {
    background: #f36522;
    color: #fff;
}

.important-tip {
    background: #f36522;
    color: #fff;
    padding: 15px 18px;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
}

.important-tip strong {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
}

.verified-publisher-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.verified-publisher-toggle label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
}

.verified-publisher-toggle label::before {
    content: "✓";
    color: #f36522;
    font-weight: 700;
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: #f36522;
}

.toggle-switch::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s;
}

.toggle-switch.active::after {
    transform: translateX(20px);
}

/* Main Content Area */
.shop-main {
    flex: 1;
    min-width: 0;
    margin-top: 5rem;
}

.shop-header {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.shop-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.search-sort-bar {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.search-box::after {
    content: "🔍";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.sort-dropdown, .view-dropdown {
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
}

.wishlist-icon, .class-badge {
    position: absolute;
    top: 10px;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.wishlist-icon {
    left: 10px;
    color: #f36522;
    font-size: 18px;
}

.class-badge {
    right: 10px;
    font-weight: 600;
    font-size: 12px;
    color: #1f2937;
}

.product-info {
    margin-bottom: 12px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.meta-badge {
    background: #f3f4f6;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #6b7280;
}

.meta-badge.cbse {
    background: #dbeafe;
    color: #1e40af;
}

.rating {
    color: #fbbf24;
    font-size: 14px;
}

.product-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mrp {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
}

.selling-price {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.discount {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
}

.add-to-cart {
    background: #f36522;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.add-to-cart:hover {
    background: #d94d0a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .shop-container {
        flex-direction: column;
    }
    
    .sidebar-filters {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .filter-options-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .shop-container {
        padding: 10px;
    }
    
    .sidebar-filters {
        max-height: 400px;
        overflow-y: auto;
    }
    
    .filter-section {
        padding: 12px 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .product-card {
        padding: 10px;
    }
    
    .product-image img {
        height: 200px;
    }
    
    .search-sort-bar {
        flex-direction: column;
    }
    
    .search-box {
        width: 100%;
    }
    
    .filter-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .sidebar-filters {
        width: 100%;
        border-radius: 6px;
    }
    
    .filter-header {
        padding: 12px 15px;
    }
    
    .filter-header h3 {
        font-size: 14px;
    }
    
    .filter-section {
        padding: 10px 15px;
    }
    
    .filter-section h4 {
        font-size: 11px;
    }
    
    .filter-option label {
        font-size: 12px;
    }
    
    .product-image img {
        height: 180px;
    }
    
    .product-info h3 {
        font-size: 14px;
    }
    
    .selling-price {
        font-size: 16px;
    }
    
    .add-to-cart {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .important-tip {
        padding: 12px 15px;
        font-size: 11px;
    }
    
    .verified-publisher-toggle {
        padding: 12px 15px;
    }
    
    .verified-publisher-toggle label {
        font-size: 12px;
    }
    
    .toggle-switch {
        width: 38px;
        height: 20px;
    }
    
    .toggle-switch::after {
        width: 14px;
        height: 14px;
    }
    
    .toggle-switch.active::after {
        transform: translateX(18px);
    }
}
  .pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 8px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #4ade80;
    color: #fff;
    border-color: #4ade80;
}

.page-link.active {
    background: #4ade80;
    color: #fff;
    border-color: #4ade80;
    pointer-events: none;
}

/* Detail Page CSS */

.page-header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
}

.catalog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.book-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.book-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.book-badge {
    background-color: #e8e8e8;
    color: #666;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.book-class {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.book-content {
    padding: 20px;
}

.book-image-section {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.book-image {
    flex-shrink: 0;
}

.book-image img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.book-details {
    flex: 1;
}

.book-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.book-publisher {
    color: #ff6b35;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.book-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 3px;
    font-weight: 600;
}

.info-value {
    font-size: 0.85rem;
    color: #333;
    font-weight: 600;
}

.info-value.highlight {
    color: #ff6b35;
}

.price-section {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.price-label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.description {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    max-height: 80px;
    overflow: hidden;
}

.progress-section {
    margin-bottom: 15px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 5px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #4caf50;
    transition: width 0.3s;
}

.publisher-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background-color: #f8f8f8;
    border-radius: 6px;
    margin-bottom: 15px;
}

.publisher-logo {
    background-color: #2e7d32;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.publisher-info {
    flex: 1;
}

.publisher-name {
    font-size: 0.8rem;
    color: #333;
    font-weight: 600;
}

.publisher-status {
    font-size: 0.7rem;
    color: #666;
}

.publisher-badge {
    background-color: #2e7d32;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* .btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: block;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background-color: #e55a28;
}

.btn-secondary {
    background-color: #fff;
    color: #ff6b35;
    border: 2px solid #ff6b35;
} */

.btn-secondary:hover {
    background-color: #fff5f2;
}

.rating-section {
    padding-top: 15px;
    border-top: 1px solid #e8e8e8;
}

.rating-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled {
    color: #ffc107;
}

.rating-link {
    font-size: 0.8rem;
    color: #666;
    text-decoration: none;
}

.rating-link:hover {
    color: #ff6b35;
}

.important-notice {
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
    margin: 30px auto;
    max-width: 1400px;
    border-radius: 8px;
}

.notice-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.notice-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .books-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .catalog-container {
        padding: 15px;
    }

    .books-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .book-image-section {
        flex-direction: column;
        align-items: center;
    }

    .book-image img {
        width: 140px;
        height: 180px;
    }

    .book-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.4rem;
    }

    .book-title {
        font-size: 1.1rem;
    }

    .book-info-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}