/* ===============================
           RESET & BASE STYLES
        =============================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
            transition: background-color 0.5s ease, color 0.5s ease;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
            color: var(--text-color);
            margin-bottom: 1.2rem;
            transition: color 0.5s ease;
        }
        
        p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color);
            opacity: 0.9;
            transition: color 0.5s ease;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul, ol {
            margin-bottom: 1.5rem;
            padding-left: 1.8rem;
        }
        
        li {
            margin-bottom: 0.6rem;
            font-size: 1.05rem;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 60px 0;
        }
        
        /* ===============================
           BUTTON STYLES
        =============================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            font-size: 1.05rem;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }
        
        .btn-primary {
            background-color: var(--cta-bg);
            color: var(--cta-text);
            box-shadow: 0 4px 20px rgba(11, 31, 68, 0.25);
        }
        
        .dark-theme .btn-primary {
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(11, 31, 68, 0.35);
            background-color: #0a1a3a;
        }
        
        .dark-theme .btn-primary:hover {
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
            background-color: #f0f0f0;
        }
        
        .btn-primary:active {
            transform: translateY(-1px);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--blue);
            border: 2px solid var(--blue);
        }
        
        .btn-outline:hover {
            background-color: var(--blue);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(7, 33, 124, 0.25);
        }
        
        .dark-theme .btn-outline:hover {
            color: var(--text-color);
        }
        
        .btn-small {
            padding: 12px 26px;
            font-size: 1rem;
        }
        
        /* ===============================
           ANIMATIONS & EFFECTS
        =============================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===============================
           THEME TOGGLE
        =============================== */
        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.3rem;
            color: var(--text-color);
            transition: var(--transition);
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: var(--light-blue);
        }
        
        .theme-toggle:hover {
            background-color: var(--blue);
            color: var(--white);
            transform: rotate(15deg);
        }
        
        .dark-theme .theme-toggle {
            color: var(--white);
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        
        /* ===============================
           BLOG HERO SECTION
        =============================== */
        .blog-hero {
            padding-top: 150px;
            padding-bottom: 100px;
            background-color: var(--bg-color);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: background-color 0.5s ease;
            position: relative;
        }
        
        .blog-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(to right, var(--orange), var(--blue));
            z-index: 1;
        }
        
        .dark-theme .blog-hero {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .blog-hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .blog-hero-content {
            animation: fadeInUp 0.8s ease 0.2s both;
        }
        
        .blog-hero-content h1 {
            font-size: 3.3rem;
            line-height: 1.1;
            margin-bottom: 1.8rem;
            background: linear-gradient(90deg, var(--dark-blue), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: -0.02em;
        }
        
        .blog-intro {
            font-size: 1.5rem;
            line-height: 1.5;
            color: var(--gray-text);
            margin-bottom: 1.8rem;
            font-weight: 500;
            transition: color 0.5s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .blog-meta {
            display: flex;
            gap: 25px;
            margin-bottom: 2.5rem;
            color: var(--gray-text);
            font-size: 1rem;
            flex-wrap: wrap;
            font-family: 'Inter', sans-serif;
        }
        
        .blog-meta i {
            margin-right: 8px;
            color: var(--orange);
        }
        
        .blog-hero-image {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 100%;
            min-height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            animation: fadeInUp 0.8s ease 0.4s both;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dark-theme .blog-hero-image {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .blog-hero-image:hover {
            transform: translateY(-8px) scale(1.02);
        }
        
        .blog-hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-hero-image:hover img {
            transform: scale(1.08);
        }
        
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 28, 79, 0.9), transparent);
            color: white;
            padding: 25px;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.5s ease;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .dark-theme .image-overlay {
            background: linear-gradient(to top, rgba(0, 28, 79, 0.95), transparent);
        }
        
        .blog-hero-image:hover .image-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* ===============================
           MAIN CONTENT LAYOUT
        =============================== */
        .blog-content-container {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 70px;
            padding: 60px 0;
            position: relative;
        }
        
        /* Main Content Column */
        .blog-main-content {
            max-width: 800px;
        }
        
        .blog-image {
            margin: 3.5rem 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dark-theme .blog-image {
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .blog-image:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .dark-theme .blog-image:hover {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }
        
        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-image:hover img {
            transform: scale(1.05);
        }
        
        .image-caption {
            font-style: italic;
            color: var(--gray-text);
            font-size: 1rem;
            text-align: center;
            padding: 18px;
            background-color: var(--light-blue);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .dark-theme .image-caption {
            background-color: rgba(255, 255, 255, 0.05);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .blog-section {
            margin-bottom: 4rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: border-color 0.5s ease;
        }
        
        .dark-theme .blog-section {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .blog-section:last-child {
            border-bottom: none;
        }
        
        .blog-section h2 {
            font-size: 2.6rem;
            margin-bottom: 2rem;
            color: var(--text-color);
            position: relative;
            padding-bottom: 18px;
            font-weight: 700;
        }
        
        .dark-theme .blog-section h2 {
            color: var(--white);
        }
        
        .blog-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 90px;
            height: 5px;
            background: linear-gradient(to right, var(--blue), var(--orange));
            border-radius: 3px;
        }
        
        .blog-section h3 {
            font-size: 1.9rem;
            margin: 3rem 0 1.5rem;
            color: var(--blue);
            position: relative;
            padding-left: 25px;
            font-weight: 700;
        }
        
        .dark-theme .blog-section h3 {
            color: var(--dark-blue);
        }
        
        .blog-section h3:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background-color: var(--orange);
            border-radius: 50%;
        }
        
        /* Content Box with Animation */
        .content-box {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 35px;
            margin: 2.5rem 0;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--orange);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dark-theme .content-box {
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .content-box:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-hover);
        }
        
        /* Sidebar */
        .blog-sidebar {
            position: sticky;
            top: 120px;
            height: fit-content;
        }
        
        .sidebar-widget {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 35px;
            margin-bottom: 35px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s ease;
        }
        
        .dark-theme .sidebar-widget {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .sidebar-widget:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .sidebar-widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.8rem;
            color: var(--text-color);
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-blue);
            position: relative;
            transition: color 0.5s ease;
            font-weight: 700;
        }
        
        .dark-theme .sidebar-widget h3 {
            color: var(--white);
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
        }
        
        .sidebar-widget h3:after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 70px;
            height: 3px;
            background-color: var(--orange);
        }
        
        .related-blog {
            display: flex;
            gap: 18px;
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .dark-theme .related-blog {
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .related-blog:hover {
            transform: translateX(8px);
        }
        
        .related-blog:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .related-blog-img {
            width: 90px;
            height: 90px;
            border-radius: 10px;
            overflow: hidden;
            flex-shrink: 0;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-text);
            transition: background-color 0.5s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dark-theme .related-blog-img {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .related-blog-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .related-blog-content h4 {
            font-size: 1.15rem;
            margin-bottom: 8px;
            line-height: 1.3;
            transition: color 0.3s ease;
            font-weight: 700;
        }
        
        .related-blog:hover .related-blog-content h4 {
            color: var(--blue);
        }
        
        .related-blog-content p {
            font-size: 0.95rem;
            color: var(--gray-text);
            margin-bottom: 0;
            font-family: 'Inter', sans-serif;
        }
        
        .cta-box {
            background: linear-gradient(135deg, var(--dark-blue), var(--blue));
            color: var(--white);
            text-align: center;
            border-left: none;
            animation: pulse 2.5s infinite;
            transition: background 0.5s ease;
            border: none;
        }
        
        .dark-theme .cta-box {
            background: linear-gradient(135deg, var(--royal-blue), var(--blue));
        }
        
        .cta-box h3,
        .cta-box p {
            color: var(--white);
        }
        
        .cta-box .btn {
            background-color: var(--white);
            color: var(--dark-blue);
            margin-top: 15px;
            font-weight: 700;
        }
        
        .cta-box .btn:hover {
            background-color: var(--orange);
            transform: translateY(-3px);
            color: var(--dark-blue);
        }
        
        /* ===============================
           RELATED BLOGS SECTION
        =============================== */
        .related-blogs-section {
            background-color: var(--section-bg);
            padding: 90px 0;
            position: relative;
            overflow: hidden;
            transition: background-color 0.5s ease;
        }
        
        .dark-theme .related-blogs-section {
            background-color: var(--section-bg);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: var(--text-color);
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
            font-weight: 800;
        }
        
        .dark-theme .section-title h2 {
            color: var(--white);
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(to right, var(--blue), var(--orange));
            border-radius: 3px;
        }
        
        .section-title p {
            color: var(--gray-text);
            font-size: 1.3rem;
            max-width: 750px;
            margin: 0 auto;
            font-family: 'Inter', sans-serif;
        }
        
        .related-blogs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }
        
        .blog-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .dark-theme .blog-card {
            box-shadow: var(--shadow);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .blog-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
        }
        
        .blog-card-img {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        
        .blog-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .blog-card:hover .blog-card-img img {
            transform: scale(1.12);
        }
        
        .blog-card-content {
            padding: 30px;
        }
        
        .blog-card-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            line-height: 1.3;
            transition: color 0.3s ease;
            font-weight: 700;
        }
        
        .blog-card:hover .blog-card-content h3 {
            color: var(--blue);
        }
        
        .blog-card-content p {
            font-size: 1.05rem;
            color: var(--gray-text);
            margin-bottom: 20px;
            font-family: 'Inter', sans-serif;
        }
        
        .blog-card-meta {
            font-size: 0.95rem;
            color: var(--gray-text);
            display: flex;
            justify-content: space-between;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 18px;
            transition: border-color 0.5s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .dark-theme .blog-card-meta {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        /* ===============================
           CTA SECTION
        =============================== */
        .cta {
            padding: 110px 0;
            text-align: center;
            background: linear-gradient(135deg, var(--dark-blue), var(--blue));
            color: var(--white);
            position: relative;
            overflow: hidden;
            transition: background 0.5s ease;
        }
        
        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="white"/></svg>');
            background-size: 100% 120px;
            background-position: bottom;
            opacity: 0.1;
        }
        
        .cta h2 {
            font-size: 3rem;
            margin-bottom: 1.8rem;
            color: var(--white);
            position: relative;
            font-weight: 800;
        }
        
        .cta p {
            font-size: 1.4rem;
            max-width: 750px;
            margin: 0 auto 3rem;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            font-family: 'Inter', sans-serif;
        }
        
        .cta .btn {
            background-color: var(--white);
            color: var(--dark-blue);
            font-size: 1.2rem;
            padding: 18px 45px;
            position: relative;
            animation: float 3.5s ease-in-out infinite;
            font-weight: 700;
        }
        
        .cta .btn:hover {
            background-color: var(--orange);
            animation: none;
            transform: translateY(-3px);
            color: var(--dark-blue);
        }
        
        /* ===============================
           FAQ SECTION
        =============================== */
        .faq-section {
            background-color: var(--section-bg);
            padding: 90px 0;
            transition: background-color 0.5s ease;
        }
        
        .dark-theme .faq-section {
            background-color: var(--section-bg);
        }
        
        .faq-container {
            max-width: 950px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: var(--card-bg);
            border-radius: 16px;
            margin-bottom: 18px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.5s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        
        .dark-theme .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 1.15rem;
            background-color: var(--card-bg);
            transition: background-color 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }
        
        .faq-question:hover {
            background-color: var(--light-blue);
        }
        
        .dark-theme .faq-question:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }
        
        .faq-question i {
            transition: var(--transition);
            color: var(--orange);
            font-size: 1.1rem;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 30px 30px;
            max-height: 500px;
        }
        
        .faq-answer p {
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
        }
        
        /* ===============================
           BOTTOM POPUP
        =============================== */
        .bottom-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: linear-gradient(135deg, var(--dark-blue), var(--blue));
            color: white;
            padding: 20px 25px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
            z-index: 1000;
            width: 90%;
            max-width: 500px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
        }
        
        .bottom-popup.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        
        .popup-content {
            flex: 1;
            font-family: 'Poppins', sans-serif;
        }
        
        .popup-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: white;
            font-weight: 700;
        }
        
        .popup-content p {
            font-size: 1rem;
            margin-bottom: 0;
            color: rgba(255, 255, 255, 0.9);
            font-family: 'Inter', sans-serif;
        }
        
        .popup-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .popup-btn {
            background-color: var(--orange);
            color: var(--dark-blue);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            white-space: nowrap;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
        }
        
        .popup-btn:hover {
            background-color: white;
            transform: translateY(-2px);
        }
        
        .popup-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.3rem;
            cursor: pointer;
            transition: color 0.3s ease;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .popup-close:hover {
            color: white;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        /* ===============================
           RESPONSIVE STYLES
        =============================== */
        @media (max-width: 1200px) {
            .container {
                max-width: 100%;
                padding: 0 30px;
            }
            
            .blog-hero-content h1 {
                font-size: 2.9rem;
            }
        }
        
        @media (max-width: 1024px) {
            .blog-hero-container {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            
            .blog-content-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .blog-sidebar {
                position: static;
                max-width: 750px;
                margin: 0 auto;
            }
            
            .related-blogs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 18px 0;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: -100%;
                flex-direction: column;
                background-color: var(--card-bg);
                width: 300px;
                height: 100vh;
                text-align: left;
                transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
                padding: 90px 35px 35px;
                z-index: 999;
                gap: 0;
                backdrop-filter: blur(10px);
            }
            
            .dark-theme .nav-menu {
                box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
                background-color: rgba(17, 24, 39, 0.98);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 18px 0;
            }
            
            .hamburger {
                display: flex;
            }
            
            .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);
            }
            
            .blog-hero {
                  padding: 120px 0 40px !important;
            }
            
            .blog-hero-content h1 {
                font-size: 2.5rem;
            }
            
            .blog-intro {
                font-size: 1.3rem;
            }
            
            .blog-meta {
                flex-direction: column;
                gap: 12px;
            }
            
            .blog-section h2 {
                font-size: 2.2rem;
            }
            
            .blog-section h3 {
                font-size: 1.7rem;
            }
            
            .section-title h2 {
                font-size: 2.4rem;
            }
            
            .related-blogs-grid {
                grid-template-columns: 1fr;
                max-width: 550px;
                margin: 0 auto;
            }
            
            .cta {
                padding: 80px 0;
            }
            
            .cta h2 {
                font-size: 2.4rem;
            }
            
            .cta p {
                font-size: 1.2rem;
            }
            
            .floating-cta {
                bottom: 25px;
                right: 25px;
            }
            
            .floating-btn {
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
            }
            
            .bottom-popup {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 20px;
                width: 95%;
            }
            
            .popup-actions {
                width: 100%;
                justify-content: center;
            }
            
            .container {
                padding: 0 25px;
            }
        }
        
        @media (max-width: 576px) {
            .blog-hero-content h1 {
                font-size: 2.1rem;
            }
            
            .blog-intro {
                font-size: 1.2rem;
            }
            
            .blog-section h2 {
                font-size: 2rem;
            }
            
            .blog-section h3 {
                font-size: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 2.1rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
            
            .cta h2 {
                font-size: 2.1rem;
            }
            
            .cta p {
                font-size: 1.1rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 18px;
                text-align: center;
            }
            
            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            section {
                padding: 60px 0;
            }
            
            .bottom-popup {
                bottom: 15px;
                padding: 18px;
            }
            
            .popup-content h4 {
                font-size: 1.1rem;
            }
            
            .popup-content p {
                font-size: 0.95rem;
            }
        }
        
        @media (max-width: 400px) {
            .blog-hero-content h1 {
                font-size: 1.8rem;
            }
            
            .container {
                padding: 0 18px;
            }
            
            .floating-btn span {
                display: none;
            }
            
            .blog-meta {
                font-size: 0.9rem;
            }
        }
        
        /* ===============================
           UTILITY CLASSES
        =============================== */
        .highlight {
            background: linear-gradient(120deg, var(--light-blue) 0%, var(--light-blue) 100%);
            background-repeat: no-repeat;
            background-size: 100% 45%;
            background-position: 0 90%;
            padding: 0 5px;
            font-weight: 700;
            color: var(--blue);
            font-family: 'Poppins', sans-serif;
        }
        
        .text-blue {
            color: var(--blue);
            font-weight: 700;
        }
        
        .text-center {
            text-align: center;
        }
        
        .mb-0 {
            margin-bottom: 0;
        }
        
        .mt-2 {
            margin-top: 2rem;
        }
        
        .mb-2 {
            margin-bottom: 2rem;
        }
        
        .mb-3 {
            margin-bottom: 3rem;
        }
        
        .mt-3 {
            margin-top: 3rem;
        }
        
        .hindi-text {
            font-family: 'Poppins', 'Inter', sans-serif;
            line-height: 1.8;
        }
        html[lang="hi"] .blog-hero-content h1 {
    font-family: 'Poppins', 'Inter', sans-serif !important;
    -webkit-text-fill-color: initial !important;
    background: none !important;
    color: var(--dark-blue);
    letter-spacing: 0;
    line-height: 1.25;
}
