 /* Header CTA fix */
        .header-cta {
            background-color: var(--header-cta-bg);
            color: var(--header-cta-text) !important;
            opacity: 1;
            mix-blend-mode: normal;
        }
        
        /* ==========================================
           HERO SECTION
        =========================================== */
        .blog-hero {
            padding-top: 150px;
            padding-bottom: 100px;
            background: linear-gradient(135deg, rgba(7, 33, 124, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        
        .blog-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1551135049-8a33b2fb2f5f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.03;
            z-index: -1;
        }
        
        .blog-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-badge {
            display: inline-block;
            background: var(--gradient-blue);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 30px;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            animation-delay: 0.1s;
        }
        
        .blog-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            animation-delay: 0.2s;
        }
        
        .hero-static {
            display: block;
            margin-bottom: 5px;
        }
        
        .hero-dynamic {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            min-height: 60px;
            margin-top: 10px;
        }
        
        #typing-text {
            font-weight: 800;
            text-align: center;
        }
        
        .typing-cursor {
            display: inline-block;
            width: 3px;
            height: 50px;
            background-color: var(--blue);
            margin-left: 5px;
            animation: blink 1s infinite;
        }
        
        .blog-hero p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--gray-text);
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            animation-delay: 0.3s;
        }
        
        .hindi-line {
            font-size: 1.1rem;
            color: var(--royal-blue);
            margin-bottom: 30px;
            font-weight: 500;
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            animation-delay: 0.4s;
        }
        
        .hero-cta {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
            animation-delay: 0.5s;
        }
        
        /* ==========================================
           SEARCH & FILTER SECTION
        =========================================== */
        .search-section {
            padding: 40px 0;
            background-color: var(--section-bg);
            position: relative;
        }
        
        .search-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-bar {
            position: relative;
            width: 100%;
        }
        
        .search-input {
            width: 100%;
            padding: 18px 60px 18px 25px;
            border-radius: 50px;
            border: 2px solid var(--light-blue);
            background-color: var(--bg-color);
            color: var(--text-color);
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .search-input:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(7, 33, 124, 0.1);
        }
        
        .search-button {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--gradient-blue);
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search-button:hover {
            transform: translateY(-50%) scale(1.05);
        }
        
        /* SEARCH RESULTS DROPDOWN */
        .search-results-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-color);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            max-height: 400px;
            overflow-y: auto;
            z-index: 100;
            margin-top: 10px;
            display: none;
            border: 1px solid var(--light-blue);
        }
        
        .search-results-dropdown.active {
            display: block;
        }
        
        .search-result-item {
            padding: 15px 20px;
            border-bottom: 1px solid var(--light-blue);
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .search-result-item:hover {
            background-color: var(--light-blue);
        }
        
        .search-result-item:last-child {
            border-bottom: none;
        }
        
        .search-result-image {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .search-result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .search-result-content {
            flex: 1;
        }
        
        .search-result-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--text-color);
        }
        
        .search-result-content p {
            font-size: 0.9rem;
            color: var(--gray-text);
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .search-result-category {
            display: inline-block;
            background-color: var(--light-blue);
            color: var(--blue);
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-top: 5px;
        }
        
        .no-search-results {
            padding: 30px 20px;
            text-align: center;
            color: var(--gray-text);
        }
        
        .no-search-results i {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--light-blue);
        }
        
        .filter-section {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .filter-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-color);
        }
        
        .filter-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .filter-tab {
            padding: 10px 24px;
            border-radius: 50px;
            background-color: var(--bg-color);
            border: 2px solid var(--light-blue);
            color: var(--text-color);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-tab:hover,
        .filter-tab.active {
            background-color: var(--blue);
            color: white;
            border-color: var(--blue);
            transform: translateY(-2px);
        }
        
        .filter-results {
            text-align: center;
            color: var(--gray-text);
            font-size: 0.95rem;
        }
        
        /* ==========================================
           CATEGORY CAROUSEL
        =========================================== */
        .category-section {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray-text);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .category-carousel-wrapper {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .category-carousel {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .category-card {
            flex: 0 0 280px;
            margin-right: 30px;
            background-color: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--light-blue);
        }
        
        .category-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-blue);
            color: white;
            font-size: 2rem;
        }
        
        .category-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        
        .category-card p {
            color: var(--gray-text);
            font-size: 0.95rem;
        }
        
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--bg-color);
            border: 2px solid var(--light-blue);
            color: var(--text-color);
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-arrow:hover {
            background-color: var(--blue);
            color: white;
            border-color: var(--blue);
        }
        
        .category-prev {
            left: 0;
        }
        
        .category-next {
            right: 0;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--light-blue);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .dot.active {
            background-color: var(--blue);
            transform: scale(1.2);
        }
        
        /* ==========================================
           BLOGS GRID SECTION
        =========================================== */
        .blogs-section {
            background-color: var(--section-bg);
        }
        
        .blogs-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .blogs-header h2 {
            margin-bottom: 0;
        }
        
        .total-blogs {
            color: var(--gray-text);
            font-weight: 500;
        }
        
        .blogs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .blog-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .blog-image {
            height: 200px;
            overflow: hidden;
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-image img {
            transform: scale(1.05);
        }
        
        .blog-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .blog-date {
            color: var(--gray-text);
        }
        
        .blog-category {
            background-color: var(--light-blue);
            color: var(--blue);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.8rem;
        }
        
        .blog-content h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            line-height: 1.4;
            flex-grow: 1;
        }
        
        .blog-content p {
            color: var(--gray-text);
            font-size: 0.95rem;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .blog-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .blog-tag {
            background-color: rgba(7, 33, 124, 0.08);
            color: var(--blue);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .read-more {
            color: var(--blue);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            margin-top: auto;
        }
        
        .read-more:hover {
            gap: 12px;
        }
        
        .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
        }
        
        .no-results i {
            font-size: 3rem;
            color: var(--light-blue);
            margin-bottom: 20px;
        }
        
        .no-results h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        
        .no-results p {
            color: var(--gray-text);
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* ==========================================
           HINDI BLOGS SECTION
        =========================================== */
        .hindi-blogs {
            background-color: var(--bg-color);
        }
        
        .hindi-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .hindi-header h2 {
            margin-bottom: 0;
        }
        
        .hindi-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .hindi-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-left: 5px solid var(--blue);
        }
        
        .hindi-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .hindi-card .blog-content h3 {
            color: var(--dark-blue);
        }
        
        .hindi-indicator {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background-color: rgba(253, 203, 84, 0.1);
            color: #b45309;
            padding: 3px 10px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        /* ==========================================
           TRUST SECTION
        =========================================== */
        .trust-section {
            text-align: center;
        }
        
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .trust-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 30px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .trust-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .trust-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: var(--gradient-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
        }
        
        .trust-card h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .trust-card p {
            color: var(--gray-text);
            font-size: 0.95rem;
        }
        
        /* ==========================================
           BOTTOM CTA POPUP - FIXED RESPONSIVE
        =========================================== */
        .bottom-cta-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            width: 90%;
            max-width: 700px;
            background-color: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            padding: 20px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            transition: transform 0.5s ease, opacity 0.5s ease;
            border: 1px solid var(--light-blue);
            opacity: 0;
            visibility: hidden;
        }
        
        .bottom-cta-popup.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .cta-content {
            flex: 1;
            min-width: 0;
        }
        
        .cta-content p {
            margin-bottom: 5px;
            font-weight: 500;
            color: var(--text-color);
            font-size: 1rem;
            line-height: 1.4;
        }
        
        .hindi-cta-text {
            font-size: 0.95rem;
            color: var(--gray-text);
            margin-bottom: 8px;
            display: block;
        }
        
        .cta-buttons {
            flex-shrink: 0;
        }
        
        .cta-buttons .btn {
            white-space: nowrap;
            padding: 10px 24px;
            font-size: 0.95rem;
        }
        
        .cta-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--gray-text);
            cursor: pointer;
            transition: var(--transition);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-left: 10px;
        }
        
        .cta-close:hover {
            background-color: var(--light-blue);
            color: var(--text-color);
        }
        
        /* ==========================================
           ANIMATIONS
        =========================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* ==========================================
           RESPONSIVE STYLES
        =========================================== */
        @media (max-width: 992px) {
            .blog-hero h1 {
                font-size: 2.8rem;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                background-color: var(--bg-color);
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: left 0.3s ease;
                z-index: 999;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .hamburger.active .bar:nth-child(1) {
                transform: rotate(45deg) translate(6px, 6px);
            }
            
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active .bar:nth-child(3) {
                transform: rotate(-45deg) translate(6px, -6px);
            }
            
            .carousel-arrow {
                display: none;
            }
            
            .bottom-cta-popup {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 20px;
                max-width: 90%;
            }
            
            .cta-content {
                width: 100%;
            }
            
            .cta-buttons {
                width: 100%;
            }
            
            .cta-buttons .btn {
                width: 100%;
            }
            
            .cta-close {
                position: absolute;
                top: 10px;
                right: 10px;
                margin-left: 0;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .blog-hero {
                padding-top: 130px;
                padding-bottom: 80px;
            }
            
            .blog-hero h1 {
                font-size: 2.3rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .blogs-grid,
            .hindi-grid {
                grid-template-columns: 1fr;
            }
            
            .filter-tabs {
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
            
            .search-results-dropdown {
                max-height: 350px;
            }
            
            .search-result-item {
                padding: 12px 15px;
            }
            
            .search-result-image {
                width: 50px;
                height: 50px;
            }
            
            .search-result-content h4 {
                font-size: 0.95rem;
            }
            
            .search-result-content p {
                font-size: 0.85rem;
            }
            
            .bottom-cta-popup {
                bottom: 15px;
                padding: 18px 15px;
            }
            
            .cta-content p {
                font-size: 0.95rem;
            }
            
            .hindi-cta-text {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .blog-hero h1 {
                font-size: 2rem;
            }
            
            .trust-grid {
                grid-template-columns: 1fr;
            }
            
            .hindi-header {
                flex-direction: column;
                text-align: center;
            }
            
            .blogs-header {
                flex-direction: column;
                text-align: center;
            }
            
            .filter-tab {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            
            .search-input {
                padding: 16px 55px 16px 20px;
                font-size: 1rem;
            }
            
            .search-button {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .search-results-dropdown {
                max-height: 300px;
            }
            
            .search-result-item {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            
            .search-result-image {
                width: 100%;
                height: 120px;
            }
            
            .bottom-cta-popup {
                bottom: 10px;
                padding: 15px;
                gap: 10px;
            }
            
            .cta-content p {
                font-size: 0.9rem;
            }
            
            .hindi-cta-text {
                font-size: 0.85rem;
            }
            
            .cta-buttons .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 400px) {
            .bottom-cta-popup {
                flex-direction: column;
                text-align: center;
                padding: 15px;
            }
            
            .cta-content {
                margin-bottom: 10px;
            }
            
            .cta-buttons {
                width: 100%;
            }
            
            .cta-close {
                position: absolute;
                top: 10px;
                right: 10px;
            }
        }
        
        /* Prevent body scrolling when search results are open */
        body.search-results-open {
            overflow: hidden;
        }
