:root {
    /* Base Colors */
    --color_white: #fff;
    --color_black: #000000;
    --color_green_dark: #26572B;
    --color_brown_dark: #3A2D1B;

    /* UI Colors */
    --color_background: #F4F2EB;
    --color_border: rgba(143, 101, 59, 0.3);

    /* Font Families */
    --font-forum: "Forum", serif;
    --font-taviraj: "Taviraj", serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

* {
    margin: 0;
}

body {
    background-color: var(--color_background);
    color: var(--color_black);
    font-family: var(--font-forum);

    padding: 0;
}

/* Typography */
h5 {
    font-family: var(--font-taviraj);
}

.c-mb-12 {
    margin-bottom: 12px;
}

.c-mb-16 {
    margin-bottom: 16px;
}

.c-mb-24 {
    margin-bottom: 24px;
}

.c-mb-32 {
    margin-bottom: 32px;
}

.c-mb-40 {
    margin-bottom: 40px;
}

.text-color-green {
    color: var(--color_green_dark);
}

section {
    margin: 0 auto;
}

/* Sections */
.section-header {
    max-width: 1280px;
    padding: 24px 0;
    display: flex;
    justify-content: flex-end;
}



.btn-style-1 {
    padding: 8px 16px;
    border: 1px solid var(--color_green_dark);
    color: var(--color_green_dark);
    text-align: center;
    font-size: 16px;

    font-weight: 400;
    line-height: 24px;
    text-decoration: none;

}
a.btn-style-1:hover {
    background: #26572b;
    color: white;
}
.btn-style-2 {
    padding: 8px 16px;
    border: 1px solid var(--color_white);
    color: var(--color_white);
    text-align: center;
    font-family: var(--font-forum);
    font-size: 16px;

    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
}
.btn-style-2:hover {
    background: white;
    color: #26572b;
    border: solid 1px #fff;
}

.section-hero {
    max-width: 1280px;
    padding: 48px 0;
    border-bottom: 1px solid var(--color_border);
    border-top: 1px solid var(--color_border);

}


.section-hero .left-col {
    width: 40%;
    padding: 0;

}

.section-hero .right-col {
    width: 60%;
    display: flex;
    align-items: center;
    padding: 0;
}

.heading-style-1 {
    color: var(--color_black);
    text-align: center;
    font-size: 56px;

    font-weight: 400;
    line-height: 56px;
    text-transform: uppercase;
    padding-right: 74px;
}

.hero-logo {
    width: 308px;
    margin-left: 100px;
    aspect-ratio: 308 / 279;
}

.section-about {
    max-width: 1280px;
    padding: 80px 0 100px 0;
}

.section-about .col-md-6 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}


.sub-title {
    color: var(--color_green_dark);
    text-align: center;
    font-family: var(--font-taviraj);
    font-size: 16px;

    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;

}

.heading-style-2 {
    color: var(--color_black);
    font-size: 48px;

    font-weight: 400;
    line-height: 56px;
    text-transform: uppercase;
}

.text-style-1 {
    color: var(--color_black);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.text-style-2 {
    color: var(--color_black);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;

}

.text-style-3 {
    color: var(--color_black);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;

}

.section-about .left-col {
    padding-right: 80px;
}

.section-timeline {
    max-width: 1280px;
}

.timeline-top {
    padding: 32px 10px;
    border-bottom: 1px solid var(--color_border);
    border-top: 1px solid var(--color_border);
}


/* TIMELINE STYLES */
.timeline {
    display: flex;
    flex-direction: column;
    max-width: 1063px;
    margin: 100px auto 144px auto;
    padding: 0;
    gap: 85px;
    position: relative;
    /* ✅ Needed for absolute line */
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(143, 101, 59, 0.3);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 235px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--color_green_dark);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.timeline-left,
.timeline-right {
    flex: 1;
    max-width: 50%;
}


/* Typography */
.timeline-sub-title {
    color: black;
    font-family: var(--font-taviraj);
    font-size: 16px;

    font-weight: 500;
    line-height: 24px;
    /* 150% */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-heading {
    color: var(--color_green_dark);
    font-family: var(--font-taviraj);
    font-size: 40px;

    font-weight: 500;
    line-height: 48px;
    /* 120% */
    text-transform: uppercase;
    margin-bottom: 16px;
}



.timeline-right img {
    width: 100%;
    height: auto;
    border: 3px solid #F6F4EE;
    background-color: lightgray;
}

.timeline-item img {
    width: 100%;
}

.timeline-item-1 img {
    box-shadow: 0px 10px 34px rgba(50, 32, 14, 0.2);
}

.timeline-item-2 img {
    box-shadow: 0px -10.572px 30px rgba(0, 0, 0, 0.1);
}

.timeline-item-3 img {
    box-shadow: 0px -10.572px 30px rgba(0, 0, 0, 0.1);
}

.timeline-item-4 img {
    box-shadow: -12px -5px 30px rgba(0, 0, 0, 0.08);
}

.timeline-item-5 {
    background: none;
    filter: drop-shadow(0px 10px 34px rgba(50, 32, 14, 0.20));
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Section CTA  */
.section-cta {
    max-width: 1280px;
    background: var(--color_green_dark);
    margin-bottom: 104px;
}

.section-cta .row {
    margin: auto;
}

.section-cta .left-col,
.section-cta .right-col {
    padding: 0;
}

.section-cta .left-col {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.section-cta .cta-wrapper {
    padding: 56px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.section-team {
    max-width: 1280px;
}


.section-team .left-col {
    width: 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-team .right-col {
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.team-top {
    padding: 32px 10px;
    border-bottom: 1px solid var(--color_border);
    border-top: 1px solid var(--color_border);
}


.team-wrapper-1 {
    padding: 40px 0;
    border-bottom: 1px solid var(--color_border);
}

.team-wrapper-1 .team-name {
    color: var(--color_green_dark);
    text-align: center;
    font-family: var(--font-taviraj);
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;

}

.team-wrapper-1 .team-position {
    color: var(--color_brown_dark);
    text-align: center;
    font-family: var(--font-forum);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;

}

.team-wrapper-1 .team-item {
    padding: 0 36px;
}



.team-wrapper {
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(4, 1fr);
    padding: 104px 0 80px 0;
    border-bottom: 1px solid var(--color_border);
    margin-bottom: 48px;
}

.team-wrapper .team-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.team-wrapper .team-name {
    color: var(--color_green_dark);
    font-family: var(--font-taviraj);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    /* 150% */

}

.team-wrapper .team-position {
    color: var(--color_brown_dark);
    font-family: var(--font-forum);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}


@media (max-width: 1290px) {
    .section {
        width: 94%;
        max-width: 94%;
    }


}

@media (max-width: 1290px) {

    .hero-logo {
        margin-left: 50px;
    }

    .heading-style-1 {
        font-size: 56px;
        line-height: 56px;
        padding-right: 30px;
    }

    .heading-style-2 {
        font-size: 44px;
        line-height: 52px;
    }
}

@media (max-width:1160px) {

    .heading-style-1 {
        font-size: 48px;
        line-height: 48px;
    }

    .heading-style-2 {
        font-size: 38px;
        line-height: 46px;
    }

    .timeline-heading {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .timeline {
        margin-bottom: 100px;
    }

}

@media (max-width:1076px) {
    .section-about .left-col {
        padding-right: 50px;
    }

    .heading-style-1 {
        font-size: 48px;
        line-height: 48px;
    }

    .heading-style-2 {
        font-size: 38px;
        line-height: 46px;
    }

    .timeline-heading {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .timeline {
        margin-bottom: 100px;
    }

}


@media (max-width:1032px) {
    .section-about .left-col {
        padding-right: 30px;
    }

    .heading-style-1 {
        font-size: 40px;
        line-height: 40px;
    }

    .heading-style-2 {
        font-size: 34px;
        line-height: 42px;
    }

    .timeline-heading {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .timeline {
        margin-bottom: 100px;
    }

    .timeline-item {
        gap: 100px;
    }
}

@media (max-width:952px) {
    .hero-logo {
        margin-left: 0;
    }

    .team-wrapper {
        display: grid;
        gap: 50px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:866px) {
    .hero-logo {
        margin-left: 0;
        width: 60%;
    }

    .team-wrapper {
        display: grid;
        gap: 50px;
        grid-template-columns: repeat(2, 1fr);
    }

    .heading-style-1 {
        font-size: 34px;
        line-height: 34px;
    }

    .heading-style-2 {
        font-size: 28px;
        line-height: 36px;
    }

    .timeline-heading {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .timeline {
        margin-bottom: 100px;
    }

    .timeline-item {
        gap: 100px;
    }

    .text-style-3 {
        font-size: 16px;
        line-height: 24px;
    }

    .team-wrapper-1 .team-name {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
    }

    .team-wrapper .team-position {
        font-size: 16px;
        line-height: 24px;
    }
}

/* Responsive layout */
@media (max-width: 767px) {
    .sub-title {
        margin-bottom: 10px;
    }

    .heading-style-2.c-mb-24 {
        margin-bottom: 14px;
    }

    .section-about .text-style-1 {
        margin-bottom: 24px;
    }

    .timeline-item {
        gap: 50px;
    }
}

/* Responsive layout */
@media (max-width: 600px) {
    .section {
        width: 100%;
        max-width: 100%;
    }

    .section-about .left-col {
        padding-right: 12px;
        padding-left: 12px;
    }

    body {
        padding: 0 20px;
    }

    .hero-logo {
        width: 80%;
        margin-left: 14px;
    }

    .section-hero .left-col {
        width: 30%;
    }

    .section-hero .right-col {
        width: 70%;
    }

    .heading-style-1 {
        font-size: 30px;
        line-height: 30px;
        padding-right: 0;
    }

    .timeline {
        margin-top: 90px;

        margin-bottom: 90px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        padding-left: 30px;
        gap: 30px;
    }

    .timeline-left,
    .timeline-right {
        max-width: 100%;
        text-align: left;
        width: 100%;
    }


    .timeline-center {
        display: none;
    }

    .timeline::before,
    .timeline-item::before {
        left: 11px;
    }

    .timeline-item::before {
        top: 6px;
    }

    .timeline-item-1::before {
        top: 0;
    }

    .m-column-reverse {
        flex-direction: column-reverse;
    }

    .team-wrapper-1 .row {
        flex-direction: column;
    }

    .section-team .left-col,
    .section-team .right-col {
        width: 100%;
    }

    .team-wrapper-1 .team-item {
        padding: 24px 0;
    }

    .text-style-3 {
        margin-bottom: 20px;
    }

    .team-wrapper-1 .team-name {
        margin-bottom: 10px;
    }

    .team-wrapper {
        display: grid;
        gap: 50px;
        grid-template-columns: repeat(1, 1fr);
    }
    
}

/* Responsive layout */
@media (max-width: 450px) {
    body {
        padding: 0 10px;
    }

    .section-hero .left-col,
    .section-hero .right-col {
        width: 100%;
        text-align: center;
    }

    .hero-logo {
        width: 150px;
        margin-left: 0;
        margin-bottom: 30px;
    }
    


}

@media (max-width: 450px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }
    section .row {
    margin-left: 0;
    margin-right: 0;
    }
    .heading-style-1 {
        font-size: 26px;
        line-height: 26px;
    }

    .heading-style-2 {
        font-size: 23px;
        line-height: 31px;
    }

    .sub-title {
        font-size: 14px;
    }
    .section-cta .cta-wrapper {
    padding: 56px 10px;
    }
    
    section.section.section-cta {
        margin-bottom: 50px;
    }
    
    .team-wrapper {
        padding: 50px 10px 50px;
    }
    
    section.section.section-about {
        padding: 40px 0 50px 0;
    }
    
    .timeline-item {
        padding-left: 20px;
        gap: 20px;
    }
    .timeline-item-1::before {
            top: 12px;
    }
    timeline::before, .timeline-item::before {
        top: 5px;
    }

}