    :root {
        --primary: #da1a4b;
        --secondary: #0d47a1;
        --accent: #2196f3;
        --success: #4caf50;
        --warning: #ff9800;
        --light: #f5f7fa;
        --dark: #1a1a2e;
        --gray: #5f6368;
        --gradient: linear-gradient(135deg, #da1a4b 0%, #0d47a1 100%);
        --gradient-accent: linear-gradient(135deg, #2196f3 0%, #0d47a1 100%);
        --gradient-india: linear-gradient(135deg, #ff9933 0%, #ffffff 50%, #138808 100%);
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
        --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background-color: #f8fafc;
        color: var(--dark);
        line-height: 1.7;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary);
        display: inline-block;
        position: relative;
        padding-bottom: 10px;
    }

    .section-title h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 4px;
        background: var(--accent);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .section-title p {
        color: var(--gray);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 10px auto 0;
    }

    .btn {
        display: inline-block;
        padding: 14px 32px;
        background: var(--gradient-accent);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(33, 150, 243, 0.4);
        background: linear-gradient(135deg, #0d47a1, #2196f3);
    }

    .btn-outline {
        background: transparent;
        border: 2px solid var(--accent);
        color: var(--accent);
        box-shadow: none;
    }

    .btn-outline:hover {
        background: var(--accent);
        color: white;
    }

    .btn-india {
        background: var(--gradient-india);
        color: #000;
        font-weight: 700;
    }

    .btn-india:hover {
        background: linear-gradient(135deg, #ff9933, #ffffff, #138808);
    }

    /* ===== Header & Navigation ===== */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: var(--transition);
    }

    header.scrolled {
        padding: 10px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        transition: var(--transition);
    }

    .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .logo-icon {
        width: 60px;
        height: 60px;
        background: var(--gradient);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 1.8rem;
        box-shadow: 0 5px 15px rgba(26, 35, 126, 0.2);
        position: relative;
        overflow: hidden;
    }

    /* .logo-icon:after {
            content: 'CSC';
            position: absolute;
            font-size: 0.9rem;
            bottom: 5px;
            right: 5px;
            color: rgba(255, 255, 255, 0.8);
        } */

    .logo-text h1 {
        font-size: 1.6rem;
        margin-bottom: 0;
        color: var(--primary);
        line-height: 1.2;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo-text h1:after {
        content: '✓';
        color: var(--success);
        font-size: 1.2rem;
    }

    .logo-text span {
        font-size: 0.85rem;
        color: var(--gray);
        font-weight: 500;
    }

    .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        font-size: 1rem;
        transition: var(--transition);
        position: relative;
        padding: 5px 0;
    }

    .nav-links a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        background: var(--accent);
        bottom: 0;
        left: 0;
        transition: width 0.3s ease;
        border-radius: 3px;
    }

    .nav-links a:hover {
        color: var(--accent);
    }

    .nav-links a:hover:after,
    .nav-links a.active:after {
        width: 100%;
    }

    .nav-links a.active {
        color: var(--accent);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
    }

    /* ===== Hero Section ===== */
    .hero {
        padding-top: 150px;
        padding-bottom: 100px;
        background: var(--gradient);
        position: relative;
        overflow: hidden;
    }

    .hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23ffffff"/></svg>'); */
        background-size: 100% 150px;
        background-repeat: no-repeat;
        background-position: bottom;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .hero-text h1 {
        font-size: 3.2rem;
        color: white;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 35px;
        max-width: 550px;
    }

    .hero-tags {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .hero-tag {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 10px 20px;
        border-radius: 30px;
        color: white;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero-tag.hassle-free {
        border-left: 4px solid #4caf50;
    }

    .hero-tag.reliable {
        border-left: 4px solid #2196f3;
    }

    .hero-tag.quick {
        border-left: 4px solid #ff9800;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 12px 25px;
        border-radius: 50px;
        color: white;
        font-weight: 600;
        margin-bottom: 30px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-badge i {
        color: #4caf50;
    }

    .hero-image {
        position: relative;
    }

    .hero-card {
        background: white;
        border-radius: 20px;
        padding: 35px;
        box-shadow: var(--shadow-hover);
        transform: perspective(1000px) rotateY(-5deg);
        transition: var(--transition);
        max-width: 450px;
        margin-left: auto;
        position: relative;
        overflow: hidden;
    }

    .hero-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: var(--gradient-india);
    }

    .hero-card:hover {
        transform: perspective(1000px) rotateY(0deg);
    }

    .hero-card h3 {
        color: var(--primary);
        font-size: 1.6rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .card-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .card-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        background: var(--light);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.3rem;
        flex-shrink: 0;
    }

    .card-text h4 {
        font-size: 1.1rem;
        margin-bottom: 3px;
        color: var(--dark);
    }

    .card-text p {
        font-size: 0.95rem;
        color: var(--gray);
        margin-bottom: 0;
    }

    /* ===== Government Badges ===== */
    .govt-badges {
        background: white;
        padding: 40px 0;
        border-bottom: 1px solid #e8eaed;
    }

    .badges-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 40px;
    }

    .badge {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 180px;
    }

    .badge-icon {
        width: 80px;
        height: 80px;
        background: var(--light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        font-size: 2.5rem;
        color: var(--primary);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .badge h4 {
        font-size: 1rem;
        color: var(--primary);
        margin-bottom: 5px;
    }

    .badge p {
        font-size: 0.85rem;
        color: var(--gray);
    }

    /* ===== About Section ===== */

    /* ===== About Section ===== */
    .about {
        background-color: white;
        position: relative;
        overflow: hidden;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        align-items: center;
    }

    .about-image {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow-hover);
        height: 550px;
        background: linear-gradient(135deg, rgba(218, 26, 75, 0.1), rgba(255, 255, 255, 0.1));
        border: 1px solid rgba(218, 26, 75, 0.1);
    }

    .about-image-content {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about_photo {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #f9f9f9, #ffffff);
    }

    .about_photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        transition: var(--transition);
    }

    .about-image:hover .about_photo img {
        transform: scale(1.02);
    }

    .image-badge {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: var(--gradient);
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        box-shadow: 0 5px 15px rgba(218, 26, 75, 0.3);
        z-index: 2;
    }

    .about-text {
        padding-right: 20px;
    }

    .about-text h2 {
        font-size: 2.2rem;
        color: var(--dark);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .about-text h2 span {
        color: var(--primary);
        position: relative;
    }

    .about-text h2 span:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: var(--primary);
        bottom: -5px;
        left: 0;
    }

    .about-text p {
        margin-bottom: 25px;
        color: var(--gray);
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .highlight-box {
        background: linear-gradient(135deg, rgba(218, 26, 75, 0.05), rgba(255, 255, 255, 0.1));
        border-left: 4px solid var(--primary);
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 8px 8px 0;
    }

    .highlight-box h4 {
        color: var(--primary);
        margin-bottom: 10px;
        font-size: 1.2rem;
    }

    .highlight-box p {
        margin-bottom: 0;
        color: var(--dark);
    }

    .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .feature {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        background: var(--light);
        border-radius: 10px;
        transition: var(--transition);
        border: 1px solid rgba(218, 26, 75, 0.1);
        position: relative;
        overflow: hidden;
    }

    .feature:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--primary);
    }

    .feature:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
        background: white;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: var(--gradient);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.3rem;
        flex-shrink: 0;
        transition: var(--transition);
    }

    .feature:hover .feature-icon {
        transform: rotate(10deg);
    }

    .feature-text h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        color: var(--dark);
    }

    .feature-text p {
        font-size: 0.9rem;
        margin-bottom: 0;
        color: var(--gray);
    }

    /* Stats Section */
    .about-stats {
        background: var(--light);
        padding: 50px 0;
        margin-top: 50px;
        border-radius: 15px;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .stat-item {
        text-align: center;
        padding: 20px;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 10px;
        font-family: 'Montserrat', sans-serif;
    }

    .stat-text {
        font-size: 1rem;
        color: var(--dark);
        font-weight: 600;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .about-text {
            padding-right: 0;
        }

        .about-image {
            height: 450px;
        }

        .stats-container {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .section-padding {
            padding: 60px 0;
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .about-text h2 {
            font-size: 1.8rem;
        }

        .about-features {
            grid-template-columns: 1fr;
        }

        .about-image {
            height: 400px;
        }

        .stats-container {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .stat-number {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .section-title h2 {
            font-size: 1.8rem;
        }

        .about-text h2 {
            font-size: 1.6rem;
        }

        .about-image {
            height: 350px;
        }

        .feature {
            padding: 15px;
        }
    }

    /* Animation */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .fade-in {
        animation: fadeInUp 0.6s ease forwards;
    }

    /* ===== Services Section ===== */
    .services {
        background-color: var(--light);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .service-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .service-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-accent);
    }

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: var(--shadow-hover);
    }

    .service-header {
        padding: 30px 30px 0;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: var(--gradient-accent);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }

    .service-body {
        padding: 0 30px 30px;
        flex-grow: 1;
    }

    .service-list {
        list-style: none;
    }

    .service-list li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        position: relative;
        padding-left: 30px;
        color: var(--gray);
    }

    .service-list li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--success);
        font-weight: bold;
        font-size: 1.1rem;
    }

    .service-footer {
        padding: 20px 30px;
        background: var(--light);
        border-top: 1px solid #f0f0f0;
    }

    /* ===== Digital India Banner ===== */
    .digital-india-banner {
        /* background: var(--gradient-india); */
        background-color: #eef1f5;
        padding: 60px 0;
        text-align: center;
        color: #000;
        position: relative;
        overflow: hidden;
    }

    .digital-india-banner:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>'); */
        background-size: cover;
    }

    .digital-india-content {
        position: relative;
        z-index: 1;
    }

    .digital-india-content h2 {
        font-size: 3rem;
        margin-bottom: 15px;
        color: #000;
    }

    .digital-india-content h3 {
        font-size: 2rem;
        margin-bottom: 30px;
        color: #000;
    }

    .digital-india-content p {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto 30px;
        color: #333;
    }

    /* ===== Contact Section ===== */
    .contact {
        background-color: white;
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 30px;
    }

    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        background: var(--light);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    .contact-form {
        background: var(--light);
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        position: relative;
    }

    .contact-form:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 8px;
        background: var(--gradient);
    }

    .form-group {
        margin-bottom: 25px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--dark);
    }

    .form-control {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #ddd;
        border-radius: 12px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        transition: var(--transition);
    }

    .form-control:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
    }

    /* ===== Government Logos ===== */
    .govt-logos {
        background: var(--light);
        padding: 50px 0;
        border-top: 1px solid #e8eaed;
    }

    .logos-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 50px;
    }

    .govt-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-img {
        width: 120px;
        height: 120px;
        background: white;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .logo-img i {
        font-size: 3.5rem;
        color: var(--primary);
    }

    .govt-logo h4 {
        font-size: 1rem;
        color: var(--primary);
        margin-bottom: 5px;
    }

    /* ===== Footer ===== */
    footer {
        background: var(--dark);
        color: white;
        padding: 70px 0 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer-logo h3 {
        color: white;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .footer-logo p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 25px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        font-size: 18px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: var(--transition);
    }

    .social-links a:hover {
        background: var(--accent);
        transform: translateY(-5px);
    }

    .footer-links h4 {
        color: white;
        font-size: 1.3rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-links h4:after {
        content: '';
        position: absolute;
        width: 40px;
        height: 3px;
        background: var(--accent);
        bottom: 0;
        left: 0;
        border-radius: 3px;
    }

    .footer-links ul {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-links a:hover {
        color: var(--accent);
        padding-left: 5px;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .government-footer {
        background: #0d1b3e;
        padding: 30px 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        border-top: 2px solid var(--accent);
    }

    /* ===== Responsive Design ===== */
    @media (max-width: 1024px) {

        .hero-content,
        .about-content,
        .contact-content {
            grid-template-columns: 1fr;
            gap: 50px;
        }

        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .footer-content {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-features {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 768px) {
        .navbar {
            padding: 15px 0;
        }

        .nav-links {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: white;
            flex-direction: column;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
        }

        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-btn {
            display: block;
        }

        .hero {
            padding-top: 130px;
        }
        .hero-badge{
            margin-top: 50px;
        }

        .hero-text h1 {
            font-size: 2.5rem;
        }

        .section-title h2 {
            font-size: 2rem;
        }

        .services-grid {
            grid-template-columns: 1fr;
        }

        .digital-india-content h2 {
            font-size: 2.5rem;
        }

        .digital-india-content h3 {
            font-size: 1.8rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }
    }

    @media (max-width: 576px) {
        .hero-text h1 {
            font-size: 2rem;
        }

        .section-padding {
            padding: 60px 0;
        }

        .hero-card {
            transform: none;
        }

        .badges-container {
            gap: 25px;
        }

        .logos-container {
            gap: 30px;
        }
    }






    

/* Review Section */
.reviews {
    background: #f9f9f9;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #da1a4b;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.section-title p {
    color: #666;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Review Slider */
.review-slider {
    max-width: 800px;
    margin: 0 auto 50px;
}

.slider {
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.review {
    min-width: 100%;
    padding: 30px;
    box-sizing: border-box;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-header h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-tag {
    display: inline-block;
    background: rgba(218, 26, 75, 0.1);
    color: #da1a4b;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Slider Controls */
.slider-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.slider-buttons button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #da1a4b;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-buttons button:hover {
    background: #b3153d;
    transform: scale(1.05);
}

/* Dots Indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #da1a4b;
    transform: scale(1.2);
}

/* Review Stats */
.review-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #da1a4b;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .review {
        padding: 25px 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-stats {
        gap: 30px;
    }
    
    .stat-item {
        padding: 0 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .review-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .slider-buttons button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review p {
        font-size: 0.95rem;
    }
}
