/* INDEX.CSS */

/* ============================================
   HERO SECTION (Home)
   ============================================ */
.hero-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 34rem;
    min-height: 14.5rem;
    position: relative;
    overflow: hidden;
    background: #000;
}

.home-yt-player-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-yt-player-container iframe,
#home-yt-player {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.hero-content {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 51.25rem;
    margin: 0 auto;
    position: relative;
}

.hero-cta-float {
    position: absolute;
    right: 2rem;
    top: 2rem;
}

.hero-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 4rem;
    line-height: 1.1;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--black);
    margin: 1rem 0rem;
    font-weight: 400;
}

.hero-divider {
    width: 100%;
    height: 1px;
    background: var(--green-light);
    margin: 1rem auto;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-desc {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--black);
    max-width: 41.065rem;
    margin: 0 auto 0rem;
    margin-top: 2rem;
}


/* ============================================
   COMMITMENT SECTION
   ============================================ */
.commitment-section {
    padding: 0rem 0;
    background: var(--white);
}

.commitment-card {
    background: var(--green-faint);
    padding: 4rem 3rem 2rem 3rem;
}

.commitment-header-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.commitment-heading {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 3rem;
    color: var(--green-light);
    line-height: 1.15;
}

.commitment-heading-line {
    flex: 1;
    height: 1px;
    background: var(--orange);
}

.commitment-grid {
    display: grid;
    grid-template-columns: 2.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
    text-align: justify;
}

@media (max-width: 768px) {
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .commitment-pillars {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
        justify-content: center;
    }

    .pillar-item {
        flex: 0 0 calc(50% - 0.75rem);
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        font-size: 1rem;
    }
}

.commitment-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.commitment-text-block {
    position: relative;
    padding-left: 1rem;
}

.commitment-text-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    bottom: 0;
    width: 1px;
    background: var(--green-light);
    height: 50%;
}

.commitment-text {
    font-size: 1.5rem;
    line-height: 2.2rem;
    color: var(--black);
}

.commitment-pillars {
    display: flex;
    flex-direction: column;
    padding-top: 0.5rem;
    gap: 2.25rem;
}

.pillar-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
}

.pillar-icon-img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}


/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
    position: relative;
    height: 32.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.experience-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.experience-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-content {
    position: relative;
    z-index: 2;
    padding: 0 6rem;
    color: var(--white);
}

.experience-years {
    font-family: var(--font-brand);
    font-weight: 500;
    font-size: 9rem;
    line-height: 1;
    color: var(--white);
}
.experience-years-label{
    font-size: 6rem;
}

.experience-years span {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 9rem;
}

.experience-subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.experience-tagline {
    font-family: var(--font-brand);
    font-weight: 600;
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.experience-desc {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.75rem;
    color: var(--white);
    max-width: 42.5rem;
}


/* ============================================
   OUR SEEDS SECTION
   ============================================ */
.seeds-section {
    padding: 2rem 0;
    background: var(--white);
}

.seeds-section-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 3rem;
    color: var(--orange);
    text-align: center;
    margin-bottom: 4.5rem;
}

.seed-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.seed-col-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--green-light);
    position: relative;
    padding-bottom: 0.5rem;
}

.seed-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background: var(--orange);
    opacity: 0.3;
}

.seed-circle {
    width: 42rem;
    height: 42rem;
    border-radius: 50%;
    background: #F6F8F4;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem;
    text-align: center;
}

.seed-img-container {
    height: 21.5rem;
    display: flex;
    align-items: center;

    @media (max-width: 768px) {
        height: 11rem;
    }
}

.seed-circle img {
    max-height: 21.5rem;
    object-fit: contain;
}

.seed-circle-text {
    font-size: 2rem;
    line-height: 1.6;
    color: var(--black);
    max-width: 85%;
}

.seeds-central-badge {
    width: 12.5rem;
    height: 12.5rem;
    background: rgba(153, 202, 173, 0.9);
    border-radius: 50%;
    box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -20%);
    border: 1rem solid #99CAAD;
}



@media (max-width: 768px) {
    .seed-circle {
        width: 85vw;
        height: 85vw;
        max-width: 26rem;
        max-height: 26rem;
    }

    .seed-circle img {
        /* max-width: 50%; */
        max-height: 90%;
        /* height: 50%; */
        /* width: 50%; */
        /* margin-bottom: 1rem; */
    }

    .seed-circle-text {
        font-size: 1.25rem;
    }

    .seeds-central-badge {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 8rem;
        height: 8rem;
        border-width: 0.5rem;
        margin: 0 auto;
        order: 10;
    }

    .seeds-circle-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .seed-col-title {
        font-size: 1.75rem;
    }

    .seeds-section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .seeds-badge-lbl {
        font-size: 1rem;
    }
}

.seeds-badge-val {
    font-family: var(--font-body);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: #734531;

    @media (max-width: 768px) {
        font-size: 2rem;
    }
}

.seeds-badge-lbl {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.25rem;
    color: #734531;
}

.seeds-circle-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    position: relative;
    margin-top: 3rem;

}

@media (max-width: 992px) {
    .seeds-circle-container {
        flex-direction: column;
        gap: 4rem;
    }
}


/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 5rem 0 6rem;
    background: #fff;
}

.services-heading {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 3rem;
    color: var(--green-light);
    text-align: left;
    max-width: 64rem;
    line-height: 1.4;
    padding-left: 4rem;
    padding-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    overflow: hidden;
    position: relative;
    height: 20rem;
    cursor: pointer;
    transition: transform .3s;
}

.service-card:hover {
    transform: translateY(-0.375rem);
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform .5s;
}

.service-card-title-img {
    margin-left: -1rem;
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    padding-bottom: 1rem;
    max-width: 5rem;
    color: var(--white);
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    width: 100%;
    height: 30rem; /* 480px */
    overflow: hidden;
}

.cta-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 90rem; /* 1440px */
    height: 100%;
    margin: 0 auto;
}

.cta-banner-heading {
    position: absolute;
    left: 5.0625rem; /* 81px */
    top: 10.375rem; /* 166px (5233px - 5067px) */
    width: 35rem;
    height: 9rem; /* 144px */
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 4.375rem; /* 70px */
    line-height: 5rem; /* 80px */
    color: #FFFFFF;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.cta-heading-offset {
    margin-left: 10.5rem; /* Offset for "About Us" */
    display: inline-block;
}

.cta-banner-btn {
    position: absolute;
    left: 67.4375rem; /* 1079px */
    top: 19.375rem; /* 310px (5377px - 5067px) */
    width: 17.75rem; /* 284px */
    height: 3.6875rem; /* 59px */
    background: #FFFFFF;
    border-radius: 1.875rem; /* 30px */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem; /* 24px */
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 2rem; /* 32px */
    line-height: 1.5rem; /* 24px */
    color: #333333;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cta-banner-btn:hover {
    background: #FFFFFF;
    color: #F07235;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1200px) {
    .cta-banner-heading {
        left: 3rem;
        font-size: 3.5rem;
        line-height: 4rem;
        width: 30rem;
    }

    .cta-heading-offset {
        margin-left: 3.5rem;
    }

    .cta-banner-btn {
        left: auto;
        right: 3rem;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 3.5rem 0 4rem;
    }

    .services-heading {
        font-size: 2rem;
        line-height: 1.35;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        max-width: 100%;
        text-align: left;
    }

    .cta-banner {
        height: auto;
        min-height: 24rem;
        padding: 4.5rem 0;
    }

    .cta-banner-content {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        padding: 0 2rem;
    }

    .cta-banner-heading {
        position: static;
        width: 100%;
        height: auto;
        font-size: 3rem;
        line-height: 1.2;
        text-align: center;
        align-items: center;
    }

    .cta-heading-offset {
        margin-left: 2rem;
    }

    .cta-banner-btn {
        position: static;
        width: auto;
        min-width: 15rem;
        height: auto;
        padding: 0.875rem 2.5rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 2.5rem 0 3rem;
    }

    .services-heading {
        font-size: 1.45rem;
        line-height: 1.35;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cta-banner-heading {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    .cta-heading-offset {
        margin-left: 1.25rem;
    }

    .cta-banner-btn {
        font-size: 1.25rem;
        padding: 0.625rem 2rem;
    }
}



