/* ============================================= */
/* ========== 1. GLOBAL & ROOT STYLES ========== */
/* ============================================= */
:root {
    --color-primary: #10B981; --color-dark: #0F172B; --color-light: #ffffff;
    --color-brand-blue: #0056b3; 
    --font-primary: 'Helvetica', 'Arial', sans-serif;
     /* NEW: Font Families */
   
    --header-height: 80px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-primary); background-color: var(--color-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
a { text-decoration: none; }
ul { list-style: none; }

/* ============================================= */
/* ========= 2. HEADER & NAVIGATION ============ */
/* ============================================= */

.header {
    /* Transparent by default */ 
    background-color: var(--color-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10002;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease; /* Added backdrop-filter to transition */
    
    /* ADD THIS LINE for the frosted glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);
  /* For Safari support */
}
/* New class added by JS on scroll */
.header.scrolled {
    background-color: var(--color-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
    /* ADD THIS LINE to remove the blur on scroll */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

/* --- Logo Styling --- */
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon-wrapper {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    font-size: 1.5rem; font-weight: 700; color: var(--color-light);
    line-height: 1; transition: transform 0.3s ease;
}
.logo-text {
    font-weight: 700; font-size: 1.25rem;
    color: var(--color-light); /* White by default */
    transition: color 0.3s ease;
}
.header.scrolled .logo-text { color: var(--color-dark); } /* Changes to dark on scroll */

.nav-logo:hover .logo-icon-wrapper { transform: rotate(-15deg) scale(1.1); }
.nav-logo:hover .logo-text { color: var(--color-primary); }

/* --- Desktop Navigation --- */
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a.nav-link {
    font-weight: 700;
    color: var(--color-light); /* White by default */
    padding: 0.5rem; position: relative;
    transition: color 0.3s ease;
}
.header.scrolled .nav-links a.nav-link { color: var(--color-dark); } /* Changes to dark on scroll */

.nav-links a.nav-link::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -4px; left: 0; background-color: var(--color-primary);
    transition: width 0.3s ease;
}
.nav-links a.nav-link:hover,
.nav-links a.nav-link.active { color: var(--color-primary); }
.header.scrolled .nav-links a.nav-link:hover,
.header.scrolled .nav-links a.nav-link.active { color: var(--color-primary); }

.nav-links a.nav-link:hover::after,
.nav-links a.nav-link.active::after { width: 100%; }

.nav-links .btn { padding: 10px 24px; font-weight: 600; background-color: var(--color-primary); color: var(--color-light); border-radius: 8px; }
.nav-links .btn:hover { transform: translateY(-2px); }

.hamburger { display: none; }

/* --- Mobile Hamburger Icon --- */
.hamburger { cursor: pointer; }
.bar {
    display: block; width: 25px; height: 3px;
    margin: 5px auto; background-color: var(--color-light); /* White by default */
    transition: 0.3s ease-in-out;
}
.header.scrolled .bar { background-color: var(--color-dark); } /* Dark on scroll */


/* ============================================= */
/* ========= 3. MOBILE VIEW ============ */
/* ============================================= */
@media (max-width: 992px) {
    .hamburger { display: block; z-index: 1000; /* Add z-index to ensure it's on top */ }

    /* ADD THIS BLOCK FOR THE 'X' ANIMATION */
    .hamburger.open .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.open .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    /* END OF ADDED BLOCK */

    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: var(--header-height); right: 15px;
        background: var(--color-dark); width: 220px;
        align-items: flex-start; box-shadow: 0 8px 16px rgba(0,0,0,0.4);
        padding: 1rem 0; gap: 0; border-radius: 8px;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a.nav-link { display: block; padding: 0.75rem 1.5rem; color: var(--color-light) !important; }
    .nav-links a.nav-link::after { display: none; }
    .nav-links .cta-item { display: none; }
    @media (max-width: 480px) { .logo-text { display: none; } }
}

/* ============================================= */
/* ========== 4. NEW HERO SECTION ============== */
/* ============================================= */
.hero {
    position: relative;
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden; color: var(--color-light);
}
/* New styles for the video background element */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; /* Sit behind the overlay and content */
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(15, 23, 43, 0.5); /* Slightly less dark overlay */
}
.hero-content { position: relative; z-index: 1; }
.hero-title {
    font-size: 4rem; font-weight: 700; margin-bottom: 1rem;
    line-height: 1.2;
}
.gradient-text {
    background: linear-gradient(90deg, #10B981, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}
.hero-subtitle {
    font-size: 1.1rem; max-width: 600px;
    margin: 0 auto 2.5rem auto; line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* --- A Smaller, More Refined Primary Button --- */
.hero-buttons .btn.btn-primary {
    display: inline-flex; /* Use inline-flex for better alignment */
    align-items: center;
    justify-content: center;
    
    /* SIGNIFICANTLY REDUCED a cross all dimensions */
    padding: 10px 22px;     /* REDUCED HEIGHT & WIDTH */
    font-size: 0.8rem;        /* REDUCED FONT SIZE */
    font-weight: 600;       /* Lighter font weight */
    gap: 0.5rem;            /* Reduced space between text and arrow */
    
    /* Added for a more refined look on a smaller button */
    text-transform: uppercase;
    letter-spacing: 0.5px;

    /* Existing styles remain */
    background: linear-gradient(45deg, #10B981, #20C997);
    color: var(--color-light);
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Responsive Hero Section --- */
@media (max-width: 768px) {
    .hero-title {
        /* CHANGED: Smaller title for mobile */
        font-size: 2.2rem; 
    }
    .hero-subtitle {
        /* CHANGED: Smaller subtitle for mobile */
        font-size: 0.9rem; 
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center; /* Ensures button is centered */
    }
    /* CHANGED: This rule specifically targets our primary button on mobile */
    .hero-buttons .btn.btn-primary {
        padding: 12px 24px;   /* Smaller padding */
        font-size: 1rem;        /* Smaller font size */
        width: auto;            /* Allow button to size naturally, not full-width */
    }
}


/* ============================================= */
/* ======== 5. NEW CORE PRINCIPLES SECTION ========= */
/* ============================================= */

.principles-section {
    padding: 100px 0;
    background-color: var(--color-light); /* White background */
}

/* New Section Title Style */
.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}
.section-title h2 {
    font-family: 'Georgia', 'serif'; /* Elegant serif font */
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
}
.section-title p {
    font-size: 1.1rem;
    color: #555; /* Softer text color */
    line-height: 1.7;
}

/* The grid for the cards */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* New Card Style */
.principle-card {
    background-color: var(--color-light);
    padding: 35px;
    border: 1px solid #eef0f3; /* Very subtle border */
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(100, 110, 140, 0.12);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
/* Icon background colors */
.icon-bg-blue { background-color: #eaf2ff; color: #4b89ff; }
.icon-bg-green { background-color: #e4f9f0; color: #10B981; }
.icon-bg-purple { background-color: #f3e9ff; color: #9155fd; }
.icon-bg-orange { background-color: #fff0e5; color: #ff9142; }
.icon-bg-pink { background-color: #ffe8f3; color: #ff4797; }
.icon-bg-yellow { background-color: #fff9e6; color: #ffca28; }

.principle-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}
.principle-card p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* The little decorator bar */
.card-decorator {
    height: 3px;
    width: 50px;
    margin-top: 20px;
    border-radius: 3px;
    background: linear-gradient(90deg, #10B981, #38bdf8);
}
/* By default, hide decorator on all cards except the first */
.principle-card:not(:first-child) .card-decorator {
    display: none;
}


/* --- Responsive adjustments for Principles Section --- */
@media (max-width: 992px) {
    .principles-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: 1fr;
    }
    .section-title h2 {
        font-size: 2.2rem;
    }
}


/* ============================================= */
/* ====== 6. LATEST JOURNAL SECTION (FINAL) ====== */
/* ============================================= */

.latest-journal-section {
    padding: 100px 0;
    background-color: var(--color-light);
}

.latest-journal-section .decorated-title {
    position: relative;
    display: inline-block;
    padding: 0 10px;
}
.latest-journal-section .decorated-title::before, 
.latest-journal-section .decorated-title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}
.latest-journal-section .decorated-title::before { left: -60px; }
.latest-journal-section .decorated-title::after { right: -60px; }

/* The grid that holds the cards */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* --- The Global, Reusable Article Card Style --- */
.article-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-light);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden; /* Important for border-radius on image */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(100, 110, 140, 0.12);
}

.article-card .card-image-wrapper {
    position: relative;
    overflow: hidden; /* For the image zoom effect */
}
.article-card .card-image-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.article-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.article-card .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: var(--color-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.article-card .card-content {
    padding: 25px;
    flex-grow: 1; /* Pushes the footer down */
    display: flex;
    flex-direction: column;
}
.article-card .card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.3s ease;
    /* Set a fixed height to prevent layout shifts */
    min-height: 3.9em; /* approx. 3 lines */
}
.article-card:hover .card-content h3 {
    color: var(--color-primary);
}
.article-card .card-content p {
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.9rem;
    flex-grow: 1; /* Takes up remaining space */
}

.article-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    padding-top: 15px;
    margin-top: 15px; /* Pushes to the bottom */
    border-top: 1px solid #eef0f3;
}
.article-card .card-meta i {
    margin-right: 6px;
    color: #999;
}

/* --- View All Link Styles --- */
.view-all-wrapper {
    text-align: center;
}
.view-all-link {
    color: var(--color-brand-blue);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 4px;
}
.view-all-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-brand-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.view-all-link:hover::after {
    transform: scaleX(1);
}
.view-all-link .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
.view-all-link:hover .arrow {
    transform: translateX(5px);
}

/* --- Responsive Adjustments for Journal --- */
@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    .latest-journal-section .decorated-title::before, 
    .latest-journal-section .decorated-title::after {
        display: none;
    }
}



.btn.btn-view-all {
    /* Main Button Style */
    background-color: var(--color-light);
    color: var(--color-primary); /* Green text */
    border: 2px solid #eef0f3; /* Subtle light gray border */
    padding: 12px 28px;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Smooth transition for hover effects */
    transition: all 0.3s ease;
}

/* Hover Effect for the Button */
.btn.btn-view-all:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-3px);
}

/* Arrow Styling */
.btn.btn-view-all .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn.btn-view-all:hover .arrow {
    transform: translateX(5px);
}
/* ===================================================== */
/* === 7. OVERLAID CARD TESTIMONIALS (V4 - FINAL) ====== */
/* ===================================================== */

.testimonials-section-overlay {
    padding: 100px 0;
    position: relative;
    background: url('https://images.pexels.com/photos/459277/pexels-photo-459277.jpeg') no-repeat center center/cover;
}
/* A dark overlay for text readability */
.testimonials-section-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(15, 23, 43, 0.8); /* Dark blue overlay */
}

/* Make sure container content is on top */
.testimonials-section-overlay .container {
    position: relative;
    z-index: 1;
}

/* Special class to make section title text white */
.section-title.text-light h2,
.section-title.text-light .subtitle {
    color: var(--color-light);
}
.section-title.text-light .subtitle::after {
    background-color: var(--color-light);
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.testimonials-slider {
    padding: 20px; /* Padding to prevent card shadow cutoff */
}

/* The Glassmorphism Card */
.testimonial-card-glass {
    background: rgba(1, 42, 61, 0.877);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(23, 1, 1, 0.2);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: var(--color-light);
}

.testimonial-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 30px;
}

.author-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.author-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.5);
}
.author-name {
    font-size: 1.1rem;
    font-weight: 700;
}
.author-title {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    color: var(--color-light);
    transition: transform 0.2s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.2);
}
.swiper-button-prev {
    left: -10px;
}
.swiper-button-next {
    right: -10px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1.5rem;
}


/* Responsive adjustments */
@media (max-width: 992px) {
    .swiper-button-prev { left: 0px; }
    .swiper-button-next { right: 0px; }
}
@media (max-width: 768px) {
    .swiper-button-prev, .swiper-button-next { display: none; }
    .testimonial-text { font-size: 1.1rem; }
    .testimonial-card-glass { padding: 30px; }
}


/* ============================================= */
/* ======== 7. COMMUNITY STATS SECTION ========= */
/* ============================================= */
.community-stats-section {
    padding: 80px 0;
    /* The green-to-blue gradient background */
    background: linear-gradient(90deg, #10B981, #0056b3);
    color: var(--color-light);
}

/* This targets the existing reusable .section-title class */
.community-stats-section .section-title h2,
.community-stats-section .section-title p {
    color: var(--color-light); /* Make the title and subtitle text white */
}

/* The grid for the four stat items */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    margin-top: 50px;
}

/* Styling for each individual stat */
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
}
.stat-suffix {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 2px;
    display: inline-block; /* Helps with vertical alignment */
}
.stat-label {
    display: block;
    margin-top: 5px;
    opacity: 0.8;
    font-size: 1rem;
}

/* --- Responsive Adjustments for Stats Section --- */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 grid on tablets */
    }
}

@media (max-width: 768px) {
    .community-stats-section {
        padding: 60px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr; /* Keep 2x2 on mobile for better look */
        gap: 40px 20px; /* More vertical space, less horizontal */
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .stat-suffix {
        font-size: 2.2rem;
    }
}


/* ============================================= */
/* ============ 8. FINAL CTA SECTION =========== */
/* ============================================= */
.final-cta-section {
    padding: 100px 0;
    background-color: var(--color-light);
}
.cta-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #10B981, #0056b3);
    color: var(--color-light);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.3);
}
.cta-card h2 { font-family: 'Georgia', serif; font-size: 2.8rem; margin-bottom: 1rem; }
.cta-card p { max-width: 600px; margin: 0 auto 30px auto; opacity: 0.9; line-height: 1.7; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* CORRECTED BUTTON STYLES */
.btn.btn-light { 
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px; /* Smaller padding */
    font-size: 0.9rem; /* Smaller font size */
}
.btn.btn-light i {
    margin-right: 8px;
}
.btn.btn-outline {
    /* This is now just a text link with a border */
    background: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--color-light); 
    padding: 10px 20px;
    font-size: 0.9rem;
}
.btn.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }




/* ============================================= */
/* ============= 9. MAIN FOOTER ================ */
/* ============================================= */
.main-footer {
    padding: 80px 0 0 0;
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}
.footer-logo { font-size: 1.8rem; font-weight: 700; color: var(--color-light); display: block; margin-bottom: 1rem; }
.footer-col h4 { color: var(--color-light); font-size: 1.2rem; margin-bottom: 20px; }
.footer-col p { line-height: 1.7; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255, 255, 255, 0.7); transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-col ul a:hover { color: var(--color-light); padding-left: 5px; }
/* --- Global Social Links --- */
.social-links {
    display: flex;
    gap: 15px;
}

/* Default style for light backgrounds (like the contact page) */
.social-links a {
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    background-color: #f0fdf4; /* Light green background */
    color: var(--color-primary); /* Darker green icon */
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background-color: var(--color-primary);
    color: var(--color-light);
    transform: translateY(-3px);
}

/* --- Specific Override for the Dark Footer --- */
/* This rule says "IF .social-links is INSIDE .main-footer, apply these different styles" */
.main-footer .social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
}
.main-footer .social-links a:hover {
    background-color: var(--color-primary);
}


.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
.footer-bottom-links a { color: rgba(255, 255, 255, 0.7); margin-left: 20px; }
.footer-bottom-links a:hover { color: var(--color-light); }


/* ... existing .social-links styles ... */

/* --- NEW: Specific Styling for the Footer WhatsApp Button --- */
.whatsapp-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* Space between icon and text */

    /* Change these values to your desired colors */
    background-color: #25D366; /* Official WhatsApp Green */
    color: var(--color-light);
    
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1DA851; /* A slightly darker green for hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    font-size: 1.2rem; /* Make the icon slightly bigger than the text */
}

/* ... existing .footer-bottom styles ... */

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; }

    /* --- NEW CSS FOR MOBILE FOOTER ALIGNMENT --- */
    .footer-col {
        text-align: center; /* Center all text content in the columns */
    }
    .footer-col ul {
        padding: 0; /* Remove default list padding */
    }
    .social-links {
        justify-content: center; /* Center the social media icons */
    }
    .whatsapp-btn {
        margin: 0 auto; /* Center the button */
        display: inline-block; /* Ensure margin auto works */
    }
    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }
    .footer-bottom-links a {
        margin-left: 0; /* Remove the left margin for centered layout */
    }
    /* --- END OF NEW CSS --- */
}