/*==================================================
                ABOUT HERO
==================================================*/

.about-hero{
    position:relative;

    padding-top: 50px;
    padding-bottom: 60px;

    min-height:calc(100vh - 95px);

    display:flex;
    align-items:center;

    overflow:hidden;

    background:url("../images/about/about-farm.jpg")
               center center/cover no-repeat;
}

/*==================================================
                HERO OVERLAY
==================================================*/

.about-hero-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(8,35,14,.72) 0%,
        rgba(8,35,14,.50) 35%,
        rgba(8,35,14,.20) 65%,
        rgba(8,35,14,0) 100%
    );
}

/*==================================================
                CONTENT
==================================================*/

.about-hero-content{
    position:relative;
    z-index:2;

    max-width:620px;

    color:#fff;
}

/*==================================================
                BADGE
==================================================*/

.about-hero .section-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 28px;

    border-radius:50px;

    background:rgba(255,255,255,.92);

    color:#2E7D32;

    font-size:16px;
    font-weight:600;

    backdrop-filter:blur(12px);
}

/*==================================================
                BREADCRUMB
==================================================*/

.breadcrumb{

    margin:30px 0 25px;

    color:#f3f3f3;

    font-size:16px;
}

.breadcrumb a{

    color:#fff;

    text-decoration:none;

    transition:.3s;
}

.breadcrumb a:hover{

    color:#8EDB65;
}

.breadcrumb span{

    margin:0 8px;
}

/*==================================================
                TITLE
==================================================*/

.about-hero h1{

    margin:0 0 25px;

    font-size:4rem;

    font-weight:800;

    line-height:1.08;
}

.about-hero h1 span{

    display:block;

    color:#8EDB65;
}

/*==================================================
                DESCRIPTION
==================================================*/

.about-hero p{

    max-width:560px;

    margin-bottom:40px;

    font-size:1.05rem;

    line-height:1.9;

    color:#F5F5F5;
}





/*==================================================
                TABLET
==================================================*/

@media(max-width:992px){

.about-hero{

    min-height:80vh;

    background-position:center;
}

.about-hero h1{

    font-size:3rem;
}

.about-highlights{

    gap:12px;
}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:768px){

.about-hero{

    min-height:100vh;

    padding:80px 0;

    background-position:center;
}

.about-hero h1{

    font-size:2.4rem;
}

.about-hero p{

    font-size:1rem;

    line-height:1.8;
}

.hero-buttons{

    flex-direction:column;
}

.about-highlights{

    flex-direction:column;
}

.highlight-box{

    width:100%;
}

}




/*==========================================
            OUR STORY
==========================================*/

.our-story{
    padding:100px 0;
    background:#fff;
}

.our-story .section-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.our-story .section-title{
    margin-top:18px;
    font-size:2.8rem;
    font-weight:700;
    color:#1B1B1B;
    line-height:1.2;
}

.our-story .section-title span{
    display:block;
    color:#2E7D32;
}

/*==========================================
            GRID
==========================================*/

.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

/*==========================================
            IMAGE
==========================================*/

.story-image{

    position:relative;
}

.story-image img{

    width:100%;

    height:600px;

    object-fit:cover;

    border-radius:24px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.4s;
}

.story-image img:hover{

    transform:scale(1.02);
}

/* Decorative Box */

.story-image::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#8EDB65;

    border-radius:24px;

    top:-18px;

    left:-18px;

    z-index:-1;
}

/*==========================================
            CONTENT
==========================================*/

.story-content p{

    font-size:1.08rem;

    line-height:1.9;

    color:#555;

    margin-bottom:22px;
}

/*==========================================
            FEATURES
==========================================*/

.story-features{

    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;
}

.story-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 18px;

    border-radius:14px;

    background:#F7FAF7;

    border:1px solid #E6EFE6;

    transition:.35s;
}

.story-item:hover{

    background:#2E7D32;

    color:#fff;

    transform:translateY(-5px);
}

.story-item i{

    color:#2E7D32;

    font-size:18px;

    transition:.35s;
}

.story-item:hover i{

    color:#fff;
}

/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:992px){

.story-grid{

    grid-template-columns:1fr;

    gap:45px;
}

.story-image img{

    height:450px;
}

.story-features{

    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.our-story{

    padding:80px 0;
}

.our-story .section-title{

    font-size:2rem;
}

.story-image img{

    height:350px;
}

.story-features{

    grid-template-columns:1fr;
}

.story-item{

    padding:15px;
}

.story-content p{

    font-size:1rem;
}

}



/*==========================================
        FARM AT A GLANCE
==========================================*/

.farm-glance{

    padding:100px 0;

    background:#F7FAF7;
}

.glance-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;
}

.glance-card{

    background:#fff;

    padding:45px 30px;

    text-align:center;

    border-radius:22px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;
}

.glance-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.number{

    font-size:3rem;

    font-weight:700;

    color:#2E7D32;

    margin-bottom:18px;
}

.glance-card h4{

    font-size:1.3rem;

    margin-bottom:12px;

    color:#222;
}

.glance-card p{

    color:#666;

    line-height:1.8;
}

@media(max-width:992px){

.glance-grid{

    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.farm-glance{

    padding:80px 0;
}

.glance-grid{

    grid-template-columns:1fr;
}

.number{

    font-size:2.5rem;
}

}




/*==========================================
            OUR JOURNEY
==========================================*/
/*==================================================
                OUR JOURNEY
==================================================*/

.journey {
    padding: 100px 0;
    background: #f8fbf6;
}

.journey .section-header {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}

.journey .section-title {
    margin-top: 18px;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c1c;
}

.journey .section-title span {
    display: block;
    color: #2E7D32;
}

.journey .section-description {
    margin-top: 20px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
}


/*==================================================
                JOURNEY CARDS
==================================================*/

.journey-cards {
    max-width: 1000px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/*==================================================
                CARD
==================================================*/

.journey-card {
    position: relative;

    background: #fff;

    border: 1px solid #e4eee4;

    border-radius: 24px;

    padding: 0;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s ease;
}

.journey-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .10);
}


/*==================================================
                YEAR
==================================================*/

.journey-year {
    display: flex;
    align-items: center;

    min-height: 70px;

    padding: 0 28px;

    background: #2E7D32;

    color: #fff;

    font-size: 1.25rem;

    font-weight: 700;

    letter-spacing: .3px;
}


/*==================================================
                CARD CONTENT
==================================================*/

.journey-card-content {
    position: relative;

    padding: 30px;
}

.journey-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-bottom: 20px;

    border-radius: 50%;

    background: #eef8ef;

    color: #2E7D32;

    font-size: .85rem;

    font-weight: 700;
}

.journey-card h3 {
    margin: 0 0 14px;

    color: #222;

    font-size: 1.4rem;

    font-weight: 600;
}

.journey-card p {
    margin: 0;

    color: #666;

    font-size: 1rem;

    line-height: 1.8;
}


/*==================================================
                HIGHLIGHT CARD
==================================================*/

.journey-card:last-child {
    grid-column: 1 / -1;

    max-width: 485px;

    width: 100%;

    justify-self: center;
}

.journey-card:last-child .journey-year {
    background: #1f5e2f;
}


/*==================================================
                TABLET
==================================================*/

@media (max-width: 992px) {

    .journey {
        padding: 80px 0;
    }

    .journey-cards {
        grid-template-columns: 1fr 1fr;

        gap: 22px;
    }

    .journey .section-title {
        font-size: 2.4rem;
    }

}


/*==================================================
                MOBILE
==================================================*/

@media (max-width: 768px) {

    .journey {
        padding: 70px 0;
    }

    .journey .section-header {
        margin-bottom: 45px;
    }

    .journey .section-title {
        font-size: 2rem;
    }

    .journey .section-description {
        font-size: .95rem;
        line-height: 1.7;
    }

    .journey-cards {
        grid-template-columns: 1fr;

        gap: 20px;

        width: 100%;
    }

    .journey-card {
        width: 100%;
    }

    .journey-card:last-child {
        grid-column: auto;

        max-width: none;
    }

    .journey-year {
        min-height: 60px;

        padding: 0 22px;

        font-size: 1.1rem;
    }

    .journey-card-content {
        padding: 25px;
    }

    .journey-card h3 {
        font-size: 1.25rem;
    }

    .journey-card p {
        font-size: .95rem;

        line-height: 1.75;
    }

}


/*==========================================
            RESPONSIVE
==========================================*/






/*==========================================
        SUSTAINABLE FARMING
==========================================*/

.farming-practices{
    padding:100px 0;
    background:#ffffff;
}

.farming-practices .section-header{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.farming-practices .section-title{
    margin-top:18px;
    font-size:2.8rem;
    font-weight:700;
    line-height:1.2;
    color:#1c1c1c;
}

.farming-practices .section-title span{
    display:block;
    color:#2E7D32;
}

.farming-practices .section-description{
    margin-top:20px;
    font-size:1.05rem;
    color:#666;
    line-height:1.8;
}



.timeline-item::before{
    content:"";
    position:absolute;
    left:104px;
    top:38px;
    width:16px;
    height:16px;
    background:#fff;
    border:4px solid #2E7D32;
    border-radius:50%;
    z-index:3;
}


/*==========================================
        TIMELINE RESPONSIVE
==========================================*/

/*==========================================
            GRID
==========================================*/

.practice-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:60px;
}

/*==========================================
            CARD
==========================================*/

.practice-card{

    background:#fff;

    padding:40px 35px;

    border-radius:22px;

    border:1px solid #e8efe8;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.practice-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:5px;

    height:100%;

    background:#2E7D32;

    transition:.35s;
}

.practice-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(0,0,0,.12);
}

.practice-card:hover::before{

    width:100%;
    opacity:.05;
}

/*==========================================
            ICON
==========================================*/

.practice-card i{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eef8ef;

    color:#2E7D32;

    font-size:28px;

    margin-bottom:25px;

    transition:.35s;
}

.practice-card:hover i{

    background:#2E7D32;

    color:#fff;

    transform:rotate(10deg) scale(1.08);
}

/*==========================================
            CONTENT
==========================================*/

.practice-card h3{

    font-size:1.45rem;

    margin-bottom:15px;

    color:#222;

    font-weight:600;
}

.practice-card p{

    color:#666;

    line-height:1.9;

    margin:0;

    font-size:1rem;
}

/*==========================================
            RESPONSIVE
==========================================*/

@media(max-width:992px){

.practice-grid{

    grid-template-columns:1fr 1fr;

    gap:25px;
}

.farming-practices .section-title{

    font-size:2.3rem;
}

}

@media(max-width:768px){

.farming-practices{

    padding:80px 0;
}

.practice-grid{

    grid-template-columns:1fr;
}

.practice-card{

    padding:30px 25px;
}

.practice-card h3{

    font-size:1.3rem;
}

.farming-practices .section-title{

    font-size:2rem;
}

}



/*==========================================
        AWARDS & RECOGNITION
==========================================*/

.awards-section{
    padding:100px 0;
    background:#f8fbf6;
}

.awards-section .section-header{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.awards-section .section-title{
    margin-top:18px;
    font-size:2.8rem;
    font-weight:700;
    color:#1b1b1b;
    line-height:1.2;
}

.awards-section .section-title span{
    display:block;
    color:#2E7D32;
}

.awards-section .section-description{
    margin-top:20px;
    font-size:1.05rem;
    color:#666;
    line-height:1.8;
}

/*==========================================
            GRID
==========================================*/

.awards-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;
}

/*==========================================
            CARD
==========================================*/

.award-card{

    background:#fff;

    padding:40px 35px;

    border-radius:22px;

    text-align:center;

    border:1px solid #e8efe8;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.award-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#2E7D32;

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;
}

.award-card:hover::before{

    transform:scaleX(1);
}

.award-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

/*==========================================
            ICON
==========================================*/

.award-card i{

    width:80px;

    height:80px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eef8ef;

    color:#2E7D32;

    font-size:32px;

    transition:.35s;
}

.award-card:hover i{

    background:#2E7D32;

    color:#fff;

    transform:rotate(-10deg) scale(1.08);
}

/*==========================================
            CONTENT
==========================================*/

.award-card h3{

    font-size:1.4rem;

    color:#222;

    margin-bottom:15px;

    font-weight:600;
}

.award-card p{

    color:#666;

    line-height:1.9;

    font-size:1rem;

    margin:0;
}

/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:992px){

    .awards-grid{

        grid-template-columns:repeat(2,1fr);

        gap:25px;
    }

    .awards-section .section-title{

        font-size:2.3rem;
    }

}

@media(max-width:768px){

    .awards-section{

        padding:80px 0;
    }

    .awards-grid{

        grid-template-columns:1fr;
    }

    .award-card{

        padding:35px 25px;
    }

    .award-card i{

        width:70px;

        height:70px;

        font-size:28px;
    }

    .awards-section .section-title{

        font-size:2rem;
    }

}




/*==========================================
            VISIT OUR FARM
==========================================*/

.visit-farm{

    padding:100px 0;

    background:linear-gradient(135deg,#1f5e2f,#2E7D32);

    color:#fff;
}

.visit-content{

    max-width:850px;

    margin:auto;

    text-align:center;
}

.visit-content h2{

    margin:20px 0;

    font-size:3rem;

    font-weight:700;

    line-height:1.2;
}

.visit-content h2 span{

    display:block;

    color:#d9f7b5;
}

.visit-content p{

    max-width:700px;

    margin:25px auto 40px;

    line-height:1.9;

    font-size:1.05rem;

    opacity:.95;
}

.visit-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.visit-buttons .btn-primary{

    background:#fff;

    color:#2E7D32;
}

.visit-buttons .btn-primary:hover{

    background:#f3f3f3;
}

.visit-buttons .btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:14px 32px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;
}

.visit-buttons .btn-secondary:hover{

    background:#fff;

    color:#2E7D32;
}

@media(max-width:768px){

.visit-farm{

    padding:80px 0;
}

.visit-content h2{

    font-size:2.2rem;
}

.visit-buttons{

    flex-direction:column;

    align-items:center;
}

}



/*==========================================
        LIFE AT KRUSHIVANDANA
==========================================*/

.farm-gallery{
    padding:100px 0;
    background:#fff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-auto-rows:260px;
    gap:20px;
    margin-top:60px;
}

.gallery-item{
    overflow:hidden;
    border-radius:22px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.gallery-item.large{
    grid-row:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.35),
        transparent);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::after{
    opacity:1;
}

@media(max-width:992px){

.gallery-grid{

    grid-template-columns:1fr 1fr;
}

.gallery-item.large{

    grid-row:span 1;
}

}

@media(max-width:768px){

.farm-gallery{

    padding:80px 0;
}

.gallery-grid{

    grid-template-columns:1fr;

    grid-auto-rows:250px;
}

}


html,
body{
    overflow-x:hidden;
    width:100%;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}