/*==================================================
GUVENC ZEYTINYAG
ABOUT.CSS
PART 1
==================================================*/

:root{

    --green:#11452b;
    --green-dark:#0b311e;
    --green-light:#2d7147;

    --gold:#d8b34a;

    --bg:#c4c418;

    --white:#add41f;

    --text:#223226;

    --gray:#67736a;

    --radius:22px;

    --shadow:0 18px 55px rgba(0,0,0,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;

}

img{

    display:block;
    max-width:100%;

}

.about-page{

    overflow:hidden;

}

.about-page section{

    padding:40px 0;

}

.container{

    max-width:1280px;
    margin:auto;
    padding:0 20px;

}

/*==============================
SECTION TITLE
==============================*/

.section-tag{

    display:inline-flex;
    align-items:center;

    padding:10px 24px;

    background:#edf7ea;

    color:var(--green);

    border-radius:40px;

    font-weight:700;

    margin-bottom:22px;

}

.section-title{

    font-size:52px;

    font-weight:900;

    color:var(--green);

    line-height:1.15;

    margin-bottom:25px;

}

.section-desc{

    font-size:19px;

    color:var(--gray);

    line-height:2;

}

/*==============================
HERO
==============================*/

.about-hero{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:

    linear-gradient(rgba(10,50,30,.72),
    rgba(10,50,30,.72)),

    url("/static/images/about/hero.jpg");

    background-size:cover;

    background-position:center;

}

.about-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at left,
    rgba(255,255,255,.06),
    transparent 35%),

    radial-gradient(circle at right,
    rgba(216,179,74,.10),
    transparent 35%);

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:760px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 26px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(14px);

    color:#fff;

    border:1px solid rgba(255,255,255,.12);

    margin-bottom:35px;

    font-weight:700;

}

.about-hero h1{

    color:#fff;

    font-size:68px;

    line-height:1.05;

    margin-bottom:30px;

    font-weight:900;

}

.about-hero p{

    color:#f3f3f3;

    font-size:21px;

    line-height:2;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:45px;

}

.hero-buttons .btn{

    padding:17px 36px;

    border-radius:60px;

    font-weight:700;

    transition:.35s;

}

.hero-buttons .btn-success{

    background:var(--gold);

    border:none;

    color:#222;

}

.hero-buttons .btn-success:hover{

    transform:translateY(-4px);

}

.hero-buttons .btn-outline-light:hover{

    background:#fff;

    color:var(--green);

}

/*==============================
BREADCRUMB
==============================*/

.about-breadcrumb{

    padding:10px 0;

    background:#a8b676;

    border-bottom:1px solid #ececec;

    height: 10;

}

.about-breadcrumb .container{

    display:flex;

    align-items:center;

    gap:10px;

}

.about-breadcrumb a{

    color:var(--green);

    text-decoration:none;

    font-weight:700;

}

.about-breadcrumb strong{

    color:#373b10;

}
/*==================================================
PART 2
ABOUT + STORY + WHY US
==================================================*/


/*==================================
ABOUT SECTION
==================================*/

.about-section{

    background:#434b1a;

}

.about-section .row{

    align-items:center;

}

.about-section h2{

    font-size:54px;

    font-weight:900;

    color:var(--white);

    margin-bottom:30px;

    line-height:1.15;

}

.about-section p{

    font-size:18px;

    color:var(--gold);

    line-height:2;

    margin-bottom:20px;

}

.about-section img{

    width:100%;

    height:600px;

    object-fit:cover;

    border-radius:28px;

    background:#dde6da;

    box-shadow:var(--shadow);

    transition:.45s;

}

.about-section img:hover{

    transform:scale(1.03);

}


/*==================================
STORY
==================================*/

.story-section{

    background:#f5f7f2;

    position:relative;

    overflow:hidden;

}

.story-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(17,69,43,.04);

    left:-280px;

    top:-250px;

}

.story-section::after{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(216,179,74,.06);

    right:-220px;

    bottom:-200px;

}

.story-section .container{

    position:relative;

    z-index:2;

}

.story-image{

    position:relative;

}

.story-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:30px;

    background:#dfe6db;

    box-shadow:0 25px 70px rgba(0,0,0,.10);

    transition:.45s;

}

.story-image img:hover{

    transform:scale(1.03);

}

.story-image::after{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border:3px solid rgba(216,179,74,.25);

    border-radius:30px;

    left:20px;

    top:20px;

    z-index:-1;

}

.story-section h2{

    font-size:52px;

    font-weight:900;

    color:var(--green);

    margin-bottom:30px;

}

.story-section p{

    font-size:18px;

    color:var(--gray);

    line-height:2;

    margin-bottom:22px;

}


/*==================================
FEATURES
==================================*/

.story-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:45px;

}

.story-feature{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    padding:22px;

    border-radius:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.story-feature:hover{

    transform:translateY(-6px);

}

.story-feature i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),#efcb67);

    color:#fff;

    font-size:24px;

}

.story-feature span{

    font-size:18px;

    color:var(--green);

    font-weight:700;

}


/*==================================
WHY US
==================================*/

.why-us{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #0f4d2b 0%,
        #165b34 50%,
        #1d6b3c 100%
    );

}
.why-title{

    color:#fff;

    font-size:54px;

    font-weight:800;

    margin-bottom:20px;

}
.why-subtitle{

    color:rgba(255,255,255,.85);

    font-size:22px;

    max-width:850px;

    margin:0 auto 70px;

    line-height:1.8;

}
.why-badge{

    background:rgba(216,179,74,.15);

    color:#f3c94d;

    border:1px solid rgba(216,179,74,.35);

}
.why-card{

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    color:#fff;

}
.why-card p{

    color:rgba(117, 197, 25, 0.82);

}

.why-us .section-tag{

    display:block;

    width:max-content;

    margin:0 auto 20px;

}

.why-us .section-title{

    text-align:center;

}

.why-us .section-desc{

    text-align:center;

    max-width:760px;

    margin:20px auto 70px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    padding:45px 30px;

    border-radius:26px;

    text-align:center;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 60px rgba(0,0,0,.10);

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--gold),#f1cf6c);

}

.why-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef7ea;

    font-size:42px;

    margin-bottom:28px;

    transition:.35s;

}

.why-card:hover .why-icon{

    background:var(--green);

    color:#fff;

    transform:rotate(8deg);

}

.why-card h4{

    font-size:24px;

    color:var(--green);

    margin-bottom:18px;

    font-weight:800;

}

.why-card p{

    color:var(--gray);

    line-height:1.9;

    font-size:17px;

}
/*==================================================
PART 2
ABOUT + STORY + WHY US
==================================================*/


/*==================================
ABOUT SECTION
==================================*/



.about-section .row{

    align-items:center;

}




.about-section img{

    width:100%;

    height:600px;

    object-fit:cover;

    border-radius:28px;

    background:#dde6da;

    box-shadow:var(--shadow);

    transition:.45s;

}

.about-section img:hover{

    transform:scale(1.03);

}


/*==================================
STORY
==================================*/

.story-section{

    background:#f5f7f2;

    position:relative;

    overflow:hidden;

}

.story-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(17,69,43,.04);

    left:-280px;

    top:-250px;

}

.story-section::after{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    border-radius:50%;

    background:rgba(216,179,74,.06);

    right:-220px;

    bottom:-200px;

}

.story-section .container{

    position:relative;

    z-index:2;

}

.story-image{

    position:relative;

}

.story-image img{

    width:100%;

    height:620px;

    object-fit:cover;

    border-radius:30px;

    background:#dfe6db;

    box-shadow:0 25px 70px rgba(0,0,0,.10);

    transition:.45s;

}

.story-image img:hover{

    transform:scale(1.03);

}

.story-image::after{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border:3px solid rgba(216,179,74,.25);

    border-radius:30px;

    left:20px;

    top:20px;

    z-index:-1;

}

.story-section h2{

    font-size:52px;

    font-weight:900;

    color:var(--green);

    margin-bottom:30px;

}

.story-section p{

    font-size:18px;

    color:var(--gray);

    line-height:2;

    margin-bottom:22px;

}


/*==================================
FEATURES
==================================*/

.story-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:45px;

}

.story-feature{

    display:flex;

    align-items:center;

    gap:18px;

    background:#fff;

    padding:22px;

    border-radius:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.story-feature:hover{

    transform:translateY(-6px);

}

.story-feature i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,var(--gold),#efcb67);

    color:#fff;

    font-size:24px;

}

.story-feature span{

    font-size:18px;

    color:var(--green);

    font-weight:700;

}


/*==================================
WHY US
==================================*/

.why-us{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:#0f4d2b;

}
.why-us .container{

    position:relative;

    z-index:2;

}
.why-us::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at top left,
    rgba(255,215,0,.10),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(255,255,255,.05),
    transparent 35%);

    z-index:1;

}
.why-us::after{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    right:-220px;
    bottom:-250px;

    background:rgba(216,179,74,.08);

}

.why-us .section-tag{

    display:block;

    width:max-content;

    margin:0 auto 20px;

}

.why-us .section-title{

    text-align:center;

}

.why-us .section-desc{

    text-align:center;

    max-width:760px;

    margin:20px auto 70px;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.why-card{

    position:relative;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(16px);

    border:1px solid rgba(216,179,74,.18);

    border-radius:28px;

    padding:45px 35px;

    transition:.35s;

    overflow:hidden;

}

.why-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.12);

    border-color:#d8b34a;

}

.why-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,var(--gold),#f1cf6c);

}

.why-icon{

    width:95px;
    height:95px;

    margin:auto;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:
    linear-gradient(
    135deg,
    #f5d04f,
    #ddb53c
    );

    box-shadow:
    0 15px 35px rgba(216,179,74,.35);

    font-size:42px;

    margin-bottom:28px;

}

.why-card:hover .why-icon{

    background:var(--green);

    color:#fff;

    transform:rotate(8deg);

}

.why-card h4{

    font-size:24px;

    color:var(--green);

    margin-bottom:18px;

    font-weight:800;

}

.why-card p{

    color:var(--gray);

    line-height:1.9;

    font-size:17px;

}
/*==================================================
PART 3
STATS + MISSION + VISION
==================================================*/


/*==================================
STATS
==================================*/

.stats-section{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:
    linear-gradient(
    135deg,
    #0c3d22,
    #185a35);

}

.stats-section::before{

    content:"";

    position:absolute;

    width:750px;

    height:750px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    left:-350px;

    top:-320px;

}

.stats-section::after{

    width:420px;

    height:420px;

    right:-180px;

    bottom:-180px;

    opacity:.12;

}

.stats-section .container{

    position:relative;

    z-index:5;
    
    max-width:1320px;

    margin:0 auto;

}

.stats-section .section-tag{

    display:block;

    width:max-content;

    margin:0 auto 20px;

    background:rgba(255,255,255,.12);

    color:#fff;

}

.stats-section .section-title{

    color:#fff;

    text-align:center;

}

.stats-section .section-desc{

    color:rgba(255,255,255,.85);

    text-align:center;

    max-width:760px;

    margin:20px auto 70px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,minmax(250px,1fr));

    gap:32px;
    
    justify-content:center;

    align-items:stretch;

    width:100%;

    margin:60px auto 0;

    align-items:stretch;

}

.stat-card{

    width:100%;

    min-height:320px;

    padding:40px 30px;

    border-radius:28px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(12px);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    transition:.35s;

}
.stat-number{

    font-size:72px;

    font-weight:800;

    color:#d8b34a;

    line-height:1;

    margin-bottom:18px;

}
.stat-title{

    font-size:24px;

    font-weight:700;

    color:#fff;

    margin-bottom:15px;

}
.stat-text{

    color:#d7e6d9;

    line-height:1.8;

    font-size:16px;

}

.stat-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.12);

}

.stat-card:hover{

    background:#fff;

    transform:translateY(-10px);

}

.stat-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:
    linear-gradient(
    90deg,
    var(--gold),
    #f0cf67);

}

.stat-card h2{

    font-size:64px;

    color:var(--gold);

    font-weight:900;

    margin-bottom:18px;

}

.stat-card h4{

    color:#fff;

    font-size:24px;

    font-weight:800;

    margin-bottom:16px;

}

.stat-card:hover h4{

    color:var(--green);

}

.stat-card p{

    color:#e3ede5;

    line-height:1.8;

}

.stat-card:hover p{

    color:#666;

}



/*==================================
MISSION
==================================*/

.mission-section{

    background:#ffffff;

}

.mission-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.mission-image img{

    width:100%;

    height:580px;

    object-fit:cover;

    border-radius:30px;

    background:#dfe6dc;

    box-shadow:var(--shadow);

}

.mission-content h2{

    font-size:52px;

    color:var(--green);

    font-weight:900;

    margin-bottom:30px;

}

.mission-content p{

    font-size:18px;

    line-height:2;

    color:var(--gray);

}

.mission-list{

    display:grid;

    gap:18px;

    margin-top:35px;

}

.mission-list li{

    list-style:none;

    padding:18px 24px;

    border-radius:18px;

    background:#f4f8f2;

    color:var(--green);

    font-weight:700;

}



/*==================================
VISION
==================================*/

.vision-section{

    background:#f7f8f4;

}

.vision-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.vision-image img{

    width:100%;

    height:580px;

    object-fit:cover;

    border-radius:30px;

    background:#dfe6dc;

    box-shadow:var(--shadow);

}

.vision-content h2{

    font-size:52px;

    color:var(--green);

    font-weight:900;

    margin-bottom:30px;

}

.vision-content p{

    font-size:18px;

    line-height:2;

    color:var(--gray);

}

.vision-list{

    display:grid;

    gap:18px;

    margin-top:35px;

}

.vision-list li{

    list-style:none;

    padding:18px 24px;

    border-radius:18px;

    background:#fff;

    color:var(--green);

    font-weight:700;

}



/*==================================
TABLET
==================================*/

@media(max-width:1100px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

.mission-grid,

.vision-grid{

grid-template-columns:1fr;

gap:50px;

}

}



/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.stats-grid{

grid-template-columns:1fr;

}

.stat-card{

padding:35px;

}

.stat-card h2{

font-size:46px;

}

.mission-content h2,

.vision-content h2{

font-size:38px;

}

.mission-image img,

.vision-image img{

height:380px;

}

}