  .hindi {
            font-family: 'Noto Sans Devanagari', 'Inter', sans-serif;
        }

        /* Indian Flag Animation */
        .flag-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .flag-strip {
            position: absolute;
            width: 40px;
            height: 300px;
            background: linear-gradient(to bottom, var(--saffron) 33%, white 33%, white 66%, var(--green) 66%);
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            opacity: 0.3;
        }

        /* Animated Ashoka Chakra */
        .chakra {
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid navy;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.2;
            z-index: -1;
        }

        .chakra::after {
            content: '☸';
            font-size: 30px;
            color: navy;
        }

        /* Political Element Animation */
        .political-element {
            position: absolute;
            font-size: 2rem;
            opacity: 0.1;
            z-index: -1;
            color: var(--saffron);
        }

        /* Hero Section - Political Focus */
        .political-hero {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            color: var(--white);
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            min-height: 60vh;
            text-align: center;
        }

        .political-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 800" opacity="0.05"><path d="M0,0V800H1200V0ZM200,400C200,533,333,600,400,600S600,533,600,400,467,200,400,200,200,267,200,400Z" fill="white"/></svg>');
            background-size: cover;
        }

        .political-hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
            z-index: 0;
        }

        .hero-content {
            max-width: 900px;
            position: relative;
            z-index: 2;
            margin: 0 auto;
            width: 100%;
        }

        .political-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.6rem;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            font-weight: 500;
        }

        .typing-container {
            display: inline-block;
            margin-bottom: 40px;
        }

        .typing-text {
            color: var(--orange);
            border-right: 3px solid var(--orange);
            padding-right: 5px;
            animation: blink 1s infinite;
            font-weight: 700;
            font-size: 2.2rem;
            text-shadow: 0 2px 5px rgba(253, 203, 84, 0.5);
        }

        @keyframes blink {
            0%, 100% { border-color: var(--orange); }
            50% { border-color: transparent; }
        }

        .hindi-highlight {
            color: var(--saffron);
            font-weight: 700;
            font-size: 2.5rem;
            text-shadow: 0 2px 8px rgba(255, 153, 51, 0.5);
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .btn-hero {
            padding: 16px 40px;
            font-size: 1.2rem;
            font-weight: 700;
            min-width: 220px;
        }

        /* Political Stats */
        .political-stats {
            background-color: var(--section-bg);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border-top: 4px solid var(--saffron);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(135deg, var(--saffron) 0%, var(--green) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 1.1rem;
            color: var(--text-color);
            font-weight: 600;
        }

        /* Why Digital Presence Section */
        .why-digital {
            background-color: var(--bg-color);
            position: relative;
            overflow: hidden;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .why-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 5px solid var(--saffron);
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--saffron) 0%, var(--orange) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 2rem;
            color: var(--dark-blue);
            box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
        }

        .why-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            z-index: 1;
            backdrop-filter: blur(10px);
            border: 2px solid transparent;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover {
               transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }


        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover .service-content {
            color: var(--white);
        }
        .service-card:hover .service-content h3,
        .service-card:hover .service-content p,
        .service-card:hover .service-content a {
        color: #ffffff !important;
      }
        

        .service-card:hover .service-icon {
            background-color: var(--orange);
            color: var(--dark-blue);
            transform: rotateY(180deg) scale(1.1);
        }

        .service-img {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .service-img::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 28, 79, 0.7), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover .service-img::after {
            opacity: 1;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px;
            transition: var(--transition);
            position: relative;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--blue);
            transition: var(--transition);
        }

        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }

        .service-content p {
            margin-bottom: 20px;
            color: inherit;
        }

        /* Why Choose Us Section */
        .why-choose {
            background-color: var(--section-bg);
            position: relative;
            overflow: hidden;
        }

        .benefits-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            background: var(--card-bg);
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-right: 4px solid var(--saffron);
        }

        .benefit-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .benefit-icon {
            width: 60px;
            height: 60px;
            min-width: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--saffron) 0%, #ff9d00 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5rem;
            color: var(--dark-blue);
            box-shadow: 0 4px 10px rgba(255, 153, 51, 0.3);
        }

        .benefit-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-blue);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--blue) 100%);
            color: var(--white);
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta::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 800" opacity="0.05"><path d="M0,0V800H1200V0ZM200,400C200,533,333,600,400,600S600,533,600,400,467,200,400,200,200,267,200,400Z" fill="white"/></svg>');
            background-size: cover;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        /* FAQ Section */
        .faq-section {
            background-color: var(--section-bg);
            position: relative;
            overflow: hidden;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--card-bg);
            border-left: 4px solid var(--saffron);
        }

        .faq-question {
            padding: 20px;
            background: var(--card-bg);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: var(--light-blue);
        }

        .faq-question i {
            transition: var(--transition);
            color: var(--saffron);
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            background-color: var(--card-bg);
        }

        .faq-item.active .faq-question {
            background-color: var(--light-blue);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .political-hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .hindi-highlight {
                font-size: 2rem;
            }
            
            .typing-text {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background-color: var(--card-bg);
                width: 100%;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                border-top: 2px solid var(--saffron);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .nav-actions {
                margin-left: auto;
                gap: 10px;
            }

            /* Hero Mobile Styles */
            .political-hero {
                padding: 140px 0 60px;
                min-height: 90vh;
            }

            .political-hero h1 {
                font-size: 2.2rem;
                line-height: 1.3;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                max-width: 90%;
            }

            .hindi-highlight {
                font-size: 1.8rem;
            }

            .typing-text {
                font-size: 1.5rem;
            }

            .hero-btns {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .hero-btns .btn {
                width: 100%;
                max-width: 300px;
                padding: 16px 24px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }

            .floating-btn {
                width: 60px;
                height: 60px;
                font-size: 1.6rem;
            }

            .chatbot-container {
                width: 95%;
                height: 85vh;
            }
        }

        @media (max-width: 576px) {
            .political-hero {
                padding: 120px 0 50px;
                min-height: 85vh;
            }

            .political-hero h1 {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .hindi-highlight {
                font-size: 1.5rem;
            }

            .typing-text {
                font-size: 1.3rem;
            }

            .btn {
                padding: 14px 24px;
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            section {
                padding: 60px 0;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 50px;
                margin-bottom: 10px;
            }

            .newsletter-form button {
                border-radius: 50px;
                padding: 12px;
            }

            .logo img {
                height: 60px;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }

            .stat-number {
                font-size: 2.5rem;
            }
          }