/* Color Palette & Variables */
:root {
    --teal: #008080; /* Bluish Teal */
    --coral: #FF7F50; /* Coral */
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgb(214, 242, 248);
    backdrop-filter: blur(10px); /* Modern Glass Effect */
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Brand Section */
.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

.brand-name {
    font-weight: 700;
    color: var(--teal);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Desktop Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--teal);
}

.btn-cta {
    background-color: var(--coral);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.3);
    transition: transform 0.3s ease !important;
}

.btn-cta:hover {
    transform: translateY(-3px); 
    color: rgb(68, 35, 35);
}

/* Mobile Responsiveness */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--teal);
    transition: all 0.3s ease-in-out;
}
  .break::before {
        content: "\A";
        white-space: pre;
    }

@media (max-width: 992px) {
 /*   .brand-name {
        display: none; /* Hides NGO Name on small screens */
  /*  } */
  .break::before {
        content: "\A";
        white-space: pre;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 40px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }
}

/* Hero styles */
/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 160px 0 100px 0; /* Extra padding top for the fixed navbar */
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* Necessary for background blobs */
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); /* Light background */
}

/* Background Animated Blobs */
.hero-blob-bg1, .hero-blob-bg2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.5;
    animation: blobify 15s infinite alternate ease-in-out;
}

.hero-blob-bg1 {
    width: 500px;
    height: 500px;
    background: rgba(0, 128, 128, 0.2); /* Soft Teal */
    top: -100px;
    right: -100px;
}

.hero-blob-bg2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 127, 80, 0.2); /* Soft Coral */
    bottom: -50px;
    left: 10%;
}

.hero-container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

/* Hero Content (Left) */
.hero-content {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    display: inline-block;
    color: var(--teal);
    font-weight: 700;
    background: rgba(0, 128, 128, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: var(--coral);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 127, 80, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--teal);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
    background-color: rgb(244, 122, 56);
}

.btn-secondary span {
    transition: 0.3s ease;
}

.btn-secondary:hover span {
    transform: translateX(5px);
}

/* Hero Image (Right) with Blob Mask */
.hero-image-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.9) translateX(50px);
    animation: imageSlideIn 1.2s ease forwards;
    animation-delay: 0.3s;
}

.blob-mask {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 1; /* Keep it square/circular */
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; /* Modern organic blob shape */
    background: var(--teal);
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the blob area */
    object-position: center;
}

.floating-icon {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: var(--coral);
    padding: 15px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255, 127, 80, 0.3);
}

.floating-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageSlideIn {
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

@keyframes blobify {
    0% {
        border-radius: 50% 50% 50% 50%;
        transform: translate(0, 0);
    }
    100% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 40%;
        transform: translate(20px, -20px);
    }
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px 0;
    }

    .hero-container {
        flex-direction: column-reverse; /* Put image on top of text on mobile */
        text-align: center;
        gap: 30px;
    }

    .hero-image-wrapper {
        justify-content: center;
        width: 80%; /* Don't take full width on mobile */
        max-width: 350px;
    }

    .blob-mask {
        aspect-ratio: 1; /* Maintain shape */
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.5rem; /* Scale down title */
    }

    .hero-btns {
        justify-content: center; /* Center buttons */
        flex-direction: column;
        gap: 15px;
    }
}

/* Impact stats start */
/* --- IMPACT STATS SECTION --- */
.stats-section {
    padding: 80px 0;
    background: #ffffff;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgb(216, 240, 249);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Modern soft shadow */
    border: 1px solid rgba(0,0,0,0.02);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.teal-bg { background-color: var(--teal); }
.coral-bg { background-color: var(--coral); }

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #777;
    font-weight: 400;
}

/* Responsive Stats */
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}


/* welcome styles */
/* --- DIRECTOR SECTION --- */
.director-section {
    padding: 100px 0;
    background-color: #f9fbfc; /* Very light teal tint */
    overflow: hidden;
}

.director-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 80px;
}

/* Image Styling */
.director-image-box {
    position: relative;
    flex: 1;
    height: 200px;
}

.director-img {
    width: 100%;
    border-radius: 30px;
    z-index: 2;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: auto;
    height: 350px;
    background: var(--coral);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.2;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--teal);
    color: white;
    padding: 20px;
    border-radius: 20px;
    z-index: 3;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Content Styling */
.director-content {
    flex: 1.2;
}

.section-tag {
    color: rgb(7, 196, 196);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title {
    font-size: 2.8rem;
    margin: 15px 0 25px;
    line-height: 1.2;
    color: #1a1a1a;
}

.quote-text {
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
    border-left: 4px solid var(--coral);
    padding-left: 20px;
    margin-bottom: 25px;
}

.snapshot-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.director-name {
    color: var(--teal);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.director-role {
    color: var(--coral);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Scroll Reveal Classes (Optimized for Snappier Reveal) */
.reveal-left {
    opacity: 0;
    /* Reduced distance from 100px to 40px for faster visual arrival */
    transform: translateX(-40px);
    /* Changed to 0.8s for a more responsive feel */
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.reveal-right {
    opacity: 0;
    /* Reduced distance from 100px to 40px */
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.reveal-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .director-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        height: auto;
    }
    .quote-text {
        border-left: none;
        border-top: 4px solid var(--coral);
        padding: 20px 0 0;
    }
    
    /* Optional: Further reduce transform on mobile for better performance */
    .reveal-left, .reveal-right {
        transform: translateY(20px); /* Switch to a subtle upward fade on small screens */
    }

    .image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: auto;
    height: 100px;
    background: var(--coral);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.2;
}
.director-image-box {
    position: relative;
    flex: 1;
    height: 100px;
}

.director-img {
    width: auto;
    border-radius: 30px;
    z-index: 2;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.08);
    height: 400px;
}
}

/* What We Do Section */
/* --- WHAT WE DO SECTION --- */
.services-section {
    padding: 100px 0;
    background: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 128, 128, 0.15);
}

/* Image & Overlay */
.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  /*  background: linear-gradient(to bottom, rgba(0,128,128,0.1), var(--teal)); */
    opacity: 0.7;
    transition: 0.4s;
}

.service-card:hover .service-overlay {
    opacity: 0.2;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--coral);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
}

/* Content Area */
.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.read-more {
    text-decoration: none;
    color: var(--coral);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more:hover {
    gap: 12px;
}

/* Reveal Animation Initial State */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-up.reveal-active {
    opacity: 1;
    transform: translateY(0);
}


/* Featured Story Section */
/* --- FEATURED STORY SECTION --- */
.featured-story {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 128, 128, 0.03), rgba(255, 127, 80, 0.03));
    position: relative;
}

.story-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    gap: 80px;
}

/* Visuals Column */
.story-visuals {
    flex: 1;
    position: relative;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.featured-img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.main-image-wrapper:hover .featured-img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--teal);
    backdrop-filter: blur(5px);
}

.secondary-image-wrapper {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 250px;
    height: 300px;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.secondary-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Column */
.story-content {
    flex: 1;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--coral);
    margin-bottom: 20px;
}

.story-tag {
    color: var(--teal);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.story-title {
    font-size: 3rem;
    line-height: 1.1;
    margin: 15px 0 25px;
    color: #1a1a1a;
}

.story-lead {
    font-size: 1.25rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 35px;
}

.story-quote {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.quote-icon {
    width: 40px;
    fill: var(--coral);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.story-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.story-quote cite {
    font-weight: 700;
    color: var(--teal);
}

.story-cta p {
    color: #777;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .story-container {
        flex-direction: column;
        gap: 60px;
    }
    .secondary-image-wrapper {
        display: none; /* Keep it clean on mobile */
    }
    .story-title {
        font-size: 2.2rem;
    }
}


/* Updates Section starts */
/* --- LATEST UPDATES SECTION --- */
.updates-section {
    padding: 100px 0 150px;
    background-color: #fff;
}

.updates-header {
    text-align: center;
    margin-bottom: 80px;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.update-card {
    background: #fdfdfd;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

/* The Unique Offset */
@media (min-width: 992px) {
    .offset-card {
        margin-top: 50px;
    }
}

.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 128, 128, 0.1);
    border-color: var(--teal);
}

.update-image {
    position: relative;
    height: 250px;
}

.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.update-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--teal);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.update-info {
    padding: 30px;
}

.category {
    color: var(--coral);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.update-info h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.update-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.update-link {
    text-decoration: none;
    color: rgb(2, 130, 130);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.update-link span {
    width: 25px;
    height: 25px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.update-card:hover .update-link {
    color: var(--coral);
}

.update-card:hover .update-link span {
    background: var(--coral);
    color: white;
    transform: rotate(90deg);
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .updates-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* CTA & Footer styles */
/* --- FINAL CTA SECTION --- */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--teal) 0%, #004d4d 100%);
    background-image: linear-gradient(rgba(0,0,0,1)), url('IMAGES/teal9.avif'); /* Optional subtle pattern */
    background-size: cover;
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0;
    margin-bottom: 0;
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: var(--coral);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-outline {
    border: 2px solid white;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    background: white;  
    color: var(--teal);
}

.cta-trust-indicators {
    display: flex;
    gap: 30px;
    justify-content: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Pulse Animation for the Donate Button */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0px rgba(255, 127, 80, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 127, 80, 0); }
    100% { box-shadow: 0 0 0 0px rgba(255, 127, 80, 0); }
}

/* --- FOOTER --- */
.main-footer {
    background: #111;
    color: #999;
    padding: 80px 0 30px;
    padding-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    text-align: center;
}

.footer-logo {
    height: 75px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 25px;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #999; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--coral); }

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-title { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; }
}

/* --- ROOT VARIABLES --- */
:root {
    --teal: #008080;
    --coral: #FF7F50; /* Your signature Coral */
    --dark-bg: #002d2d;
}

/* Growth section starts */
/* --- 1. CORE VARIABLES & SETUP --- */
:root {
    --teal: #008080;
    --coral: #FF7F50; /* Signature Coral - Constant */
    --dark-bg: #002d2d;
}

.expansion-vision {
    padding: 120px 0;
    background-color: var(--dark-bg); 
    color: white;
    overflow: hidden;
}

.expansion-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 2. MAP VISUAL CONTAINER --- */
.map-visual {
    flex: 1;
    position: relative;
    background-image: /*linear-gradient(rgba(0,45,45,0.3), rgba(0,45,45,0.3)), */ url('IMAGES/map2.jpg');
    background-size: cover;
    background-position: center;
    height: 550px;
    border-radius: 40px;
    /* Constant Coral border - No grey rgba */
    border: 3px solid var(--coral); 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 127, 80, 0.2);
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mapCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* --- 3. LIRA CITY PULSE (THE ONLY STATIC DOT) --- */
.lira-pulse {
    position: absolute;
    top: 35%; /* Northern Uganda position */
    right: 35%;
    z-index: 10;
}

.core-dot {
    width: 14px;
    height: 14px;
    background: var(--coral) !important;
    border-radius: 50%;
    position: relative;
    z-index: 15;
    box-shadow: 0 0 15px var(--coral);
}  

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--coral) !important;
    border-radius: 50%;
    animation: mapPulse 3s infinite ease-out;   
}  

.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }

.lira-label {
    position: absolute;
    top: -30px;
    left: 20px;
    background: var(--coral) !important;
    color: white !important;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;  
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}


/* --- 4. TEXT CONTENT & MILESTONES --- */
.vision-text { flex: 1; }

.section-tag {
    color: var(--coral);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.vision-desc { 
    font-size: 1.1rem; 
    line-height: 1.7; 
    margin: 20px 0 40px; 
    color: #ccc; 
}

.milestone { 
    display: flex; 
    gap: 20px; 
    margin-bottom: 30px; 
}

.m-icon { 
    width: 45px; 
    height: 45px; 
    background: var(--coral); 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    color: white;
    flex-shrink: 0; 
}

.m-info h4 { color: white; margin-bottom: 5px; font-size: 1.2rem; }
.m-info p { font-size: 0.95rem; color: #999; }

/* --- 5. ANIMATIONS --- */
@keyframes mapPulse {
    0% { width: 10px; height: 10px; opacity: 1; }
    100% { width: 350px; height: 350px; opacity: 0; }
}

.reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s ease;
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

/* --- 6. RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .expansion-grid {
        flex-direction: column;
        gap: 50px;
    }

    .map-visual {
        width: 100%;
        height: 400px;
        flex: none;
    }

    .vision-text {
        text-align: center;
        width: 100%;
    }

    .milestone {
        text-align: left;
        max-width: 500px;
        margin: 0 auto 30px;
    }

    .lira-pulse {
        top: 35%;
        right: 45%; /* Adjust center for mobile visual */
    }

    @keyframes mapPulse {
        0% { width: 10px; height: 10px; opacity: 1; }
        100% { width: 250px; height: 250px; opacity: 0; }
    }
}
/* Vocation section */
/* --- YOUTH EMPOWERMENT SECTION --- */
.youth-empowerment {
    padding: 100px 0;
    background: #ffffff;
}

.empowerment-header {
    text-align: center;
    margin-bottom: 60px;
}

.empowerment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.empower-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    text-align: center; /* Center content for the icon look */
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* The Circular "Icon" Container */
.card-image-circle {
    width: 100px; /* Icon size */
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%; /* Perfect circle */
    overflow: hidden;
    border: 3px solid #f0f0f0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.empower-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hover Effects */
.empower-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 20px 40px rgba(0, 128, 128, 0.1);
}

.empower-card:hover .card-image-circle {
    border-color: var(--coral);
    transform: scale(1.1);
}

.empower-card h3 {
    font-size: 1.4rem;
    color: #002d2d;
    margin-bottom: 15px;
}

.empower-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Glow Decoration */
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 30px;
    background: radial-gradient(circle at center, var(--teal), transparent);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.empower-card:hover .card-glow {
    opacity: 0.05;
}

/* Mobile Tweak */
@media (max-width: 992px) {
    .empowerment-grid {
        grid-template-columns: 1fr;
    }
}

/* --- EMPOWERMENT MINI-CTA --- */
.empowerment-cta {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-mini-card {
    background: linear-gradient(135deg, var(--teal) 0%, #004d4d 100%);
    padding: 40px 60px;
    border-radius: 100px; /* Pill shape */
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 128, 128, 0.2);
    position: relative;
    overflow: hidden;
}

/* Subtle background decoration */
.cta-mini-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content h4 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 400px;
}

.cta-button-wrapper {
    text-align: center;
}

.btn-empower-donate {
    background: var(--coral);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(255, 127, 80, 0.3);
}

.btn-empower-donate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 127, 80, 0.5);
    background: #ff8e66; /* Slightly lighter coral */
}

.transparency-note {
    font-size: 0.75rem;
    margin-top: 10px;
    opacity: 0.7;
    font-style: italic;
}

/* Mobile Adaptation */
@media (max-width: 992px) {
    .cta-mini-card {
        flex-direction: column;
        border-radius: 40px;
        text-align: center;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .cta-content p {
        margin: 0 auto;
    }
}

/* Footer bottom */
/* --- FOOTER BOTTOM & DEVELOPER CREDIT --- */

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
 /*   display: flex;
    justify-content: space-between;  */
    align-items: center;
 /*   width: 90%;
    max-width: 1200px;
    margin: 0 auto; */
}

.copyright {
    font-size: 0.85rem;
    color: #9a9999;
    padding-bottom: 15px;
}

.developer-credit {
    font-size: 0.85rem;
    color: #9c9b9b;
}

/* Namelevate Technologies Link Styling */
.namelevate-link {
    color: rgb(170, 211, 228); /* Starts white to stand out from copyright text */
    text-decoration: underline;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.namelevate-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgb(209, 152, 53); /* Uses your brand accent */
    transition: width 0.3s ease;
}

.namelevate-link:hover {
    color: var(--coral);
}

.namelevate-link:hover::after {
    width: 100%;
}

/* Mobile Adaptation */
@media (max-width: 768px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* End of home page*/

/* ABOUT PAGE STYLES */
/* Hero section */
/* --- ABOUT HERO SECTION --- */
/* --- ABOUT HERO SECTION --- */
.about-hero {
    padding: 160px 0 120px;
    background-color: #002d2d;
    background-image: linear-gradient(rgba(0, 45, 45, 0.85), rgba(0, 45, 45, 0.95)), url('IMAGES/sccau10.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden; /* Keeps the orbit/parallax contained to the section */
}

/* Layering Logic */
.about-hero .container { position: relative; z-index: 10; width: 90%; max-width: 1200px; margin: 0 auto; }
.about-hero-flex { display: flex; align-items: center; gap: 60px; position: relative; }
.about-hero-text { flex: 1.2; }

/* Text Styling */
.about-tag {
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.about-hero-text h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 30px; }
.about-hero-text .highlight { color: var(--teal); }
.hero-lead { font-size: 1.2rem; color: #ccc; line-height: 1.6; margin-bottom: 40px; max-width: 500px; }

/* Real Images styled as Icons */
.hero-stats-mini { display: flex; gap: 30px; }
.mini-stat { display: flex; align-items: center; gap: 12px; }
.mini-img-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}
.mini-img-icon img { width: 100%; height: 100%; object-fit: cover; }
.mini-stat span { font-size: 0.9rem; font-weight: 500; }

/* Visual Side & Circular Image */
.about-hero-visual { flex: 1; display: flex; justify-content: center; position: relative; }

/* FIXED: Wrapper is now larger than the circle to prevent badges from being cut off */
.main-image-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-circle {
    width: 380px; /* Circle size */
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #111;
    position: relative;
    z-index: 5;
}

.hero-main-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: var(--coral);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    white-space: nowrap;
}

/* Adjusted positions to stay within the new larger wrapper */
.fb-1 { top: 15%; right: 5%; animation: float 4s infinite ease-in-out; }
.fb-2 { bottom: 25%; left: 0%; animation: float 5s infinite ease-in-out reverse; }

.svg-orbit {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

/* Animations */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Mobile Tweak - FIXED circularity and stacking */
@media (max-width: 992px) {
    .about-hero { padding: 120px 0 80px; }
    .about-hero-flex { flex-direction: column; text-align: center; gap: 40px; }
    .about-hero-text h1 { font-size: 3rem; }
    .hero-stats-mini { justify-content: center; }
    
    .main-image-wrapper { 
        width: 320px; 
        height: 320px; 
    }
    
    .hero-main-circle { 
        width: 260px; /* Ensures it stays a perfect circle */
        height: 260px; 
    }
    
    .fb-1 { top: 10%; right: 0; }
    .fb-2 { bottom: 15%; left: -5%; }
}

/* Reveal Force-Visible (Remove these when your JS is ready) */
.reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
}

/* End of about hero section */
/* Founding Story Section */
/* --- FOUNDING STORY SECTION --- */
.founding-story {
    padding: 140px 0;
    background: #ffffff;
    overflow: hidden;
}

.story-layout {
    display: flex;
    align-items: center;
    gap: 100px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Visual Side with Image Stacking */
.story-visuals {
    flex: 1;
    position: relative;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 600px;
}

.main-story-img {
    width: 85%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.main-story-img img { width: 100%; height: 100%; object-fit: cover; }

.accent-img-circle {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    z-index: 2;
}

.accent-img-circle img { width: 100%; height: 100%; object-fit: cover; }

/* The Milestone Badge */
.milestone-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    z-index: 3;
}

.m-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    overflow: hidden;
}

.m-icon-box img { width: 100%; height: 100%; object-fit: cover; }

.m-text span { display: block; font-size: 0.75rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }
.m-text strong { display: block; font-size: 1.1rem; color: var(--dark-bg); }

/* Content Side */
.story-content { flex: 1.2; }

.story-sub { color: var(--coral); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.story-title { font-size: 3.5rem; margin: 20px 0 40px; line-height: 1.2; }
.teal-gradient { background: linear-gradient(to right, var(--teal), #006666); background-clip: text; -webkit-text-fill-color: transparent; }

.story-text-block { display: flex; gap: 20px; margin-bottom: 30px; }

.drop-cap {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--teal);
    margin-top: 5px;
}

.story-text-block p { font-size: 1.15rem; color: #555; line-height: 1.8; }

/* Signature Style */
.story-signature {
    margin-top: 50px;
    padding-top: 30px;
    position: relative;
}

.sig-line { width: 60px; height: 3px; background: var(--coral); margin-bottom: 20px; }

.story-signature p { font-style: italic; font-size: 1.3rem; color: var(--dark-bg); margin-bottom: 20px; }

.founder-info strong { display: block; font-size: 1.1rem; }
.founder-info span { color: var(--teal); font-weight: 600; font-size: 0.9rem; }

/* Mobile Adaptation */
@media (max-width: 992px) {
    .story-layout { flex-direction: column; gap: 60px; }
    .image-stack { height: 450px; }
    .main-story-img { width: 100%; height: 350px; }
    .accent-img-circle { width: 150px; height: 150px; bottom: 0; }
    .story-title { font-size: 2.5rem; }
    .milestone-card { top: -20px; right: 10px; }
}


/* Mission Section starts */
/* --- IDENTITY (MVV) SECTION --- */
/* --- IDENTITY (MVV) SECTION --- */
.identity-section {
    padding: 120px 0;
    background-color: #fdfdfd; /* Solid light gray so you can see white cards */
    position: relative;
    width: 100%;
    display: block; /* Ensures section doesn't collapse */
    clear: both;
}

.identity-header {
    text-align: center;
    margin-bottom: 80px;
    width: 100%;
}

/* Fallback for Header Text if variables aren't loading */
.section-title {
    color: #002d2d; 
    font-size: 2.5rem;
    font-weight: 800;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.identity-card {
    background: #ffffff; /* Explicit white */
    padding: 60px 40px 50px;
    border-radius: 40px;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Slightly darker shadow for visibility */
    visibility: visible !important; /* Force visibility */
    opacity: 1 !important;        /* Force opacity */
}

/* Image-Icon Styling */
.pillar-img-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 30px;
    border: 4px solid #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: #eeeeee; /* Gray placeholder so you see the circle even without image */
    transition: transform 0.5s ease;
}

.pillar-img-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content Styling with Fallback Colors */
.identity-card h3 {
    font-size: 1.6rem;
    color: #002d2d; /* Hardcoded dark teal fallback */
    margin-bottom: 20px;
    font-weight: 800;
}

.identity-card p {
    color: #555555; /* Hardcoded gray fallback */
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Specific styling for the Values list */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-weight: 600;
    color: #008080; /* Hardcoded teal fallback */
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Pillar Accents */
.pillar-accent {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background-color: #008080;
    border-radius: 10px 10px 0 0;
    transition: width 0.4s ease;
}

/* Hover States - Using HEX codes to ensure they work */
.vision-card:hover .pillar-accent { background-color: #ff7f50; width: 60%; }
.mission-card:hover .pillar-accent { background-color: #008080; width: 60%; }
.values-card:hover .pillar-accent { background-color: #004d4d; width: 60%; }

.identity-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 30px 60px rgba(0, 128, 128, 0.15);
    border-color: #008080;
}

.identity-card:hover .pillar-img-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Mobile Adaptation */
@media (max-width: 992px) {
    .identity-grid { grid-template-columns: 1fr; gap: 40px; }
    .identity-card { padding: 50px 30px; }
}

/* --- THE SAFETY REVEAL SYSTEM --- */

/* 1. The Base State: We keep them visible by default for safety */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 1; 
    transform: none;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 2. The Animation State: ONLY hides them if the JS is actually working */
/* We add a class to the <body> via JS like <body class="js-enabled"> */
.js-enabled .reveal-up { opacity: 0; transform: translateY(40px); }
.js-enabled .reveal-left { opacity: 0; transform: translateX(-40px); }
.js-enabled .reveal-right { opacity: 0; transform: translateX(40px); }

/* 3. The Active State: What happens when you scroll */
.reveal-up.active, 
.reveal-left.active, 
.reveal-right.active {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

/* --- IMPACT DASHBOARD SECTION --- */
.impact-dashboard {
    padding: 100px 0;
    background: #001a1a; /* Very dark teal for a high-end feel */
    color: white;
    position: relative;
    width: 100%;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.metric-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.metric-visual {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
 /*   padding-bottom: 5px;  */
}

/* Image Styled as a Premium Icon */
.metric-img-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #008080; /* Teal Border */
    margin-bottom: -20px; /* Overlaps slightly with the number for depth */
    z-index: 2;
    background: #002d2d;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.metric-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.metric-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ff7f50; /* Coral fallback */
    background: linear-gradient(to bottom, #ff7f50, #ff4d00);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 1;
    line-height: 1;
}

.metric-info h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.metric-info p {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Hover Effect */
.metric-card:hover .metric-img-circle {
    transform: translateY(-10px) scale(1.1);
    border-color: #ff7f50;
    transition: 0.4s all ease;
}

/* Mobile Adaptation */
@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .metric-number {
        font-size: 3.5rem;
    }
}


/* --- LEADERSHIP & TEAM SECTION --- */
.leadership-section {
    padding: 120px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
}

.leadership-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    max-width: 600px;
    margin: 15px auto 0;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #f9f9f9;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Image Container */
.leader-image-wrapper {
    position: relative;
    width: 100%;
    height: 480px; /* Professional vertical ratio */
    overflow: hidden;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* Base Overlay Styling (Mobile-Friendly by Default) */
.leader-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-bio p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

/* Social Mini-Images */
.leader-socials { display: flex; gap: 12px; }
.leader-socials img {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    transition: 0.3s all ease;
}

/* Leader Info Bar */
.leader-info {
    padding: 25px;
    text-align: center;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.leader-info h3 { color: #002d2d; font-size: 1.3rem; margin-bottom: 5px; font-weight: 800; }
.leader-info span { color: #008080; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* --- INTERACTION LOGIC --- */

/* DESKTOP: Hover Secrets */
@media (min-width: 993px) {

        .leader-overlay {
        bottom: 0;
        height: 55%; /* Covers bottom half only */
        background: linear-gradient(to top, #002d2d 30%, transparent 100%);
    }
        .leader-bio p { opacity: 1; transform: translateY(0); font-size: 0.85rem; }
    
    .leader-photo { filter: brightness(0.85); }

    
 /*   .leader-bio p { opacity: 0; transform: translateY(20px); }   */

    .leader-card:hover .leader-overlay { bottom: 0; }
    .leader-card:hover .leader-bio p { opacity: 1; transform: translateY(0); }
    .leader-card:hover .leader-photo { transform: scale(1.08); }
    .leader-socials img:hover { background: #ff7f50; border-color: #ff7f50; transform: translateY(-3px); }
}

/* MOBILE: Visible Info (No Hover Needed) */
@media (max-width: 992px) {
    .team-grid { grid-template-columns: 1fr; max-width: 400px; }
    
    .leader-image-wrapper { height: 420px; }
    
    .leader-overlay {
        bottom: 0;
        height: 55%; /* Covers bottom half only */
        background: linear-gradient(to top, #002d2d 30%, transparent 100%);
    }

    .leader-bio p { opacity: 1; transform: translateY(0); font-size: 0.85rem; }
    
    .leader-photo { filter: brightness(0.85); }
}


/* --- ROADMAP SECTION --- */
.roadmap-section {
    padding: 120px 0;
    background: #f4f7f7; /* Very light teal-gray */
    overflow: hidden;
}

.roadmap-header { text-align: center; margin-bottom: 100px; }

.roadmap-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* The Connecting Path */
.roadmap-line {
    position: absolute;
    top: 135px; /* Aligns with the circles */
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 128, 128, 0.1);
    z-index: 1;
}

.roadmap-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 25%; /* Initial progress */
    background: var(--teal, #008080);
    box-shadow: 0 0 15px rgba(0, 128, 128, 0.4);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.milestone-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Year Label */
.milestone-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: #002d2d;
    margin-bottom: 25px;
    font-family: sans-serif;
}

/* The Image Node */
.node-img-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
    margin-bottom: 30px;
}

.node-img-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.milestone-content h3 {
    font-size: 1.2rem;
    color: #002d2d;
    margin-bottom: 15px;
    font-weight: 800;
}

.milestone-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    padding: 0 10px;
}

/* Interaction */
.milestone-item:hover .node-img-icon {
    transform: scale(1.15);
    border-color: #ff7f50; /* Coral highlight */
    box-shadow: 0 15px 35px rgba(255, 127, 80, 0.2);
}

/* 3. The Pulsing "Current Status" indicator for 2025-2027 */
    .milestone-item:nth-child(1) .node-img-icon::after {
        content: 'Currently Here';
        position: absolute;
        left: 240px;
        top: 30%;
        background: #ff7f50;
        color: white;
        font-size: 0.7rem;
        padding: 4px 10px;
        border-radius: 50px;
        white-space: nowrap;
        font-weight: 700;
        text-transform: uppercase;
        animation: pulse-glow 2s infinite;
    }

/* Mobile Tweak - Vertical Stack */
/* Mobile Tweak - Vertical "Active" Path */
@media (max-width: 992px) {
    /* 1. Hide the horizontal line */
    .roadmap-line { display: none; } 

    .roadmap-wrapper {
        padding-left: 20px; /* Room for the vertical line */
    }

    /* 2. Create the Vertical Track */
    .roadmap-wrapper::before {
        content: '';
        position: absolute;
        left: 55px; /* Centers it behind the 80px nodes */
        top: 0;
        bottom: 0;
        width: 4px;
        /* The Gradient: Solid color between 2025 and 2027, then fades */
        background: linear-gradient(to bottom, 
            #008080 0%,     /* 2025 Start (Teal) */
            #008080 15%,    /* 2027 Midpoint (Still Teal) */
            #e0e7e7 25%,    /* Fade to gray for future */
            #e0e7e7 100%
        );
        z-index: 1;
        border-radius: 10px;
    }

    .roadmap-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        position: relative;
        z-index: 2;
    }

    .milestone-item {
        flex-direction: row;
        text-align: left;
        gap: 25px;
        align-items: flex-start;
        position: relative;
    }

    /* 3. The Pulsing "Current Status" indicator for 2025-2027 */
    .milestone-item:nth-child(1) .node-img-icon::after {
        content: 'Currently Here';
        position: absolute;
        left: 60px;
        top: 100%;
        background: #ff7f50;
        color: white;
        font-size: 0.7rem;
        padding: 4px 10px;
        border-radius: 50px;
        white-space: nowrap;
        font-weight: 700;
        text-transform: uppercase;
        animation: pulse-glow 2s infinite;
    }

    .milestone-year {
        min-width: 60px;
        font-size: 1.2rem;
        margin-bottom: 0;
        padding-top: 25px; /* Aligns year with node center */
    }

    .node-img-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 0;
        flex-shrink: 0;
        border-width: 4px;
        z-index: 5;
    }

    .milestone-content {
        padding-top: 10px;
    }

    .milestone-content h3 { margin-bottom: 5px; font-size: 1.1rem; }
}

/* Status Pulse Animation */
@keyframes pulse-glow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 127, 80, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 127, 80, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 127, 80, 0); }
}


/* --- GOVERNANCE & TRANSPARENCY --- */
.governance-section {
    padding: 120px 0;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.gov-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.gov-card {
    background: #fcfcfc;
    padding: 50px;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: all 0.4s ease;
}

.gov-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 128, 128, 0.05);
    border-color: #008080;
}

/* Image-Icon Styling */
.gov-badge-icon {
    width: 85px;
    height: 85px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.gov-badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gov-tag {
    color: #ff7f50; /* Coral */
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.gov-content h3 {
    font-size: 1.8rem;
    color: #002d2d;
    margin: 10px 0 20px;
}

.gov-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Legal List */
.gov-details {
    list-style: none;
    padding: 0;
}

.gov-details li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #333;
}

.gov-details li strong {
    color: #008080;
}

/* Financial Progress Bar */
.funding-bar-container {
    margin-top: 20px;
}

.funding-label {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 10px;
    color: #002d2d;
}

.funding-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.funding-progress {
    width: 92%;
    height: 100%;
    background: linear-gradient(to right, #008080, #004d4d);
    border-radius: 10px;
}

.funding-note {
    font-size: 0.85rem !important;
    font-style: italic;
    color: #888 !important;
}

/* Mobile Adaptation */
@media (max-width: 992px) {
    .gov-grid { grid-template-columns: 1fr; }
    .gov-card { padding: 35px; }
    .gov-content h3 { font-size: 1.5rem; }
}


/* --- WHY SICKLE CELL MATTERS --- */
.why-it-matters {
    padding: 140px 0;
    background: #000c0c; /* Deepest Teal/Black for emotional weight */
    color: white;
    overflow: hidden;
}

.emergency-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    width: 90%;
    height: auto;
    max-width: 1200px;
    margin: 0 auto;
}

/* Visual Side */
.emergency-visual { flex: 1; position: relative; }

.visual-stack { position: relative; }

.main-portrait {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 40px;
    filter: grayscale(30%) contrast(1.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.stat-overlay-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #ff7f50; /* Coral */
    padding: 30px;
    border-radius: 30px;
    max-width: 220px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stat-highlight {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-overlay-card p { font-size: 0.9rem; font-weight: 600; line-height: 1.4; }

/* Content Side */
.emergency-content { flex: 1.2; }

.coral-text { color: #ff7f50; }

.lead-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
    font-style: italic;
    border-left: 4px solid #008080;
    padding-left: 20px;
}

.fact-row {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.fact-icon-img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.2);
}

.fact-icon-img img { width: 100%; height: 100%; object-fit: cover; }

.fact-text strong {
    display: block;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-text p { color: #aaa; line-height: 1.6; font-size: 1rem; }

/* Mobile Adaptation */
@media (max-width: 992px) {
    .emergency-flex { flex-direction: column; gap: 60px; }
    .main-portrait { height: 400px; }
    .stat-overlay-card { right: 10px; bottom: -20px; padding: 20px; }
    .section-title { font-size: 2.5rem; }
}

/* --- TESTIMONIALS --- */
.testimonials-section {
    padding-top: 15px;
    padding-bottom: 80px;
    background: #fdfdfd;
    overflow: hidden;
}

.testi-header { text-align: center; margin-bottom: 60px; }

.slider-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%; /* Default 1 card on mobile */
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar */
    scroll-behavior: smooth;
}

.testi-slider::-webkit-scrollbar { display: none; }

/* Responsive Columns */
@media (min-width: 768px) { .testi-slider { grid-auto-columns: calc(50% - 15px); } } /* 2 cards */
@media (min-width: 1024px) { .testi-slider { grid-auto-columns: calc(33.33% - 20px); } } /* 3 cards */

.testi-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.testi-card:hover { border-color: #008080; transform: translateY(-5px); }

.quote-icon {
    font-size: 4rem;
    color: #008080;
    line-height: 1;
    font-family: serif;
    opacity: 0.2;
    margin-bottom: -20px;
}

.testi-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 15px; }

/* The Initials Badge (Replacing real photos) */
.initials-badge {
    width: 50px;
    height: 50px;
    background: #002d2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.author-info strong { display: block; color: #002d2d; font-size: 1rem; }
.author-info span { font-size: 0.8rem; color: #008080; font-weight: 600; }

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    color: #002d2d;
    transition: 0.3s;
}

.slider-btn:hover { background: #008080; color: #fff; }
.prev { left: -25px; }
.next { right: -25px; }

@media (max-width: 768px) {
    .prev { left: 10px; }
    .next { right: 10px; }
}

/* --- FINAL CALL TO ACTION --- */
.final-cta1 {
    padding: 30px 0 30px;  
    background: #ffffff;
}

.cta-box {
    background: linear-gradient(135deg, #002d2d 0%, #004d4d 100%);
    border-radius: 50px;
    padding: 80px;
    display: flex;
    align-items: center;
    gap: 60px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 45, 45, 0.2);
}

/* Background Decoration */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 127, 80, 0.1);
    border-radius: 50%;
}

.cta-content { flex: 1.5; }

.cta-tag {
    color: #ff7f50; /* Coral */
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.cta-title {
    font-size: 3.5rem;
    margin: 20px 0;
    line-height: 1.1;
}

.highlight { color: #ff7f50; }

.cta-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

/* Buttons */
.cta-actions { display: flex; gap: 20px; }

.btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s all ease;
    display: inline-block;
}

.btn-coral { background: #ff7f50; color: white; }
.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: white; }

.btn-coral:hover { background: #ff6a33; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(255, 127, 80, 0.3); }
.btn-outline:hover { background: white; color: #002d2d; }

/* The Pulse Animation */
.pulse-btn {
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    10% { transform: scale(1.05); }
    20% { transform: scale(1); }
    30% { transform: scale(1.05); }
    40% { transform: scale(1); }
}

/* Image Side */
.cta-image-provision {
    flex: 1;
    position: relative;
}

.cta-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    border: 5px solid rgba(255,255,255,0.1);
}

.cta-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    color: #002d2d;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-experience-badge strong { font-size: 1.8rem; display: block; color: #ff7f50; }
.cta-experience-badge span { font-size: 0.7rem; text-transform: uppercase; font-weight: 800; }

/* Mobile Adaptation */
@media (max-width: 992px) {
    .cta-box { padding: 50px 30px; flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-desc { margin: 0 auto 40px; }
    .cta-title { font-size: 2.5rem; }
    .cta-image-provision { width: 100%; }
}


/* Special Styling for the Partnership Card */
.partnership-card {
    background: linear-gradient(to bottom, #ffffff, #f0fafa); /* Subtle teal tint */
    border: 2px dashed #008080; /* Dashed border implies "space for you" */
}

.partner-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: #008080; /* Your brand teal */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.2);
}

.partner-btn:hover {
    background-color: #ff7f50; /* Switch to Coral on hover for "Action" */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 127, 80, 0.3);
    color: white;
}

/* On Large Screens, make the Partnership card span 3 columns for a clean finish */
@media (min-width: 1024px) {
    .partnership-card {
        grid-column: span 3; /* Spans the entire row below the first 3 cards */
        flex-direction: row; /* Layout change for the wide version */
        text-align: left;
        padding: 40px 60px;
        gap: 40px;
        justify-content: center;
    }
    
    .partnership-card .pillar-img-icon {
        margin-bottom: 0;
    }

    .partnership-card .pillar-content {
        max-width: 600px;
    }
}

/* Mobile fix */
@media (max-width: 992px) {
    .partnership-card {
        grid-column: span 1;
    }
}


/*  PROGRAM SECTION  */
/* --- FULL-SCREEN PROGRAMS HERO --- */
.programs-hero-alt {
    position: relative;
    height: 100vh; /* Full screen height */
    min-height: 700px;
    background-image: url('IMAGES/sccau1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a high-end parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Dark overlay to make text pop */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 45, 45, 0.7), rgba(0, 45, 45, 0.4));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-tag {
    color: var(--coral);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.hero-main-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
}

.highlight {
    color: rgb(2, 188, 188);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.hero-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    background: var(--teal);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover { background: #006666; transform: translateY(-3px); }
.btn-secondary:hover { background: white; color: var(--dark-bg); transform: translateY(-3px); }

/* Real-Image Icons at the bottom */
.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-img-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--coral);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.badge-img-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-item span {
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Mobile Tweak */
@media (max-width: 768px) {
 /*   .hero-container {margin-top: 50px;}  */
    .hero-main-title { font-size: 3rem; }
    .hero-btn-group { flex-direction: column; }
    .hero-trust-badges { flex-direction: column; gap: 20px; align-items: center; }
}

/* --- CLINICAL PROGRAMS SECTION --- */
.clinical-programs {
    padding: 120px 0;
    background: #ffffff;
}

.program-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.program-main-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.program-block {
    display: flex;
    align-items: center;
    gap: 80px;
}

.program-block:nth-child(even) {
    flex-direction: row-reverse;
}

/* Visual Container */
.block-visual {
    flex: 1;
    position: relative;
}

.main-block-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 45, 45, 0.1);
}

.block-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: white;
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Content Area */
.block-content {
    flex: 1;
}

.block-icon-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.image-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--teal);
    flex-shrink: 0;
}

.image-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-content h3 {
    font-size: 2rem;
    color: #002d2d;
    line-height: 1.2;
}

.block-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #444;
}

.program-features li span {
    color: var(--teal);
    font-weight: 900;
}

.btn-learn {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid var(--teal);
    color: var(--teal);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-learn:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-3px);
}

/* Mobile Stack */
@media (max-width: 992px) {
    .program-block, .program-block:nth-child(even) {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .block-icon-header {
        flex-direction: column;
        text-align: center;
    }
    
    .program-features li {
        justify-content: center;
    }
}


/* --- IMPACT DASHBOARD --- */
.impact-dashboard {
    padding: 100px 0;
    background: var(--dark-bg); /* Use a dark background to contrast with the white Programs section */
    color: white;
}

.impact-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--teal);
}

.stat-image {
    position: relative;
    height: 200px;
}

.stat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* The Big Number Overlay */
.stat-number-overlay {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--coral);
    color: white;
    font-size: 2rem;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.stat-info {
    padding: 40px 25px 30px;
}

.stat-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--teal);
}

.stat-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}


/* --- PHOTO GALLERY --- */
.photo-gallery-section {
    padding: 100px 0;
    background: #f9fdfd;
}

.gallery-swiper {
    padding: 40px 0 60px;
    width: 100%;
}

.gallery-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 45, 45, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Heading and Subheading Overlay */
.gallery-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0, 45, 45, 0.9));
    color: white;
}

.gallery-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.gallery-text p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Customizing Navigation Arrows */
.swiper-button-next, .swiper-button-prev {
    color: var(--teal) !important;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}


/* --- DEDICATED TESTING HUB --- */
.dedicated-testing {
    padding: 120px 0;
    background: #f4fcfc;
}

.testing-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.info-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 45, 45, 0.05);
    display: flex;
    flex-direction: column;
}

.info-visual {
    height: 250px;
}

.info-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content {
    padding: 40px;
}

.info-content h3 {
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

/* Location and Form Box */
.location-cta-box {
    background: var(--dark-bg);
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    overflow: hidden;
    color: white;
}

.location-details {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(45deg, #002d2d, #004d4d);
}

.loc-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.loc-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.open-hours {
    display: inline-block;
    margin-top: 20px;
    color: var(--teal);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Booking Form */
.booking-form-wrapper {
    padding: 60px;
    background: #ffffff;
    color: var(--dark-bg);
}

.booking-form-wrapper h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.testing-form .form-group {
    margin-bottom: 20px;
}

.testing-form input, .testing-form select {
    width: 100%;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.testing-form input:focus {
    border-color: var(--teal);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e65c40;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .testing-info-grid, .location-cta-box {
        grid-template-columns: 1fr;
    }
    .location-details, .booking-form-wrapper {
        padding: 40px 30px;
    }
}


/* --- WARRIOR STORIES --- */
.warrior-stories {
    padding: 120px 0;
    background: #ffffff;
}

.stories-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* Featured Story Styling */
.story-feature {
    background: #fdf8f6; /* Very soft coral tint */
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(230, 92, 64, 0.05);
}

.feature-img-box {
    position: relative;
    height: 350px;
}

.feature-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 50px;
}

.story-category {
    color: var(--coral);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.feature-content h3 {
    font-size: 2.2rem;
    margin: 15px 0;
    color: var(--dark-bg);
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

/* Grid Story Cards */
.stories-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    border: 1px solid #eee;
    transition: 0.3s ease;
}

.story-card:hover {
    border-color: var(--teal);
    transform: translateX(10px);
}

.card-quote p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--dark-bg);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--teal);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .stories-layout {
        grid-template-columns: 1fr;
    }
    .feature-content {
        padding: 30px;
    }
}


/* --- FLIP CARD GRID --- */
.myth-flip-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.flip-card-wrapper {
    perspective: 1000px;
    height: 350px;
    cursor: pointer;
}

.flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Class added via JS */
.flip-card-wrapper.is-flipped .flip-card {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* Front Side (Myth) */
.flip-card-front {
    background: white;
    border: 1px solid #eee;
}

.myth-badge {
    color: #e65c40;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.flip-card-front h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    line-height: 1.4;
}

.flip-hint {
    margin-top: auto;
    font-size: 0.8rem;
    color: #6c4141;
}

/* Back Side (Fact) */
.flip-card-back {
    background: var(--teal);
    color: white;
    transform: rotateY(180deg);
}

.fact-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.flip-card-back p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .flip-grid {
        grid-template-columns: 1fr;
    }
}




/*   Get Involved Section   */
/* --- GET INVOLVED HERO --- */
.involved-hero {
    padding: 160px 0 100px;
    background-color: rgba(255, 255, 255, 0.05);
    background-image: radial-gradient(var(--teal) 0.5px, transparent 0.5px);
    background-size: 30px 30px; /* Subtle dot pattern */
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 128, 128, 0.1);
    color: var(--teal);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-text-box h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--dark-bg);
    margin-bottom: 25px;
}

.hero-text-box p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

/* Mini Stats for Trust */
.hero-stats-mini {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.mini-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--coral);
}

.mini-stat span {
    font-size: 0.85rem;
    color: #777;
    text-transform: uppercase;
}

/* Hero Image & Badge */
.image-wrapper {
    position: relative;
}

.image-wrapper img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 45, 45, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .count {
    font-size: 2rem;
    font-weight: 900;
    color: var(--teal);
}

.experience-badge .label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; }
    .hero-text-box h1 { font-size: 2.8rem; }
    .hero-stats-mini { justify-content: center; }
    .hero-image-box { margin-top: 50px; }
    .experience-badge { left: 20px; }
}

/* --- PARTNERSHIP OPPORTUNITIES --- */
.partnership-opportunities {
    padding: 100px 0;
    background: #ffffff;
}

.opps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.opp-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.opp-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 20px 50px rgba(0, 128, 128, 0.08);
}

.opp-icon-box {
    width: 70px;
    height: 70px;
    background: #f4fcfc;
    color: var(--teal);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.opp-card h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.opp-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.opp-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.opp-list li {
    font-size: 0.85rem;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.opp-list li::before {
    content: "→";
    color: var(--coral);
    margin-right: 10px;
    font-weight: bold;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .opp-card { padding: 30px; }
}

/* --- PARTNERSHIP CTA FOOTER --- */
.partnership-cta-footer {
    margin-top: 80px;
    background: var(--dark-bg);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

/* Decorative background circle */
.partnership-cta-footer::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-content {
    max-width: 60%;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 250px;
}

.btn-main {
    background: var(--coral);
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    background: #e65c40;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 92, 64, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .partnership-cta-footer {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .cta-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .cta-actions {
        width: 100%;
    }
}


/* --- VOLUNTEER SECTION (NO ICONS VERSION) --- */

/* The 'Icon' Image Styles */
.role-image-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f4fcfc;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.role-image-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the face/action is centered */
    transition: transform 0.5s ease;
}

.role-card:hover .role-image-icon img {
    transform: scale(1.1);
}

/* Mini Images for Checklist */
.mini-img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 2px;
}

/* Perks List adjustment */
.perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Card Styling */
.role-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.role-card:hover {
    border-color: var(--teal);
    box-shadow: 0 15px 30px rgba(0, 128, 128, 0.05);
    transform: translateX(10px);
}

/* ... (Remaining styles from previous message for layout) ... */
/* --- VOLUNTEER SECTION --- */
.volunteer-section {
    padding: 100px 0;
    background: #ffffff;
}

.volunteer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-top: 60px;
}

/* Intro & Perks */
.welcome-card {
    background: #f4fcfc; /* Soft Teal tint */
    padding: 40px;
    border-radius: 30px;
    margin-bottom: 40px;
}

.welcome-card h3 {
    margin-bottom: 25px;
    color: var(--dark-bg);
}

.perks-list {
    list-style: none;
    padding: 0;
}

.perks-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
}

.perks-list i {
    color: var(--teal);
    margin-top: 4px;
}

.main-v-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Role Cards */
.volunteer-roles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.role-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    transition: 0.3s ease;
}

.role-card:hover {
    border-color: var(--coral);
    transform: translateX(10px);
}

.role-icon {
    width: 60px;
    height: 60px;
    background: #fdf8f6; /* Soft Coral tint */
    color: var(--coral);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.role-info h4 {
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.role-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Apply Box */
.apply-box {
    margin-top: 20px;
    padding: 30px;
    background: var(--dark-bg);
    border-radius: 25px;
    color: white;
    text-align: center;
}

.btn-volunteer {
    display: inline-block;
    background: var(--coral);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-volunteer:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .volunteer-content-grid { grid-template-columns: 1fr; }
}


/* --- AMBASSADOR SECTION --- */
.ambassador-section {
    padding: 120px 0;
    background: #fdf8f6; /* Very light coral tint to differentiate from the volunteer white */
}

.ambassador-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Featured Card Styling */
.ambassador-featured-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.main-ambassador-img {
    width: 100%;
    display: block;
    filter: grayscale(20%);
    transition: 0.5s;
}

.ambassador-featured-card:hover .main-ambassador-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.ambassador-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 45, 45, 0.9));
    color: white;
}

.ambassador-quote p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.ambassador-quote span {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--teal);
}

/* Path Items (Replacing Icons) */
.ambassador-paths {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.path-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.path-img {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.path-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.path-text h4 {
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.path-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.ambassador-cta {
    margin-top: 40px;
}

.small-note {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

@media (max-width: 992px) {
    .ambassador-grid { grid-template-columns: 1fr; }
    .ambassador-image-side { order: 2; }
    .ambassador-content { order: 1; }
}


.form-wrapper {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 45, 45, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-bg);
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--teal);
    outline: none;
}

.full-width { grid-column: span 2; }

.btn-submit {
    background: var(--coral);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e65c40;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .form-wrapper { padding: 40px 25px; }
}


/* Thank you html */
.thank-you-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4fcfc;
    text-align: center;
    padding: 20px;
}

.thank-you-card {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(0, 45, 45, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.success-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #e0f2f2;
}

.success-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thank-you-card h1 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.thank-you-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Redirect & Progress Bar */
.redirect-info {
    margin-bottom: 40px;
}

.redirect-info p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--teal);
    font-weight: 700;
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 100%;
    height: 100%;
    background: var(--teal);
    transition: width 1s linear;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-secondary {
    background: none;
    border: 2px solid #eee;
    color: #777;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-secondary:hover {
    border-color: var(--teal);
    color: var(--teal);
}


/* --- RECRUITMENT PROCESS --- */
.recruitment-process {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.process-path {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
}

/* Horizontal line connecting cards (Desktop only) */
@media (min-width: 992px) {
    .process-path::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: #f0f0f0;
        z-index: 1;
    }
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.step-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: var(--coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(230, 92, 64, 0.3);
}

.step-info h4 {
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step-info p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .process-path {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* --- INVOLVEMENT FAQ --- */
.get-involved-faq {
    padding: 80px 5%;
    background-color: #ffffff;
}

.faq-accordion-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #dce4ed;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 20px 10px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #002d2d; /* SCCAU Dark Teal */
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #e65c40; /* SCCAU Coral */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fcfcfc;
}

.faq-answer p {
    padding: 0 10px 20px;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Logic for opening the accordion */
.faq-item.active .faq-answer {
    max-height: 500px; /* Increased to ensure all SCCAU text shows */
}

.faq-item.active .faq-question {
    color: #e65c40; /* SCCAU Coral */
}

.faq-item.active .icon {
    transform: rotate(45deg);
    display: inline-block;
    color: #e65c40;
}

/* --- LAYOUT & HEADER STYLES --- */

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-header-centered h2 {
    font-size: 2.5rem;
    color: #002d2d; /* SCCAU Dark Teal */
    margin: 15px 0;
    font-weight: 800;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* --- SUBTITLE TAG STYLE --- */

.subtitle-tag {
    display: inline-block;
    background: rgba(0, 128, 128, 0.1); /* Light Teal background */
    color: #008080; /* SCCAU Teal */
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- CONTAINER ADJUSTMENT --- */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- ICON DYNAMICS --- */

.icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: #008080;
    transition: transform 0.4s ease, color 0.3s ease;
    line-height: 1;
}
/* --- CLINICAL SERVICES STYLES --- */
.clinical-section {
    padding: 100px 0;
    background: #ffffff;
    text-align: center; /* Ensures global text centering */
}

.clinical-header {
    max-width: 800px;
    margin: 0 auto 60px; /* Centering the header box */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center-aligns card contents */
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--teal);
    box-shadow: 0 20px 40px rgba(0, 128, 128, 0.05);
}

.service-visual {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 4px solid #f4fcfc;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info h3 {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.service-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.clinical-cta {
    margin-top: 40px;
    padding: 40px;
    background: #f4fcfc;
    border-radius: 25px;
    display: inline-block; /* Keeps the box sized to content and centered */
    width: 100%;
    max-width: 700px;
}

.clinical-cta p {
    margin-bottom: 20px;
    color: var(--dark-bg);
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}


/* --- FOLLOW OUR JOURNEY --- */
.social-journey {
    padding: 100px 0;
    background: #fdf8f6; /* Soft coral tint */
    text-align: center;
}

.journey-header {
    margin-bottom: 60px;
}

.social-image-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-card {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}

.social-thumb {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.social-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-card span {
    font-weight: 700;
    color: var(--dark-bg);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Hover Effects */
.social-card:hover {
    transform: translateY(-8px);
}

.social-card:hover .social-thumb {
    border-color: var(--teal);
    box-shadow: 0 15px 30px rgba(0, 128, 128, 0.15);
}

.social-card:hover span {
    color: var(--teal);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .social-image-grid {
        gap: 20px;
    }
    .social-thumb {
        width: 70px;
        height: 70px;
    }
}

/* footer styles 2*/
/* --- 3-COLUMN FOOTER LAYOUT --- */
.main-footer {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr; /* Balanced 3-column split */
    gap: 60px;
    padding: 0 20px;
}

/* Social Image Thumbnails */
.footer-social-images {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-images img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
    transition: 0.3s ease;
}

.footer-social-images img:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
}

/* Middle Column Spacing */
.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    color: var(--teal);
}

/* Map Styling */
.map-container {
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.6s ease;
}

.map-container:hover {
    filter: none;
}

.footer-column h4 {
    color: var(--teal);
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

.namelevate-link {
    color: rgb(4, 189, 189);
    text-decoration: none;
    font-weight: 700;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-map {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social-images {
        justify-content: center;
    }
    .footer-map {
        grid-column: span 1;
    }
}

/* --- DONATION STYLES --- */
.donation-hero {
    background: linear-gradient(rgba(0, 45, 45, 0.85), rgba(0, 45, 45, 0.85)), url('IMAGES/outreach.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.highlight-coral { color: #e65c40; }

.transparency-bar {
    background: #008080;
    color: white;
    padding: 25px 0;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
}

.impact-section { padding: 100px 0; text-align: center; }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.impact-card {
    background: #f4fcfc;
    padding: 50px 30px;
    border-radius: 40px;
    border: 1px solid #e0f2f2;
    transition: 0.4s ease;
}

.impact-visual {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
}

.impact-visual img { width: 100%; height: 100%; object-fit: cover; }

.bank-section { padding: 100px 0; background: #fdfdfd; }

.bank-card {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(0, 45, 45, 0.08);
    text-align: center;
    border-top: 8px solid #e65c40;
}

.bank-details { margin: 40px 0; text-align: left; }

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.detail-item .label { font-size: 0.75rem; color: #999; font-weight: 800; text-transform: uppercase; }
.detail-item .value { font-weight: 700; color: #002d2d; font-family: 'Courier New', Courier, monospace; }

.copy-btn {
    width: 100%;
    background: #008080;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.copy-btn:hover { background: #002d2d; transform: translateY(-3px); }

.security-note { margin-top: 30px; font-size: 0.85rem; color: #666; }


/* --- CONTACT HERO STYLES --- */

/* --- ENHANCED CONTACT HERO STYLES --- */
.contact-hero {
    position: relative;
    padding: 180px 0 140px; /* Increased height */
    background: linear-gradient(rgba(0, 45, 45, 0.85), rgba(0, 45, 45, 0.85)), 
                url('IMAGES/sccau1.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 4rem; /* Larger, more impactful heading */
    margin-bottom: 25px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Status Bar Grid */
.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 40px;
}

.status-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.status-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.status-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: coral;
    margin-bottom: 10px;
    font-weight: 700;
}

.status-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 80px;
    }
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    .status-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 15px;
    }
}


/* --- CONTACT MAIN SECTION --- */
.contact-main {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Form gets more space */
    gap: 60px;
    align-items: start;
}

/* Form Styling */
.contact-form-container {
    background: #f4fcfc;
    padding: 50px;
    border-radius: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #dceaea;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.05);
}

.btn-submit {
    background: var(--teal);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--dark-bg);
    transform: translateY(-2px);
}

/* Info Panel Styling */
.info-card {
    padding: 20px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 1.05rem;
    color: #444;
    font-weight: 600;
}

.info-text span {
    font-size: 0.85rem;
    color: #888;
}

.ngo-status-box {
    margin-top: 40px;
    padding: 30px;
    background: #fff8f6; /* Warm coral tint */
    border-left: 4px solid #e65c40;
    border-radius: 0 20px 20px 0;
}

.ngo-status-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Mobile Tweak */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        padding: 30px;
    }
}


/* Ensure the answer starts completely hidden */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f4fcfc;
}

/* Padding is placed inside a wrapper so it doesn't "pop" when closed */
.answer-content {
    padding: 20px 30px 30px;
}

/* Only show when .active is applied to the parent .faq-item */
.faq-item.active .faq-answer {
    max-height: 1000px; /* High enough to fit content */
}

.faq-item.active .icon-toggle {
    transform: rotate(45deg);
    color: #e65c40; /* Coral highlight when open */
}

/* --- FINAL CTA STYLES --- */
.final-cta {
    padding: 100px 0 140px;
    background-color: #fdfdfd;
}

.cta-card {
    background: #002d2d; /* SCCAU Dark Teal */
    border-radius: 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 45, 45, 0.2);
}

.cta-content {
    padding: 80px;
    color: #ffffff;
}

.cta-subtitle {
    color: #e65c40; /* SCCAU Coral */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.cta-content h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.highlight-coral {
    color: #e65c40;
}

.cta-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

/* Button Styling */
.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #e65c40;
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Image Section */
.cta-image img {
    width: 100%;
    height: 57%;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cta-card {
        grid-template-columns: 1fr;
    }
    .cta-image {
        height: 300px;
        order: -1; /* Image appears on top for mobile */
    }
    .cta-content {
        padding: 50px 30px;
        text-align: center;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* --- changing text animation --- */
.cursor {
    color: coral;
    font-weight: 1000;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}


/* --- WhatsApp STYLES --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Ensures it stays above all other content */
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 60px; /* Adjust size as needed */
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* The "Chat with us" tag */
.wa-tooltip {
    background-color: #25d366; /* WhatsApp Green */
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 1; /* Set to 0 if you only want it to show on hover */
    transition: opacity 0.3s ease;
}

/* Hover Animation */
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive: Make it slightly smaller on mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
    .wa-tooltip {
        display: none; /* Often cleaner to hide the text tag on mobile */
    }
}

/* --- VIDEO SPOTLIGHT STYLES --- */
.video-spotlight-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.custom-video-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #000;
}

.custom-video-container video {
    width: 100%;
    display: block;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#playPauseBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -150%);
    width: 70px;
    height: 70px;
    background: #008080;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0,128,128,0.5);
    transition: 0.3s;
}

#playPauseBtn:hover { transform: translate(-50%, -150%) scale(1.1); }

.video-bottom-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

#progressBar {
    flex-grow: 1;
    accent-color: #008080;
    cursor: pointer;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

.translation-content blockquote {
    font-size: 1.4rem;
    color: #002d2d;
    line-height: 1.6;
    font-style: italic;
    border-left: 4px solid #008080;
    padding-left: 20px;
    margin: 20px 0;
}

.carousel-divider {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.carousel-divider h3 {
    font-size: 1.8rem;
    color: #002d2d;
    background: #fdfdfd;
    display: inline-block;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .video-spotlight-wrapper { grid-template-columns: 1fr; }
}

/* --- Loader STYLES --- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #002d2d; /* Deep SCCAU Teal */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.loader-content {
    text-align: center;
}

/* The Morphing Blood Cell */
.cell-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.blood-cell {
    width: 100%;
    height: 100%;
    background: #e65c40; /* Coral/Red */
    border-radius: 50%;
    animation: pulseCell 2s infinite ease-in-out;
    box-shadow: 0 0 30px rgba(230, 92, 64, 0.4);
}

@keyframes pulseCell {
    0%, 100% { transform: scale(1) rotate(0deg); border-radius: 50%; }
    50% { transform: scale(1.1) rotate(15deg); border-radius: 40% 60% 50% 50%; }
}

/* Loading Typography */
.loader-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sub-text2 {
    font-weight: 300;
    font-size: 1rem;
    color: rgb(170, 211, 228); /* Brighter Teal */
}

/* Progress Bar */
.progress-container {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #008080, #e65c40);
    transition: width 0.1s linear;
}

.progress-text {
    color: #ffffff;
    margin-top: 10px;
    font-family: monospace;
    font-size: 1.2rem;
}

/* Class to fade out loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}