        /* Reset and Base Styles */
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
        body { background-color: #f8f9fa; color: #333; line-height: 1.6; overflow-x: hidden; /* Prevent horizontal scroll */ }

        /* Color Variables */
        :root { --primary: #7209B7; --accent: #FF6B81; --highlight: #FFD700; --white: #FFFFFF; --dark: #333333; --background: #F3F4F6; }

        /* Navigation Styles (Unchanged) */
        nav {
            background-color: rgba(114, 9, 183, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
            padding: 1rem 5%; position: fixed; width: 100%; z-index: 1000; display: flex;
            justify-content: space-between; align-items: center; box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1); height: 70px;
        }
        .logo { color: var(--white); font-size: 1.5rem; font-weight: 700; text-decoration: none; display: flex; align-items: center; }
        .logo span { color: var(--accent); }
        .nav-logo-img { height: 30px; width: auto; vertical-align: middle; margin-right: 8px; }
        .nav-links { display: flex; list-style: none; }
        .nav-links.mobile-nav-active {
             display: flex; flex-direction: column; position: absolute; top: 100%;
             left: 0; width: 100%; background-color: rgba(114, 9, 183, 0.98);
             padding: 1.5rem 0; text-align: center;
             box-shadow: 0 5px 10px rgba(0,0,0,0.2); z-index: 999;
        }
        .nav-links li { margin-left: 2rem; }
        .nav-links.mobile-nav-active li { margin: 0.75rem 0; margin-left: 0; }
        .nav-links a { color: var(--white); text-decoration: none; font-weight: 500; transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease; display: inline-block; padding: 0.4rem 0.8rem; border-radius: 6px; }
        .nav-links a:hover, .nav-links a.nav-active { color: var(--highlight); } /* Highlight active link */
        .nav-links.mobile-nav-active li a { /* Base style */ }
        .nav-links.mobile-nav-active li a.mobile-nav-link-active,
        .nav-links.mobile-nav-active li a.nav-active { /* Highlight active link in mobile */
            color: var(--highlight); background-color: rgba(255, 255, 255, 0.15);
        }
        .nav-links.mobile-nav-active li a:not(.mobile-nav-link-active):not(.nav-active):hover {
            color: var(--highlight); background-color: rgba(255, 255, 255, 0.08);
        }
        .mobile-menu { display: none; font-size: 1.5rem; color: var(--white); cursor: pointer; background: none; border: none; padding: 0.5rem; }

        /* Blog Header Section (Unchanged) */
        .blog-header {
            padding: 150px 5% 80px; /* More top padding to account for fixed nav */
            background: linear-gradient(135deg, var(--primary) 0%, #5f0a87 100%);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .blog-header::before { /* Subtle background pattern */
             content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
             background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
                         radial-gradient(circle at 90% 80%, rgba(255, 107, 129, 0.1) 0%, transparent 50%);
             z-index: -1;
        }
        .blog-header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .blog-header p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Section Title (Base Style - color will be overridden below) */
        .section-title {
            text-align: center; margin-bottom: 4rem; font-size: 3rem;
            position: relative; font-weight: 800; z-index: 1;
        }
        .section-title::after {
            content: ''; display: block; width: 120px; height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent)); /* Default underline */
            margin: 1.2rem auto 0; border-radius: 5px;
            box-shadow: 0 3px 10px rgba(114, 9, 183, 0.2);
        }
         /* Base data-text style */
        .section-title::before {
            content: attr(data-text); position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
            font-size: 5rem; /* Default color set per section */
            font-weight: 900; white-space: nowrap; z-index: -1;
        }


        /* --- MODIFIED: Blog Index Section --- */
        .blog-index-section {
            padding: 7rem 5%; /* Consistent padding with other gradient sections */
            /* background-color: var(--background); Light background REMOVED */
            /* ADDED Gradient Background - similar to .why-section */
            background: linear-gradient(to bottom, #7209B7 0%, #ff1493 10%, #ff1493 90%, #7209B7 100%);
            position: relative; /* Needed for pseudo-elements */
            overflow: hidden; /* Contain pseudo-elements */
            color: var(--white); /* Default text color for the section */
        }
        /* Optional: Add decorative pseudo-elements like .why-section */
        .blog-index-section::before, .blog-index-section::after {
            content: ''; position: absolute; border-radius: 50%; z-index: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            pointer-events: none; /* Prevent interference */
        }
        .blog-index-section::before { top: -100px; left: -100px; width: 250px; height: 250px; }
        .blog-index-section::after { bottom: -120px; right: -120px; width: 300px; height: 300px; }

        /* MODIFIED: Section Title for Blog Index Section */
        .blog-index-section .section-title {
             color: var(--white); /* White text on gradient background */
        }
        .blog-index-section .section-title::after {
             /* Use a brighter gradient for the underline on dark bg */
             background: linear-gradient(90deg, var(--highlight), var(--accent));
             box-shadow: 0 3px 10px rgba(255, 107, 129, 0.3);
        }
        .blog-index-section .section-title::before {
            color: rgba(255, 255, 255, 0.05); /* Light transparent text for data-text */
        }


        .blog-index-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative; /* Ensure content is above pseudo-elements */
            z-index: 1;
        }

        /* Blog Grid (Unchanged) */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
            gap: 2.5rem; /* Spacing between cards */
        }

        /* --- MODIFIED: Blog Card --- */
        .blog-card {
            background-color: var(--white);
            border-radius: 15px;
            /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); Original Shadow */
            /* ADDED enhanced base shadow and transition */
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            /* transition: transform 0.3s ease, box-shadow 0.3s ease; Original Transition */
             /* ADDED smoother transition properties */
            transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-decoration: none;
            color: var(--dark); /* Content color set back to dark */
            height: 100%;
            will-change: transform, box-shadow; /* Performance hint for animation */
            transform: scale(1); /* Explicit base scale */
        }
        /* ADDED Hover effect similar to feature-card */
        .blog-card:hover {
            transform: scale(1.04) translateY(-6px); /* Slightly less aggressive scale than feature card */
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        .blog-card-thumbnail {
            width: 100%;
            height: 200px; /* Fixed height for consistency */
            object-fit: cover; /* Crop image nicely */
            display: block;
            border-bottom: 1px solid #eee; /* Subtle separator */
        }
        .blog-card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .blog-card-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--dark); /* Ensure title is dark */
            line-height: 1.3;
        }
        .blog-card-title a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        .blog-card-title a:hover {
            color: var(--primary);
        }
        .blog-card-meta {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 1rem;
            display: flex;
            gap: 1rem;
        }
        .blog-card-meta span { display: inline-flex; align-items: center; }
        .blog-card-meta i { margin-right: 0.4rem; color: var(--accent); }
        .blog-card-summary {
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            flex-grow: 1;
            color: #495057; /* Ensure summary text is readable */
        }
        .blog-card-readmore {
            display: inline-block;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            margin-top: auto;
            transition: color 0.3s ease;
            align-self: flex-start;
        }
        .blog-card-readmore:hover {
            color: var(--accent);
            text-decoration: underline;
        }
        .blog-card-readmore i {
            margin-left: 0.3rem;
            transition: transform 0.3s ease;
        }
        .blog-card-readmore:hover i { transform: translateX(3px); }

        /* Footer (Unchanged) */
        footer { background-color: var(--dark); color: var(--white); padding: 3rem 5%; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; max-width: 1200px; margin: 0 auto;}
        .footer-logo { flex: 1 1 300px; } .footer-logo h2 { color: var(--white); margin-bottom: 1rem; font-size: 1.8rem; } .footer-logo span { color: var(--accent); } .footer-logo p { margin-bottom: 1.5rem; line-height: 1.7; opacity: 0.8; } .social-icons { display: flex; gap: 1rem; margin-top: 1.5rem; } .social-icons a { color: var(--white); font-size: 1.5rem; transition: color 0.3s ease, transform 0.3s ease; text-decoration: none; display: inline-block; } .social-icons a:hover { color: var(--accent); text-decoration: none; transform: scale(1.1) translateY(-2px); }
        .footer-links { flex: 1 1 180px; } .footer-links h3 { margin-bottom: 1rem; color: var(--accent); font-size: 1.2rem; } .footer-links ul { list-style: none; padding-left: 0; } .footer-links li { margin-bottom: 0.7rem; display: flex; align-items: center; }
        .footer-links a { color: var(--white); text-decoration: none; transition: color 0.3s ease; }
        .footer-links a:hover { color: var(--highlight); text-decoration: none; } .footer-links i { margin-right: 0.8rem; color: var(--highlight); width: 1.2em; text-align: center; flex-shrink: 0; }
        .copyright { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; opacity: 0.7; }

        /* Chat Banner (Unchanged)
        .chat-banner { position: fixed; bottom: 1.5rem; right: 1.5rem; background-color: var(--accent); color: var(--white); padding: 0.8rem 1.2rem; border-radius: 50px; cursor: pointer; box-shadow: 0 5px 15px rgba(255, 107, 129, 0.4); z-index: 999; display: flex; align-items: center; transition: transform 0.3s ease, box-shadow 0.3s ease; }
        .chat-banner:hover { transform: translateY(-5px) scale(1.03); box-shadow: 0 8px 20px rgba(255, 107, 129, 0.5); }
        .chat-banner span { margin-left: 0.5rem; font-weight: 600; font-size: 0.9rem; }
        .chat-banner i { font-size: 1.1rem; } */
        /* Font awesome base */
        .fa, .fas, .fab { display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; }

        /* Animation for scroll reveal (Unchanged) */
        .reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
        .reveal-on-scroll.active { opacity: 1; transform: translateY(0); }


        /* Responsive Styles (Unchanged structure, but affects new styles too) */
        @media (max-width: 768px) {
            nav { height: 60px; padding: 0.5rem 5%;}
            .nav-links { display: none; }
            .mobile-menu { display: inline-flex; }
            .nav-logo-img { height: 25px; }

            /* Blog Header Responsive */
            .blog-header { padding: 120px 5% 60px; }
            .blog-header h1 { font-size: 2.2rem; }
            .blog-header p { font-size: 1rem; }

             /* Section Title Responsive */
            .section-title { font-size: 2rem; margin-bottom: 3rem; }
            .section-title::before { font-size: 3.5rem; top: -20px;} /* For data-text */
            .section-title::after { width: 100px; height: 4px; margin-top: 1rem;}

            /* Blog Index Section Responsive */
            .blog-index-section { padding: 4rem 5%; } /* Reduced padding */
            .blog-grid { grid-template-columns: 1fr; /* Stack cards */ gap: 2rem; }
            .blog-card-thumbnail { height: 180px; }
            .blog-card-title { font-size: 1.2rem; }
            .blog-card-summary { font-size: 0.9rem; }
            /* Hover effect might be less noticeable or desired on touch */
             .blog-card:hover {
                 transform: scale(1.02) translateY(-4px); /* Slightly subtler hover on mobile */
                 box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12), 0 6px 10px rgba(0, 0, 0, 0.09);
            }


            /* Footer Responsive (Unchanged) */
            .footer-content { flex-direction: column; text-align: center; gap: 1.5rem; }
            .footer-logo, .footer-links { min-width: 100%; margin-bottom: 1rem; flex-basis: auto; }
            .social-icons { justify-content: center; }
            .footer-links ul { text-align: center; } .footer-links li { justify-content: center; } .footer-links i { margin-right: 0.5rem; }
        }