/* =============================
   ABOUT HERO SECTION
   ============================= */
.about-hero-section {
    padding: 100px 0;
    overflow: hidden;
}

/* --- Eyebrow & Heartbeat Animation --- */
.about-eyebrow-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.eyebrow-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    /* Updated: Orange Accent */
    color: var(--color-accent);
    text-transform: uppercase;
}

/* The Pulsing Dot */
.pulsing-dot {
    width: 5px;
    height: 5px;
    /* Updated: Orange Accent */
    background-color: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    animation: heartBeat 4s infinite ease-in-out;
}

@keyframes heartBeat {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Typography --- */
.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    /* Updated: Dark Green Brand Color */
    color: var(--color-primary);
    line-height: 1.15;
    margin-bottom: 25px;
}

.about-description {
    font-size: 1.1rem;
    /* Updated: 50% Opacity Green */
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 90%;
}

/* --- Primary Pill Button --- */
/* Renamed class to be more generic, update HTML to match if you want */
.btn-black-pill {
    /* Updated: Dark Green Background */
    background-color: var(--color-primary);
    color: var(--text-on-dark);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid transparent;
}

.btn-black-pill:hover {
    /* Updated: Orange on hover */
    background-color: var(--color-accent);
    color: var(--text-on-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 53, 43, 0.15); /* Shadow using primary color hue */
}

/* --- Simplified Image Grid --- */
.about-image-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    height: 500px;
}

.grid-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    /* Optional: Add a subtle border using your variable */
    border: 1px solid white;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.item-main { height: 100%; }

.grid-column-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.item-small { flex: 1; }

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .about-hero-section { padding: 60px 0; }
    .about-title { font-size: 2.5rem; }

    .about-image-grid {
        height: auto;
        grid-template-columns: 1fr;
    }
    .item-main { height: 300px; }
    .grid-column-stack {
        flex-direction: row;
        height: 200px;
    }
}

/* =============================
   MISSION, VISION & VALUES
   ============================= */
.mission-section {
    padding: 80px 0;
    background-color: white;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    /* THE THICK GREEN BORDER LEFT */
    border-left: 6px solid var(--color-primary);
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    margin-bottom: 20px;
}

.mvv-icon i {
    font-size: 2rem; /* Size of the big icon */
    color: var(--color-primary); /* Dark Green */
}

/* Update the List Icon styling */
.mvv-list li i {
    color: #2ecc71; /* Green check color */
    font-size: 1rem;
    width: 20px; /* Fixed width to align text if icon sizes vary */
    text-align: center;
}

.mvv-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    fill: var(--color-primary); /* Filled style like image */
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.mvv-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Values List */
.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
}

.mvv-list li svg {
    width: 18px;
    height: 18px;
    color: #2ecc71; /* Green check */
}


/* =============================
   WHAT WE DO SECTION
   ============================= */
.what-we-do-section {
    padding: 80px 0;
    background-color: var(--color-primary); /* Your Dark Green Brand Color */
    color: white;
}

.section-title-light {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-intro-light {
    color: rgba(255, 255, 255, 0.7); /* Slightly transparent white */
    font-size: 1.1rem;
}

/* Service Card Styling */
.service-card {
    display: block; /* Makes the anchor tag fill the area */
    text-align: center;
    padding: 30px 20px;
    text-decoration: none; /* Removes underline from links */
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.service-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
}

/* Icons */
.service-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

/* Titles */
.service-title {
    color: var(--color-accent); /* Your Orange Brand Color */
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: opacity 0.3s;
}

.service-card:hover .service-title {
    opacity: 0.9;
}

/* Subtitles */
.service-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================
   FOUNDER SECTION (Compact & Bold)
   ============================= */
.founder-section {
    padding: 80px 0;
    background-color: var(--color-bg-cream);
}

/* BIG BOLD HEADING */
.founder-main-heading {
    font-size: 2.5rem; /* Very big */
    font-weight: 800;  /* Extra Bold */
    color: var(--color-primary);
    margin-bottom: 10px;
    letter-spacing: -1px; /* Tight lettering for impact */
    text-transform: capitalize;
}

/* Orange Separator Line */
.heading-separator {
    width: 80px;
    height: 5px;
    background-color: var(--color-accent); /* Orange */
    margin: 0 auto;
    border-radius: 10px;
}

/* Card Container */
.founder-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 53, 43, 0.15);
    max-width: 1300px; /* Constrains width slightly */
    margin: 40px auto 0; /* Centers the card */
    height: 600px;
}

/* Left: Image */
.founder-image-wrapper {
    height: 80%;
    min-height: 100%;
    position: relative;
}

.founder-img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    object-position: top center; /* Focus on face */
}

/* Right: Content - COMPACT PADDING */
.founder-content {
    background-color: var(--color-primary); /* Dark Green */
    padding: 40px 40px; /* Reduced vertical padding to shrink height */
    height: 80%;
    color: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Name */
.founder-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

/* Role */
.founder-role {
    color: var(--color-accent); /* Orange */
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Bio Text */
.founder-bio p {
    font-size: 0.95rem;
    line-height: 1.6; /* Tighter lines for compactness */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px; /* Less space between paragraphs */
    position: relative;
    z-index: 2;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

/* Watermark Icon */
.quote-watermark {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.05); /* Very subtle transparency */
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .founder-main-heading {
        font-size: 2.5rem;
    }

    .founder-image-wrapper {
        height: 350px; /* Fixed height for image on mobile */
    }

    .founder-content {
        padding: 30px 20px;
        height: 100%;
    }

    .founder-img{
        height: 100%;
    }

    .quote-watermark {
        font-size: 2.5rem;
        top: 20px;
        right: 20px;
    }

    .founder-card{
        height:auto;
    }
}