.logo-wrapper {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 10000;
}

.logo-link {
  display: inline-block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 64, 129, 0.15) 0%, transparent 70%);
  padding: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img {
  width: 70px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 64, 129, 0.6);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.logo-link:hover .logo-img {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 0 0 25px rgba(255, 64, 129, 1);
}

/* Global Styles */
:root {
    --primary-color: #ff4081; /* Vibrant Pink */
    --primary-dark: #f50057;  /* Darker Pink */
    --primary-light: #ff80ab; /* Lighter Pink for glows/highlights */
    
    --background-color: #121212; /* Very Dark Gray - Main Background */
    --surface-color: #1e1e1e;   /* Slightly Lighter Dark - Cards, Headers */
    --surface-highlight: #2a2a2a; /* Even lighter for subtle depth */

    --text-color: #e0e0e0;       /* Light Gray - Main Text */
    --text-color-secondary: #b0b0b0; /* Medium Gray - Subdued Text */
    --text-color-muted: #757575;    /* Darker Gray - Meta Text, Placeholders */

    --border-color: #333333;      /* Subtle Border Color */
    --success-color: #4caf50;
    --error-color: #f44336;

    --box-shadow-light: 0 5px 15px rgba(var(--primary-rgb, 248 31 143) / 0.1); /* Pinkish glow */
    --box-shadow-medium: 0 8px 25px rgba(var(--primary-rgb, 248 31 143) / 0.15);
    --box-shadow-inset: inset 0 2px 4px rgba(0,0,0,0.2);
    
    --transition-short: all 0.2s ease-in-out;
    --transition-medium: all 0.3s ease-in-out;
    --transition-long: all 0.5s ease;

    /* For dynamic alpha on primary color if needed, e.g., for glows */
    --primary-rgb: 255, 64, 129; /* RGB values of --primary-color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Ensures smooth scroll for # links */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--background-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-short);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-underline-offset: 4px;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes bottom space */
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--background-color); /* Text color on button for contrast */
    padding: 12px 28px;
    border-radius: 50px; /* Pill shape */
    font-weight: 600; /* Bolder */
    transition: var(--transition-medium);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.3), var(--box-shadow-inset);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transition: var(--transition-medium);
    z-index: -1;
}

.btn:hover {
    color: #ffffff; /* Ensuring text is white on hover */
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4), var(--box-shadow-inset);
}

.btn:hover::before {
    left: 0;
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3), var(--box-shadow-inset);
}

.section-title {
    font-size: 2.5rem; /* Increased size */
    margin-bottom: 40px; /* Increased margin */
    text-align: center;
    color: var(--primary-light); /* Lighter pink for titles */
    position: relative;
    padding-bottom: 20px; /* Increased padding */
    font-weight: 700; /* Bolder titles */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px; /* Longer underline */
    height: 4px; /* Thicker underline */
    background-image: linear-gradient(to right, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    animation: drawLine 1s ease-out forwards; /* Animation for underline */
}

@keyframes drawLine {
    from { width: 0; }
    to { width: 100px; }
}

/* Header Styles */
.header {
    background-color: rgba(30, 30, 30, 0.85); /* Semi-transparent dark surface */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header.scrolled { /* Add this class with JS on scroll for a smaller header */
    padding: 10px 0;
    background-color: var(--surface-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 145px; /* Slightly larger logo */
    transition: var(--transition-short);
}
.logo img:hover {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 35px; /* Increased spacing */
}

.nav ul li a {
    color: var(--text-color-secondary); /* Subdued nav link color */
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.3px;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-medium);
    border-radius: 1px;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--primary-light); /* Bright pink for hover/active */
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    font-size: 1.8rem; /* Larger icon */
    color: var(--primary-light);
    cursor: pointer;
    display: none;
    transition: transform 0.3s ease;
}
.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)), url('../images/hero-bg.jpg'); /* Darker overlay */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    height: 85vh; /* Slightly taller */
    display: flex;
    align-items: center;
    justify-content: center; /* Ensure content is centered */
    text-align: center;
    color: var(--secondary-color); /* Assuming secondary is light for this context */
    margin-top: 70px; /* Adjust based on header height */
    padding: 0 15px; /* Padding for smaller screens */
}

.hero h1 {
    font-size: 3.5rem; /* Larger font */
    margin-bottom: 25px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem; /* Larger font */
    margin-bottom: 35px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.3s;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s;
    padding: 15px 35px; /* Larger hero button */
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Search Section */
.search-section {
    padding: 40px 0; /* Increased padding */
    background-color: var(--surface-highlight); /* Slightly lighter dark */
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 18px 25px; /* Increased padding */
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-size: 1.1rem; /* Larger font */
    padding-right: 60px; /* Space for button */
    background-color: var(--surface-color);
    color: var(--text-color);
    transition: var(--transition-medium);
}

.search-container input::placeholder {
    color: var(--text-color-muted);
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    background-color: var(--background-color); /* Darken on focus */
}

.search-container button {
    position: absolute;
    right: 8px; /* Adjusted position */
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.4rem; /* Larger icon */
    cursor: pointer;
    padding: 12px 18px; /* Increased padding */
    transition: var(--transition-short);
}

.search-container button:hover {
    color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1); /* Slight scale on hover */
}

/* Blog Posts Section */
.blog-posts {
    padding: 80px 0;
    background-color: var(--background-color); /* Ensure it's main dark */
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); /* Slightly larger minmax */
    gap: 40px; /* Increased gap */
}

.post-card {
    background-color: var(--surface-color);
    border-radius: 15px; /* More rounded */
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Softer shadow for dark theme */
    transition: var(--transition-medium);
    border: 1px solid var(--border-color); /* Subtle border */
}

.post-card:hover {
    transform: translateY(-12px) scale(1.02); /* More pronounced hover */
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15); /* Pink glow on hover */
    border-color: var(--primary-color);
}

.post-image {
    height: 220px; /* Increased height */
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease, filter 0.5s ease; /* Added filter transition */
}

.post-card:hover .post-image img {
    transform: scale(1.1); /* More zoom */
    filter: brightness(1.1); /* Slight brightness increase */
}

.post-content {
    padding: 25px; /* Increased padding */
}

.post-content h3 {
    font-size: 1.5rem; /* Larger title */
    margin-bottom: 15px;
    color: var(--primary-light); /* Pink for post titles */
    line-height: 1.4;
}
.post-content h3 a { /* If titles are links */
    color: inherit;
}
.post-content h3 a:hover {
    color: var(--primary-color);
}


.post-meta {
    color: var(--text-color-muted); /* Muted color for meta */
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.post-meta span { /* If using spans for date/author */
    margin-right: 15px;
}
.post-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.post-content p {
    margin-bottom: 25px;
    color: var(--text-color-secondary); /* Secondary text for excerpt */
    font-size: 0.95rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600; /* Bolder */
    color: var(--primary-color);
    font-size: 0.95rem;
}

.read-more i {
    margin-left: 8px; /* Increased margin */
    transition: var(--transition-medium);
}

.read-more:hover {
    color: var(--primary-dark);
    text-decoration: none; /* Remove underline if not desired */
}
.read-more:hover i {
    transform: translateX(8px); /* More movement */
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0; /* Increased padding */
    background-color: var(--surface-highlight); /* Consistent dark surface */
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
    font-size: 2.2rem; /* Larger title */
    color: var(--primary-light);
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: var(--text-color-secondary);
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 550px; /* Slightly wider */
    margin: 0 auto;
    display: flex;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 30px;
    overflow: hidden; /* To contain children's border-radius */
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px; /* Increased padding */
    border: 1px solid var(--border-color);
    border-right: none; /* Remove right border as button is attached */
    border-radius: 30px 0 0 30px;
    font-size: 1rem;
    background-color: var(--surface-color);
    color: var(--text-color);
    transition: var(--transition-medium);
}
.newsletter-form input::placeholder {
    color: var(--text-color-muted);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--background-color);
    box-shadow: inset 0 0 10px rgba(var(--primary-rgb), 0.1);
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 18px 30px; /* Increased padding */
    font-size: 1rem;
    /* Uses .btn styles by default, no need to repeat if .btn class is applied */
}

/* Footer Styles */
.footer {
    background-color: #0a0a0a; /* Even darker for footer */
    color: var(--text-color-secondary);
    padding: 70px 0 30px; /* Increased padding */
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px; /* Increased gap */
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 1.5rem; /* Larger title */
    margin-bottom: 25px;
    color: var(--primary-light); /* Pink for footer titles */
    position: relative;
    padding-bottom: 10px;
}
.footer-section h3::after { /* Subtle underline for footer titles */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}


.footer-section p {
    margin-bottom: 20px;
    color: var(--text-color-muted); /* Muted color for footer text */
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 12px; /* Increased spacing */
}

.footer-section ul li a {
    color: var(--text-color-secondary);
    transition: var(--transition-short);
    position: relative;
    padding-left: 0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px; /* Indent on hover */
    text-decoration: none;
}
.footer-section ul li a:hover::before { /* Add a small icon/bullet on hover */
    content: '\f105'; /* FontAwesome angle right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -5px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px; /* Increased gap */
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px; /* Larger icons */
    height: 45px;
    background-color: var(--surface-highlight); /* Consistent dark surface */
    border-radius: 50%;
    color: var(--primary-light); /* Pink icons */
    font-size: 1.2rem;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--background-color); /* Dark icon on pink bg */
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 10px rgba(var(--primary-rgb), 0.3);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 30px; /* Increased padding */
    border-top: 1px solid var(--border-color); /* Consistent border */
    color: var(--text-color-muted);
    font-size: 0.9rem;
}
.copyright p {
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Standard WhatsApp Green */
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; /* Larger icon */
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4); /* Green shadow */
    z-index: 999;
    transition: var(--transition-medium);
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg); /* More engaging hover */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: #ffffff; /* Ensure color remains white */
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px; /* Adjusted position to avoid overlap with WhatsApp */
    right: 30px;
    background-color: var(--primary-color);
    color: var(--background-color); /* Dark icon on pink bg */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* Larger icon */
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
    z-index: 998;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium), transform 0.2s ease; /* Added transform */
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.4);
}
.back-to-top:active {
    transform: translateY(-2px) scale(1.05);
}

/* Page Hero (for about and contact) */
.page-hero {
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.85)), url('../images/hero-bg.jpg'); /* Consistent overlay */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax */
    height: 40vh; /* Adjusted height for sub-pages */
    min-height: 300px;
    display: flex;
    flex-direction: column; /* Stack title and p */
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff; /* White text on dark bg */
    margin-top: 70px; /* Adjust based on header height */
    padding: 0 15px;
}

.page-hero h1 {
    font-size: 3rem; /* Larger title */
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}
.page-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
    animation: fadeInUp 1s ease-out 0.3s;
}


/* About Page Styles */
.about-content {
    padding: 80px 0;
    background-color: var(--background-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px; /* Increased gap */
    align-items: center;
}

.about-text h2 {
    font-size: 2rem; /* Larger title */
    margin-bottom: 25px;
    color: var(--primary-light);
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color-secondary);
}

.about-text ul {
    margin-bottom: 30px;
    padding-left: 0; /* Remove default padding */
}

.about-text ul li {
    margin-bottom: 15px; /* Increased spacing */
    position: relative;
    padding-left: 35px; /* Space for icon */
    font-size: 1.05rem; /* Slightly larger list item text */
    color: var(--text-color);
}

.about-text ul li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px; /* Adjust vertical alignment */
    color: var(--primary-color);
    font-size: 1.2rem; /* Larger icon */
    background-color: rgba(var(--primary-rgb), 0.1); /* Subtle background for icon */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-image {
    overflow: hidden;  
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.about-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 80px 0; /* Increased padding */
    background-color: var(--surface-highlight);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 2.2rem; /* Larger title */
    color: var(--primary-light);
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: var(--text-color-secondary);
    font-size: 1.1rem;
}
.cta-section .btn {
    padding: 15px 40px; /* Larger CTA button */
    font-size: 1.1rem;
}


/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background-color: var(--background-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Adjusted ratio for form */
    gap: 60px; /* Increased gap */
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem; /* Larger titles */
    margin-bottom: 35px; /* Increased margin */
    color: var(--primary-light);
    font-weight: 600;
}

.info-item {
    margin-bottom: 35px; /* Increased margin */
    display: flex;
    align-items: flex-start; /* Align icon to top */
}

.info-item i {
    font-size: 1.8rem; /* Larger icon */
    color: var(--primary-color);
    margin-right: 25px; /* Increased margin */
    margin-top: 0; /* Align with text */
    width: 40px; /* Fixed width for icon alignment */
    text-align: center;
}

.info-item div h3 { /* Wrap text in a div for better layout */
    font-size: 1.3rem; /* Larger title */
    margin-bottom: 8px;
    color: var(--text-color);
}

.info-item div p,
.info-item div a {
    color: var(--text-color-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.info-item div a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-group {
    margin-bottom: 25px; /* Increased margin */
}

.form-group label {
    display: block;
    margin-bottom: 10px; /* Increased margin */
    font-weight: 500;
    color: var(--text-color-secondary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px; /* Increased padding */
    border: 1px solid var(--border-color);
    border-radius: 8px; /* Softer radius */
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: var(--surface-color);
    color: var(--text-color);
    transition: var(--transition-medium);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-color-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px; /* Increased min-height */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--background-color); /* Darken on focus */
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.contact-form .btn { /* Specific styling if needed, else general .btn applies */
    width: 100%; /* Full width submit button */
    padding: 15px;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px; /* Reduced top margin if it's part of contact page */
    padding: 60px 0;
    background-color: var(--surface-highlight); /* Consistent bg for sections */
}

.faq-section .section-title { /* Overriding global for local context if needed */
     margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px; /* Softer radius */
    overflow: hidden;
    background-color: var(--surface-color);
    transition: var(--transition-short);
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-item:hover {
    border-color: var(--primary-light);
}


.faq-question {
    width: 100%;
    padding: 20px 25px; /* Increased padding */
    background-color: transparent; /* Inherit from faq-item */
    border: none;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem; /* Larger font */
    font-weight: 600; /* Bolder */
    color: var(--primary-light); /* Pink for questions */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(var(--primary-rgb), 0.05); /* Subtle pink tint on hover */
}

.faq-question i {
    transition: transform 0.3s ease; /* Smoother icon rotation */
    font-size: 1rem; /* Adjust icon size */
    color: var(--primary-color);
}

.faq-question.active i {
    transform: rotate(180deg);
}
.faq-question.active {
    background-color: rgba(var(--primary-rgb), 0.1); /* Slightly more pronounced active state */
}

.faq-answer {
    padding: 0 25px; /* Consistent padding */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.4s ease; /* Smoother opening */
    background-color: var(--background-color); /* Slightly darker for answer bg */
}

.faq-answer p {
    padding: 25px 0; /* Vertical padding for content */
    color: var(--text-color-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Blog Post Template Styles */
.post-container { /* Assuming this is for single blog post page */
    padding: 80px 0;
    margin-top: 70px; /* Adjust for header */
    background-color: var(--background-color);
}

.post-container .container { /* This class might be global, ensure specificity if needed */
    display: grid;
    grid-template-columns: 1fr; /* Default to 1 column */
    gap: 50px;
}

.post-container .post-image {
    height: auto;
}
/* If sidebar is present for single post */
.post-container .container.has-sidebar {
    grid-template-columns: 3fr 1fr; /* Example ratio: main content and sidebar */
}


.post-header { /* Inside main article area */
    margin-bottom: 40px;
    text-align: left; /* Or center if preferred for single post title */
}

.post-meta { /* Re-styling for single post, potentially different from card meta */
    color: var(--text-color-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px; /* Spacing for meta items */
}
.post-meta span i {
    margin-right: 8px;
    color: var(--primary-color);
}


.post-title { /* For single post page */
    font-size: 2.8rem; /* Large title for single post */
    margin-bottom: 25px;
    color: var(--primary-light);
    font-weight: 700;
    line-height: 1.3;
}

.post-image { /* For single post featured image */
    margin-bottom: 40px;
    border-radius: 15px; /* Consistent rounding */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.post-image img { /* Ensure it's not nested if .post-image itself is the container */
    width: 100%;
    height: auto;
    display: block;
}

.post-body {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.1rem; /* Slightly larger base font for readability */
}

.post-body h2, .post-body h3, .post-body h4 {
    margin: 40px 0 20px;
    color: var(--primary-light);
    font-weight: 600;
    line-height: 1.4;
}

.post-body h2 { font-size: 2rem; }
.post-body h3 { font-size: 1.7rem; }
.post-body h4 { font-size: 1.4rem; }

.post-body p {
    margin-bottom: 25px;
}
.post-body ul, .post-body ol {
    margin-bottom: 25px;
    padding-left: 30px;
}
.post-body ul li, .post-body ol li {
    margin-bottom: 10px;
}
.post-body ul li::marker {
    color: var(--primary-color);
}
.post-body blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid var(--primary-color);
    background-color: var(--surface-color);
    color: var(--text-color-secondary);
    font-style: italic;
}
.post-body a { /* Links within post body */
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--primary-light);
    text-underline-offset: 3px;
}
.post-body a:hover {
    color: var(--primary-dark);
    text-decoration-color: var(--primary-dark);
}

.post-tags {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Increased gap */
}

.tag {
    background-color: var(--surface-highlight);
    padding: 8px 18px; /* Increased padding */
    border-radius: 20px; /* Pill shape */
    font-size: 0.9rem;
    color: var(--primary-light); /* Pink text for tags */
    border: 1px solid var(--primary-color);
    transition: var(--transition-short);
    font-weight: 500;
}

.tag:hover {
    background-color: var(--primary-color);
    color: var(--background-color); /* Dark text on pink bg */
    border-color: var(--primary-dark);
    transform: scale(1.05);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px; /* Increased margin */
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    gap: 20px; /* Gap for responsiveness */
}

.prev-post,
.next-post,
.back-home {
    display: inline-flex;
    align-items: center;
    color: var(--text-color-secondary);
    font-weight: 500;
    transition: var(--transition-medium);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid transparent; /* For hover effect */
}

.prev-post i { margin-right: 10px; }
.next-post i { margin-left: 10px; }

.prev-post:hover,
.next-post:hover,
.back-home:hover {
    color: var(--primary-color);
    background-color: var(--surface-color);
    border-color: var(--primary-color);
    text-decoration: none;
}
.prev-post:hover i, .next-post:hover i {
    color: var(--primary-dark);
}


.back-home { /* Can make it more prominent if desired */
    background-color: var(--surface-highlight);
}


/* Sidebar Styles */
.sidebar { /* Container for all sidebar widgets */
    padding-top: 10px; /* Align with post content if header is tall */
}
.sidebar-widget {
    margin-bottom: 40px;
    background-color: var(--surface-color);
    padding: 25px; /* Increased padding */
    border-radius: 10px; /* Softer radius */
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    font-size: 1.5rem; /* Larger title */
    margin-bottom: 25px;
    color: var(--primary-light);
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px; /* Consistent underline */
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

/* Popular Posts Widget */
.popular-posts li {
    margin-bottom: 20px; /* Increased spacing */
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-color); /* Softer dashed border */
}

.popular-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.popular-posts a {
    color: var(--text-color);
    transition: var(--transition-short);
    display: block; /* Make entire area clickable */
    font-weight: 500;
    line-height: 1.5;
}

.popular-posts a:hover {
    color: var(--primary-color);
    padding-left: 8px; /* Indent on hover */
    text-decoration: none;
}
.popular-posts a .post-date { /* Example for date under popular post title */
    display: block;
    font-size: 0.8rem;
    color: var(--text-color-muted);
    margin-top: 5px;
}

/* Categories/Tags Widget */
.category-list li, .tag-cloud a {
    display: inline-block; /* For tag cloud like appearance */
    margin-bottom: 10px;
    margin-right: 10px;
}
.category-list li a, .tag-cloud a {
    color: var(--text-color-secondary);
    padding: 8px 15px;
    background-color: var(--surface-highlight);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-short);
}
.category-list li a:hover, .tag-cloud a:hover {
    color: var(--background-color);
    background-color: var(--primary-color);
    border-color: var(--primary-dark);
    text-decoration: none;
}

.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9c399c;
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(60, 201, 90, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toast-notification.show {
    opacity: 1;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px; /* Adjusted gap */
    }

     .toast-notification {
        width: 70%;
        padding: 0.15rem;
        font-size: 0.5rem;
        bottom: 0.5px;
    }

    
  .header {
    padding: 4px 0;
  }

    


 .main {
    margin-top: 80px;
  }

    .container {
    margin-top: 0.1%; /* or 20px, or any value you prefer */
    }

    .post-container .container.has-sidebar { /* If sidebar exists */
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1; /* Moves sidebar to top on mobile if desired */
        margin-bottom: 50px;
    }

    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.2rem; }
    .page-hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .post-title { font-size: 2.2rem; } /* For single post */
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001; /* Ensure it's above nav */
    }

.header {
    padding: 1px 0;
 
}

    .main {
    margin-top: 80px;
  }

   .toast-notification {
        width: 70%;
        padding: 0.15rem;
        font-size: 0.5rem;
        bottom: 0.5px;
    }

    .nav {
        position: fixed;
        top: 0; /* Cover full height */
        left: -100%;
        width: 85%; /* Slightly wider */
        max-width: 320px; /* Max width for menu */
        height: 100vh;
        background-color: var(--surface-color); /* Dark menu background */
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
        transition: left 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smoother animation */
        padding: 80px 30px 30px; /* More top padding for close button area */
        z-index: 1000; /* Below menu button if button is part of header */
        overflow-y: auto; /* Scrollable if many links */
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: flex-start; /* Align links to left */
    }
    
    .nav ul li {
        margin: 0 0 25px 0; /* Increased spacing */
        width: 100%; /* Full width list items */
    }
    .nav ul li a {
        font-size: 1.2rem; /* Larger font for mobile nav */
        padding: 10px 0; /* More touch area */
        display: block; /* Full width link */
        color: var(--text-color);
    }
    .nav ul li a:hover, .nav ul li a.active {
        color: var(--primary-light);
    }
    .nav ul li a::after { /* Adjust underline for vertical menu */
        left: 0;
        transform: translateX(0);
        bottom: 0;
    }

    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 1.8rem; }
    
    .newsletter-form {
        flex-direction: column;
        border-radius: 0; /* Remove parent radius if inputs are separate */
        box-shadow: none;
    }
    
    .newsletter-form input {
        border-radius: 30px; /* Individual radius */
        margin-bottom: 15px;
        border-right: 1px solid var(--border-color); /* Add back border */
        text-align: center;
    }
    
    .newsletter-form button {
        border-radius: 30px; /* Individual radius */
        width: 100%; /* Full width button */
    }
    
    .post-title { font-size: 1.8rem; } /* For single post on mobile */
    .contact-grid { grid-template-columns: 1fr; } /* Stack contact info and form */
    .footer-content { grid-template-columns: 1fr; text-align: center; } /* Stack footer sections */
    .footer-section h3::after { left: 50%; transform: translateX(-50%); } /* Center footer title underlines */
    .social-links { justify-content: center; }


    /* Horizontal Scrollable Grid */
    .posts-grid-container {
        position: relative;
        padding-bottom: 20px; /* Space for scroll indicator */
        margin-bottom: 30px;
    }


    .posts-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 15px; /* Space for scrollbar */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    .posts-grid::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }
    
    .post-card {
        flex: 0 0 85%; /* Each card takes 85% of container width */
        min-width: 280px;
        max-width: 320px;
        scroll-snap-align: start;
        margin-right: 0;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        text-align: center;
        margin-top: 15px;
        color: var(--primary-light);
        opacity: 0.8;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .scroll-indicator::before,
    .scroll-indicator::after {
        content: "";
        display: inline-block;
        width: 30px;
        height: 2px;
        background-color: var(--primary-light);
        position: relative;
    }
    
    .scroll-indicator::before {
        animation: bounceLeft 2s infinite;
    }
    
    .scroll-indicator::after {
        animation: bounceRight 2s infinite;
    }
    
    @keyframes bounceLeft {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(-5px); }
    }
    
    @keyframes bounceRight {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(5px); }
    }
    
    /* Optional: Add gradient fade to indicate scrollable area */
    .posts-grid-container {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 10%,
            black 90%,
            transparent
            
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 10%,
            black 90%,
            transparent
        );
    }
}
/* Aga Subscribe Confirmation Styles */
.aga-subscribe-confirmation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.aga-subscribe-confirmation.show {
    opacity: 1;
    visibility: visible;
}

.aga-confirmation-content {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--primary-color);
    transform: translateY(20px);
    transition: var(--transition-medium);
}

.aga-subscribe-confirmation.show .aga-confirmation-content {
    transform: translateY(0);
}

.aga-confirmation-content i {
    font-size: 3.5rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.aga-confirmation-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.aga-confirmation-content p {
    margin-bottom: 25px;
    color: var(--text-color-secondary);
    font-size: 1.1rem;
}

.aga-close-btn {
    background-image: linear-gradient(45deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--background-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
}

.aga-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}