@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8f7f2;
    overflow-x:hidden;
}

/* =========================
   HEADER
========================= */

.header{
    width:100%;
    min-height:115px;
    background:#f8f7f2;

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

    padding:10px 5%;

    border-bottom:1px solid rgba(0,0,0,0.08);
}

/* =========================
   LOGO SECTION
========================= */

.logo-section{
    display:flex;
    align-items:center;
    gap:20px;
}

.logo-section img{
    width:100px;
    height:100px;

    border-radius:50%;
    object-fit:cover;

    flex-shrink:0;
}

/* =========================
   UNIVERSITY NAME
========================= */

.company-name{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.company-name h1{
    font-family:'Cormorant Garamond',serif;
    font-size:54px;
    font-weight:600;
    color:#173d27;
    line-height:0.9;
}

.company-name p{
    margin-top:8px;

    font-size:12px;

    letter-spacing:4px;

    color:#8a6827;

    text-transform:uppercase;

    font-weight:500;
}

/* =========================
   NAVIGATION
========================= */

nav ul{
    list-style:none;

    display:flex;

    align-items:center;

    gap:40px;
}

nav ul li a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:500;
    position:relative;
    padding-bottom:8px;
    transition:all 0.3s ease;
}

nav ul li a:hover{
    color:#1b5a36;
}

nav ul li a.active{
    color:#1b5a36;
}

nav ul li a.active::after{
    content:'';

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:2px;

    background:#1b5a36;
}

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

@media(max-width:1200px){

    .company-name h1{
        font-size:46px;
    }

    nav ul{
        gap:30px;
    }

}

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

@media(max-width:900px){

    .header{
        flex-direction:column;
        gap:20px;
        padding:20px;
    }

    .logo-section{
        flex-direction:column;
        text-align:center;
    }

    .company-name h1{
        font-size:40px;
    }

    .company-name p{
        font-size:11px;
        letter-spacing:3px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

}

@media(max-width:600px){

    .logo-section img{
        width:80px;
        height:80px;
    }

    .company-name h1{
        font-size:30px;
    }

    .company-name p{
        font-size:9px;
        letter-spacing:2px;
    }

    nav ul li a{
        font-size:14px;
    }

}

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

.hero{
    position:relative;
    width:100%;
    height:85vh;
    overflow:hidden;
}

/* Background Image */

.hero img{
    width:100%;
    height:100%;

    object-fit:contain;

    object-position:87% center;

    display:block;
}

/* Smooth Left-to-Right Fade */

.hero::before{
    content:'';

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:linear-gradient(
        to right,
        rgba(248,247,242,0.88) 0%,
        rgba(248,247,242,0.65) 20%,
        rgba(248,247,242,0.35) 35%,
        rgba(248,247,242,0.15) 50%,
        rgba(248,247,242,0.03) 65%,
        rgba(248,247,242,0) 80%
    );

    z-index:1;
}

/* Content */

.hero-overlay{
    position:absolute;

    top:50%;
    left:7%;

    transform:translateY(-50%);

    max-width:650px;

    z-index:2;
}

.quote-author{
    margin-bottom:30px;

    font-size:16px;

    color:#214f2f;

    font-weight:500;
}

.hero-overlay h1{
    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    line-height:1;

    color:#173d27;

    margin-bottom:25px;
}

.hero-overlay h1 span{
    display:block;
    color:#c2932d;
}

.hero-overlay blockquote{
    font-size:18px;

    line-height:1.7;

    color:#333;

    font-style:italic;

    margin-bottom:30px;
}

.hero-overlay p{
    font-size:16px;

    line-height:1.9;

    color:#444;

    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;

    background:#214f2f;

    color:white;

    text-decoration:none;

    padding:16px 35px;

    border-radius:8px;

    font-weight:600;

    transition:all 0.3s ease;
}

.hero-btn:hover{
    background:#173d27;
    transform:translateY(-2px);
}

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

@media(max-width:1200px){

    .hero-overlay h1{
        font-size:60px;
    }

    .hero-overlay blockquote{
        font-size:20px;
    }

    .hero-overlay p{
        font-size:18px;
    }
}

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

@media(max-width:900px){

    .hero{
        height:auto;
    }

    .hero img{
        height:700px;
        transform:scale(1);
    }

    .hero::before{
        background:rgba(248,247,242,0.85);
    }

    .hero-overlay{
        left:5%;
        right:5%;
        max-width:none;
    }

    .hero-overlay h1{
        font-size:48px;
    }

    .hero-overlay blockquote{
        font-size:18px;
    }

    .hero-overlay p{
        font-size:16px;
    }
}

@media(max-width:600px){

    .hero img{
        height:600px;
    }

    .hero-overlay h1{
        font-size:36px;
    }

    .hero-overlay blockquote{
        font-size:16px;
        line-height:1.5;
    }

    .hero-overlay p{
        font-size:15px;
        line-height:1.7;
    }

    .hero-btn{
        padding:14px 28px;
    }
}



/* =====================================
   FALLING LEAVES
===================================== */

.leaves{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    overflow:hidden;

    pointer-events:none;

    z-index:3;
}

.leaves span{
    position:absolute;

    top:-100px;

    width:18px;
    height:18px;

    background:#9b7a35;

    border-radius:0 100% 0 100%;

    opacity:0.85;

    animation:fall linear infinite;
}

.leaves span:nth-child(1){
    left:5%;
    animation-duration:12s;
    animation-delay:0s;
}

.leaves span:nth-child(2){
    left:15%;
    animation-duration:14s;
    animation-delay:2s;
}

.leaves span:nth-child(3){
    left:28%;
    animation-duration:11s;
    animation-delay:4s;
}

.leaves span:nth-child(4){
    left:40%;
    animation-duration:15s;
    animation-delay:1s;
}

.leaves span:nth-child(5){
    left:55%;
    animation-duration:13s;
    animation-delay:3s;
}

.leaves span:nth-child(6){
    left:70%;
    animation-duration:16s;
    animation-delay:5s;
}

.leaves span:nth-child(7){
    left:82%;
    animation-duration:12s;
    animation-delay:2s;
}

.leaves span:nth-child(8){
    left:94%;
    animation-duration:18s;
    animation-delay:6s;
}

@keyframes fall{

    0%{
        transform:
            translateY(-100px)
            translateX(0)
            rotate(0deg);

        opacity:0;
    }

    10%{
        opacity:0.85;
    }

    30%{
        transform:
            translateY(25vh)
            translateX(30px)
            rotate(120deg);
    }

    60%{
        transform:
            translateY(60vh)
            translateX(-40px)
            rotate(220deg);
    }

    100%{
        transform:
            translateY(110vh)
            translateX(60px)
            rotate(360deg);

        opacity:0;
    }
}




/* =====================================
   SECTION 3 - LEARNING PHILOSOPHY
===================================== */

.philosophy{
    position:relative;
    overflow:hidden;

    padding:20px 5% 50px;
    background:#faf9f4;
}
.section-title{
    position:relative;
    z-index:2;

    text-align:center;
    max-width:900px;
    margin:auto;
}

.section-title h2{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    color:#173d27;
    margin-bottom:15px;
}

.section-title p{
    font-size:15px;
    color:#444;
    margin-bottom:16px;
}

.philosophy-quote{
    font-size:16px;
    font-style:italic;
    color:#4f6d3a;
    margin-bottom:60px;
}

.philosophy-quote span{
    color:#333;
    font-style:normal;
    font-weight:500;
}

.philosophy-grid{
    position:relative;
    z-index:2;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.philosophy-card{
    background:white;

    border:1px solid #e8dfcb;

    border-radius:18px;

    overflow:hidden;

    text-align:center;

    transition:0.35s;
}

.philosophy-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.philosophy-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.icon-circle{
    width:85px;
    height:85px;

    margin:-40px auto 20px;

    background:#f8f7f2;

    border-radius:50%;

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

    font-size:38px;

    border:2px solid #d9cfb7;

    position:relative;
}

.philosophy-card h3{
    font-family:'Cormorant Garamond',serif;
    font-size:30px;
    color:#173d27;
    margin-bottom:15px;
}

.philosophy-card p{
    padding:0 25px 35px;

    font-size:17px;
    line-height:1.8;
    color:#555;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:1200px){

    .philosophy-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .philosophy-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }

    .philosophy-card h3{
        font-size:10px;
    }

}

/* =====================================
   PHILOSOPHY LEAVES
===================================== */



.philosophy-leaves span{
    position:absolute;

    top:-100px;

    font-size:30px;

    opacity:0.5;

    animation:philosophyFall linear infinite;
}

.philosophy-leaves span:nth-child(1){
    left:5%;
    animation-duration:15s;
}

.philosophy-leaves span:nth-child(2){
    left:25%;
    animation-duration:18s;
    animation-delay:2s;
}

.philosophy-leaves span:nth-child(3){
    left:50%;
    animation-duration:16s;
    animation-delay:5s;
}

.philosophy-leaves span:nth-child(4){
    left:75%;
    animation-duration:20s;
    animation-delay:1s;
}

.philosophy-leaves span:nth-child(5){
    left:90%;
    animation-duration:17s;
    animation-delay:4s;
}

@keyframes philosophyFall{

    0%{
        transform:translateY(-100px) translateX(0px) rotate(0deg);
        opacity:0;
    }

    10%{
        opacity:0.5;
    }

    50%{
        transform:translateY(400px) translateX(50px) rotate(180deg);
    }

    100%{
        transform:translateY(1200px) translateX(-60px) rotate(360deg);
        opacity:0;
    }
}




/* =====================================
   SECTION 4 - LEARNING PILLARS
===================================== */

.learning-pillars{
    padding:30px 5% 20px;
    background:#faf9f4;
}

.pillars-container{

    max-width:1000px;

    margin:auto;

    background:#efeddd;

    border-radius:50px;

    padding:18px 35px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

.pillar-item{

    display:flex;

    align-items:center;

    gap:15px;

    color:#5b7340;

    flex:1;
}

.pillar-icon{

    font-size:40px;

    display:flex;

    align-items:center;

    justify-content:center;
}

.pillar-text h4{

    font-size:24px;

    font-weight:500;

    color:#496533;

    line-height:1.3;
}

.pillar-divider{

    width:1px;

    height:55px;

    background:#c8c1a5;

    margin:0 15px;
}

/* =====================
   RESPONSIVE
===================== */

@media(max-width:900px){

    .pillars-container{

        flex-direction:column;

        gap:25px;

        border-radius:25px;
    }

    .pillar-divider{

        width:80%;

        height:1px;
    }

    .pillar-item{

        justify-content:center;

        text-align:center;
    }
}






/* =====================================
   SECTION 5 - WHAT WE OFFER
===================================== */

.offer-section{
    position:relative;
    overflow:hidden;

    padding:30px 5% 90px;

    background:#faf9f4;
}

.offer-heading{
    text-align:center;
    margin-bottom:50px;
    position:relative;
    z-index:2;
}

.offer-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:42px;
    color:#173d27;
    margin-bottom:10px;
}

.offer-heading p{
    font-size:18px;
    color:#555;
}

.offer-grid{
    position:relative;
    z-index:2;

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

    gap:18px;
}

.offer-card{

    background:white;

    border:1px solid #e5dcc6;

    border-radius:18px;

    padding:20px;

    transition:0.35s;

    position:relative;
}

.offer-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.offer-card h3{

    text-align:center;

    font-family:'Cormorant Garamond',serif;

    font-size:26px;

    color:#173d27;

    min-height:70px;

    margin-bottom:15px;
}

.offer-card img{

    width:100%;

    display:block;

    margin-bottom:20px;

    transition:0.4s;
}

.offer-card:hover img{

    transform:scale(1.05);
}

.offer-card ul{

    padding-left:18px;
}

.offer-card li{

    margin-bottom:10px;

    color:#555;

    line-height:1.6;

    font-size:15px;
}

/* ==========================
   FALLING LEAVES
========================== */



.offer-leaves span{

    position:absolute;

    top:-80px;

    font-size:28px;

    opacity:0.55;

    animation:offerFall linear infinite;
}

.offer-leaves span:nth-child(1){
    left:5%;
    animation-duration:14s;
}

.offer-leaves span:nth-child(2){
    left:18%;
    animation-duration:18s;
    animation-delay:2s;
}

.offer-leaves span:nth-child(3){
    left:35%;
    animation-duration:15s;
    animation-delay:5s;
}

.offer-leaves span:nth-child(4){
    left:52%;
    animation-duration:20s;
}

.offer-leaves span:nth-child(5){
    left:70%;
    animation-duration:17s;
    animation-delay:3s;
}

.offer-leaves span:nth-child(6){
    left:85%;
    animation-duration:16s;
    animation-delay:1s;
}

.offer-leaves span:nth-child(7){
    left:95%;
    animation-duration:22s;
    animation-delay:4s;
}

@keyframes offerFall{

    0%{
        transform:translateY(-100px) translateX(0) rotate(0deg);
        opacity:0;
    }

    10%{
        opacity:0.55;
    }

    50%{
        transform:translateY(350px) translateX(60px) rotate(180deg);
    }

    100%{
        transform:translateY(1200px) translateX(-80px) rotate(360deg);
        opacity:0;
    }
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1400px){

    .offer-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){

    .offer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){

    .offer-grid{
        grid-template-columns:1fr;
    }

    .offer-heading h2{
        font-size:34px;
    }
}












/* =====================================
   SECTION 6 - WHAT MAKES DYIP DIFFERENT
===================================== */

.dyip-different{

    position:relative;

    overflow:hidden;

    padding:30px 5% 20px;

    background:#faf9f4;
}

.different-heading{

    text-align:center;

    margin-bottom:40px;

    position:relative;

    z-index:2;
}

.different-heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#173d27;
}

.different-wrapper{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr 1fr 1.2fr;

    gap:20px;

    align-items:stretch;
}

.different-card{

    background:white;

    border:1px solid #e5dcc6;

    border-radius:20px;

    padding:30px;

    transition:0.35s;
}

.different-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.different-icon{

    font-size:42px;

    margin-bottom:15px;

    color:#5b7340;
}

.different-card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    color:#173d27;

    margin-bottom:15px;
}

.different-card p{

    font-size:15px;

    line-height:2;

    color:#555;
}

.different-image{

    display:flex;

    align-items:center;

    justify-content:center;
}

.different-image img{

    width:100%;

    max-width:420px;

    display:block;
}

/* ==========================
   FALLING LEAVES
========================== */



.different-leaves span{

    position:absolute;

    top:-100px;

    font-size:30px;

    opacity:0.45;

    animation:differentFall linear infinite;
}

.different-leaves span:nth-child(1){
    left:8%;
    animation-duration:16s;
}

.different-leaves span:nth-child(2){
    left:25%;
    animation-duration:20s;
    animation-delay:2s;
}

.different-leaves span:nth-child(3){
    left:45%;
    animation-duration:18s;
    animation-delay:4s;
}

.different-leaves span:nth-child(4){
    left:65%;
    animation-duration:15s;
}

.different-leaves span:nth-child(5){
    left:82%;
    animation-duration:22s;
    animation-delay:3s;
}

.different-leaves span:nth-child(6){
    left:95%;
    animation-duration:17s;
    animation-delay:5s;
}

@keyframes differentFall{

    0%{
        transform:translateY(-100px) translateX(0px) rotate(0deg);
        opacity:0;
    }

    10%{
        opacity:0.45;
    }

    50%{
        transform:translateY(250px) translateX(60px) rotate(180deg);
    }

    100%{
        transform:translateY(1000px) translateX(-80px) rotate(360deg);
        opacity:0;
    }
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px){

    .different-wrapper{

        grid-template-columns:1fr 1fr;
    }

    .different-image{

        grid-column:span 2;
    }
}

@media(max-width:768px){

    .different-wrapper{

        grid-template-columns:1fr;
    }

    .different-image{

        grid-column:auto;
    }

    .different-heading h2{

        font-size:34px;
    }
}








/* =====================================
   SECTION 7 - JOIN THE MOVEMENT
===================================== */

.join-movement{
    position:relative;
    overflow:hidden;
    padding:80px 5% 50px;
    background:#faf9f4;
}

/* MAIN CARD */

.join-card{

    display:grid;
    grid-template-columns:1.2fr 1px 0.9fr;

    gap:40px;

    align-items:center;

    padding:30px 60px;

    border-radius:40px;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        rgba(245,243,233,0.15),
        rgba(245,243,233,0.15)
    ),
    url("images/L2.png");

    background-repeat:no-repeat;

    background-position:120% 15%;

    background-size:78%;

    background-color:#f5f3e9;
}
.join-address{
    max-width:350px;
    align-self:start;

    margin-top:-10px;

    margin-left:100px;   /* move right */
}
/* LEFT SIDE */

.leaf-icon{
    font-size:60px;
    margin-bottom:15px;
}

.join-left h2{
    font-family:'Cormorant Garamond',serif;
    font-size:58px;
    color:#173d27;
    margin-bottom:20px;
}

.join-left p{
    font-size:19px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

/* MAIL BUTTON */

.mail-btn{

    display:flex;

    align-items:center;

    gap:18px;

    width:max-content;

    text-decoration:none;

    background:#d8a735;

    color:#222;

    padding:20px 30px;

    border-radius:18px;

    transition:0.3s;
}

.mail-btn:hover{
    transform:translateY(-4px);
}

.mail-symbol{
    font-size:34px;
}

.mail-btn strong{
    display:block;
    font-size:22px;
}

.mail-btn small{
    font-size:14px;
}

/* DIVIDER */

.join-divider{

    width:1px;

    height:260px;

    background:#d8d0b8;
}

/* ADDRESS */

.join-address{
    max-width:350px;
}

.join-address h3{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:#173d27;

    margin-bottom:25px;
}

.join-address p{

    font-size:18px;

    line-height:2;

    color:#555;
}

/* FOOTER */

.join-footer{

    margin-top:30px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    color:#496533;

    font-size:15px;
}

/* =====================================
   FALLING LEAVES
===================================== */



.join-leaves span{

    position:absolute;

    top:-100px;

    font-size:28px;

    opacity:0.45;

    animation:joinFall linear infinite;
}

.join-leaves span:nth-child(1){
    left:8%;
    animation-duration:14s;
}

.join-leaves span:nth-child(2){
    left:22%;
    animation-duration:18s;
    animation-delay:2s;
}

.join-leaves span:nth-child(3){
    left:40%;
    animation-duration:16s;
    animation-delay:4s;
}

.join-leaves span:nth-child(4){
    left:58%;
    animation-duration:20s;
}

.join-leaves span:nth-child(5){
    left:75%;
    animation-duration:17s;
    animation-delay:3s;
}

.join-leaves span:nth-child(6){
    left:92%;
    animation-duration:22s;
    animation-delay:5s;
}

@keyframes joinFall{

    0%{
        transform:
        translateY(-100px)
        translateX(0px)
        rotate(0deg);

        opacity:0;
    }

    10%{
        opacity:0.45;
    }

    50%{
        transform:
        translateY(350px)
        translateX(60px)
        rotate(180deg);
    }

    100%{
        transform:
        translateY(1400px)
        translateX(-80px)
        rotate(360deg);

        opacity:0;
    }
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:1100px){

    .join-card{

        grid-template-columns:1fr;

        background-size:100%;

        background-position:center top;

        padding:50px 30px;
    }

    .join-divider{
        display:none;
    }

}

@media(max-width:768px){

    .join-left h2{
        font-size:42px;
    }

    .join-address h3{
        font-size:32px;
    }

    .join-left p,
    .join-address p{
        font-size:16px;
    }

}







.falling-leaves{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    pointer-events:none;
    overflow:hidden;

    z-index:50;
}

.falling-leaves span{
    position:absolute;
    top:-100px;

    font-size:32px;

    opacity:0.7;

    animation:leafFall linear infinite;
}

.falling-leaves span:nth-child(1){
    left:5%;
    animation-duration:12s;
}

.falling-leaves span:nth-child(2){
    left:20%;
    animation-duration:15s;
    animation-delay:2s;
}

.falling-leaves span:nth-child(3){
    left:35%;
    animation-duration:18s;
    animation-delay:1s;
}

.falling-leaves span:nth-child(4){
    left:55%;
    animation-duration:14s;
}

.falling-leaves span:nth-child(5){
    left:75%;
    animation-duration:17s;
    animation-delay:3s;
}

.falling-leaves span:nth-child(6){
    left:92%;
    animation-duration:20s;
    animation-delay:4s;
}

@keyframes leafFall{

    0%{
        transform:
        translateY(-100px)
        translateX(0)
        rotate(0deg);
        opacity:0;
    }

    10%{
        opacity:0.7;
    }

    50%{
        transform:
        translateY(400px)
        translateX(80px)
        rotate(180deg);
    }

    100%{
        transform:
        translateY(1500px)
        translateX(-80px)
        rotate(360deg);
        opacity:0;
    }
}




/* =====================================
   ABOUT PAGE - SECTION 4
===================================== */

.about_page_bambini{

    display:grid;

    grid-template-columns:0.9fr 1.2fr 0.8fr;

    gap:40px;

    align-items:center;

    padding:10px 5%;

    background:#fffdf8;
}

.about_page_bambini_image img{

    width:100%;

    display:block;
}

.about_page_bambini_content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#173d27;

    margin-bottom:20px;
}

.about_page_bambini_content p{

    font-size:16px;

    line-height:1.9;

    color:#444;

    margin-bottom:18px;
}

.about_page_bambini_highlights{

    background:#f7f3e6;

    padding:30px;

    border-radius:20px;
}

.about_page_bambini_highlights ul{

    list-style:none;

    padding:0;

    margin:0;
}

.about_page_bambini_highlights li{

    font-size:17px;

    color:#4b4b4b;

    line-height:1.8;

    margin-bottom:18px;
}

/* Responsive */

@media(max-width:1100px){

    .about_page_bambini{

        grid-template-columns:1fr;

        gap:35px;
    }

}





/* =====================================
   ABOUT PAGE - SECTION 5
===================================== */

.about_page_learn{

    padding:40px 4%;

    background:#faf9f4;
}

.about_page_learn_heading{

    text-align:center;

    margin-bottom:45px;
}

.about_page_learn_heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#173d27;
}

.about_page_learn_grid{

    display:grid;

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

    gap:20px;
}

.about_page_learn_card{

    background:#fff;

    border:1px solid #eadfca;

    border-radius:16px;

    padding:20px;

    transition:0.3s;
}

.about_page_learn_card:hover{

    transform:translateY(-8px);

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about_page_learn_card h3{

    font-family:'Cormorant Garamond',serif;

    font-size:28px;

    color:#173d27;

    margin-bottom:15px;

    min-height:70px;
}

.about_page_learn_card img{

    width:100%;

    display:block;

    margin-bottom:15px;
}

.about_page_learn_card ul{

    padding-left:18px;

    margin:0;
}

.about_page_learn_card li{

    font-size:15px;

    color:#444;

    line-height:1.8;

    margin-bottom:5px;
}

/* Responsive */

@media(max-width:1400px){

    .about_page_learn_grid{

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

@media(max-width:900px){

    .about_page_learn_grid{

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

@media(max-width:650px){

    .about_page_learn_grid{

        grid-template-columns:1fr;
    }

    .about_page_learn_heading h2{

        font-size:42px;
    }
}















/* =====================================
   ABOUT PAGE - SECTION 6
===================================== */

.about_page_difference{

    padding:40px 5%;

    background:#faf8f1;
}

.about_page_difference_heading{

    text-align:center;

    margin-bottom:40px;
}

.about_page_difference_heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#143d26;
}

.about_page_difference_box{

    display:grid;

    grid-template-columns:
    1fr
    1fr
    1fr
    320px;

    gap:25px;

    align-items:center;

    background:#fffdf7;

    border:1px solid #efe4c8;

    border-radius:24px;

    padding:30px;
}

.about_page_difference_item h3{

    color:#173d27;

    margin-bottom:15px;

    font-size:16px;
}

.about_page_difference_item p{

    color:#555;

    line-height:1.9;

    font-size:16px;
}

.about_page_difference_image img{

    width:100%;

    display:block;

    border-radius:16px;
}

@media(max-width:1000px){

    .about_page_difference_box{

        grid-template-columns:1fr;
    }

    .about_page_difference_heading h2{

        font-size:30px;
    }
}

































/* =====================================
   ABOUT US SECTION 2
===================================== */

.about-hero{

    display:grid;

    grid-template-columns:0.9fr 1.4fr;

    align-items:center;

    gap:40px;

    padding:10px 5%;

    background:#faf9f4;

    position:relative;
}

.about-left h1{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#173d27;

    margin-bottom:20px;

    line-height:1;
}

.about-left p{

    font-size:16px;

    line-height:1.8;

    color:#333;

    max-width:450px;
}

.about-quote{

    margin-top:35px;

    background:#f5f0df;

    padding:28px;

    border-radius:20px;

    position:relative;
}

.quote-mark{

    font-size:30px;

    color:#70883c;

    display:block;

    margin-bottom:10px;
}

.about-quote p{

    font-size:16px;

    line-height:1.8;

    color:#333;
}

.about-quote h4{

    margin-top:15px;

    color:#5f7330;

    font-size:20px;

    text-align:right;
}

.about-right img{

    width:100%;

    display:block;
}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:992px){

    .about-hero{

        grid-template-columns:1fr;
    }

    .about-left h1{

        font-size:30px;
    }

}

/* =====================================
   ABOUT PAGE - SECTION 3
===================================== */

.about_page_story{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    padding:70px 5%;

    background:#fffdf8;
}

.about_page_story_image img{

    width:100%;

    display:block;
}

.about_page_story_content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#173d27;

    margin-bottom:20px;
}

.about_page_story_question{

    font-size:16px;

    color:#333;

    margin-bottom:10px;
}

.about_page_story_content h3{

    color:#4f6d3a;

    font-size:30px;

    font-style:italic;

    margin-bottom:25px;
}

.about_page_story_content p{

    font-size:16px;

    line-height:1.9;

    color:#444;

    margin-bottom:20px;
}

/* Responsive */

@media(max-width:992px){

    .about_page_story{

        grid-template-columns:1fr;

        gap:40px;
    }

    .about_page_story_content h2{

        font-size:16px;
    }

    .about_page_story_content h3{

        font-size:16px;
    }

}













/* =====================================
   ABOUT PAGE - SECTION 7
===================================== */

.about_page_global{

    padding:40px 5%;

    background:#faf8f1;

    display:grid;

    grid-template-columns:280px 1fr;

    gap:40px;

    align-items:center;

    border-top:1px solid #ece2c8;
}

.about_page_global_image img{

    width:100%;

    display:block;
}

.about_page_global_content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#173d27;

    margin-bottom:20px;
}

.about_page_global_content p{

    font-size:16px;

    line-height:1.9;

    color:#555;

    margin-bottom:35px;
}

.about_page_global_features{

    display:grid;

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

    gap:20px;

    border-top:1px solid #e8dcc0;

    padding-top:25px;
}

.about_page_global_features div{

    text-align:center;

    color:#173d27;

    font-weight:500;

    line-height:1.7;
}

@media(max-width:1100px){

    .about_page_global{

        grid-template-columns:1fr;
    }

    .about_page_global_features{

        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){

    .about_page_global_content h2{

        font-size:38px;
    }

    .about_page_global_features{

        grid-template-columns:1fr;
    }
}

.about-footer {
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}




































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

.gallery_page_hero{

    background:#1f446d;
    text-align:center;
    padding:100px 5%;
    color:white;
}

.gallery_page_hero h1{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    margin-bottom:20px;
}

.gallery_page_hero p{

    font-size:12px;

    max-width:900px;

    margin:auto;

    line-height:1.8;
}



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

.gallery_page_hero{

    min-height:520px;

    background:
    linear-gradient(
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.03)
    ),
    url("images/g1.png");

    background-size:55%;          /* smaller image */

    background-position:right center;   /* move image to right */

    background-repeat:no-repeat;

    display:flex;

    align-items:center;
}


.gallery_page_overlay{

    width:100%;

    padding:70px 6%;
}

.gallery_page_content{

    max-width:500px;
}

.gallery_page_content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    line-height:1;

    color:#0f4a26;

    margin-bottom:15px;
}

.gallery_page_tagline{

    font-family:'Cormorant Garamond',serif;

    font-size:16px;

    font-style:italic;

    color:#4f5b2c;

    margin-bottom:20px;
}

.gallery_page_content p{

    font-size:16px;

    line-height:1.8;

    color:#333;

    margin-bottom:25px;
}

.gallery_page_line{

    width:120px;

    height:4px;

    background:#c28b19;

    border-radius:10px;
}


/* =====================================
   CATEGORY BAR
===================================== */

.gallery_page_categories{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    padding:25px;

    background:#faf8f1;
}

.gallery_page_categories button{

    border:1px solid #d9cfb0;

    background:white;

    padding:14px 28px;

    border-radius:40px;

    cursor:pointer;

    font-size:18px;

    color:#173d27;

    transition:0.3s;
}

.gallery_page_categories button:hover{

    background:#1d6b2b;

    color:white;
}

.gallery_page_active{

    background:#1d6b2b !important;

    color:white !important;
}


/* MOBILE */

@media(max-width:768px){

.gallery_page_content h1{
    font-size:90px;
}

.gallery_page_tagline{
    font-size:20px;
}

.gallery_page_content p{
    font-size:14px;
}
}






/* =====================================
   GALLERY PAGE - SECTION 3
===================================== */

.gallery_page_grid{

    max-width:1400px;

    margin:50px auto;

    padding:0 5%;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:25px;
}

.gallery_page_item{

    overflow:hidden;

    border-radius:20px;

    background:white;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    transition:0.4s;
}

.gallery_page_item:hover{

    transform:translateY(-8px);
}

.gallery_page_item img{

    width:100%;

    height:280px;

    object-fit:cover;

    display:block;
}


/* =====================================
   FOOTER
===================================== */

.gallery_page_footer{

    margin-top:60px;

    padding:30px 20px;

    background:#f8f6ef;

    border-top:1px solid #e2dcc8;
}

.gallery_page_footer_content{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

    text-align:center;

    color:#184428;

    font-size:15px;
}

.gallery_page_footer_content p{

    margin:0;
}

.gallery_page_footer_content span{

    color:#b88917;

    font-size:20px;
}

@media(max-width:768px){

    .gallery_page_footer_content{

        flex-direction:column;

        gap:8px;
    }
}




















/* =====================================
   CONTACT PAGE - SECTION 2
===================================== */

.contact_page_hero{

    min-height:600px;

    background:
    linear-gradient(
        rgba(255,255,255,0.15),
        rgba(255,255,255,0.15)
    ),
    url("images/contact1.png");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;
}

.contact_page_content{

    width:450px;

    margin-left:7%;
}

.contact_page_content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:40px;

    color:#123d24;

    margin-bottom:15px;
}

.contact_page_line{

    width:180px;

    height:3px;

    background:#c79b2c;

    margin:15px 0 25px 0;

    border-radius:20px;
}

.contact_page_content p{

    font-size:20px;

    line-height:2;

    color:#333;

    max-width:420px;
}

/* MOBILE */

@media(max-width:768px){

    .contact_page_hero{

        min-height:500px;

        background-position:center;
    }

    .contact_page_content{

        width:90%;

        margin:auto;

        text-align:center;
    }

    .contact_page_content h1{

        font-size:55px;
    }

    .contact_page_line{

        margin:15px auto 25px;
    }

    .contact_page_content p{

        font-size:17px;
    }
}




/* =====================================
   CONTACT PAGE - SECTION 3
===================================== */

.contact_page_connect{

    max-width:1400px;

    margin:70px auto;

    padding:0 4%;

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:40px;
}

.contact_page_info,
.contact_page_form,
.contact_page_support{

    background:#fffdf8;

    border:1px solid #eadfc2;

    border-radius:25px;

    padding:35px;
}

.contact_page_box{

    margin-bottom:35px;

    padding-bottom:25px;

    border-bottom:1px dashed #d8cfb2;
}

.contact_page_box:last-child{

    border-bottom:none;
}

.contact_page_box h3{

    color:#173d27;

    font-size:38px;

    font-family:'Cormorant Garamond',serif;

    margin-bottom:15px;
}

.contact_page_box p{

    line-height:1.9;

    color:#444;
}

.contact_page_box ul{

    margin-top:15px;

    padding-left:20px;

    line-height:2;
}

.contact_page_email_card{

    margin-top:20px;

    background:#f7eed1;

    padding:18px;

    border-radius:15px;

    text-align:center;

    font-size:22px;

    color:#173d27;

    font-weight:600;
}

.contact_page_form h2,
.contact_page_support h2{

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    color:#173d27;

    margin-bottom:25px;
}

.contact_page_form label{

    display:block;

    margin-bottom:8px;

    margin-top:15px;

    color:#444;
}

.contact_page_form input,
.contact_page_form textarea{

    width:100%;

    padding:15px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;
}

.contact_page_form textarea{

    height:140px;

    resize:none;
}

.contact_page_form button{

    width:100%;

    margin-top:20px;

    padding:16px;

    background:#d7a531;

    color:#173d27;

    border:none;

    border-radius:10px;

    font-size:20px;

    font-weight:600;

    cursor:pointer;
}

.contact_page_support{

    margin-top:20px;
}

.contact_page_support_grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    margin-top:20px;
}

.contact_page_support_grid div{

    padding:10px;
}

.contact_page_support_email{

    margin-top:25px;

    text-align:center;

    font-size:22px;

    color:#173d27;

    border-top:1px solid #eadfc2;

    padding-top:20px;
}

@media(max-width:900px){

    .contact_page_connect{

        grid-template-columns:1fr;
    }
}


/* =====================================
   CONTACT PAGE FOOTER
===================================== */

.contact_page_footer{

    margin-top:60px;

    padding:25px 20px;

    background:#f8f6ef;

    border-top:1px solid #e6dcc3;
}

.contact_page_footer_content{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    flex-wrap:wrap;

    text-align:center;

    color:#173d27;

    font-size:15px;
}

.contact_page_footer_content p{

    margin:0;
}

.contact_page_footer_content span{

    color:#b88b1f;

    font-size:22px;
}

@media(max-width:768px){

    .contact_page_footer_content{

        flex-direction:column;

        gap:8px;
    }
}


/* =====================================
   DYIP FOOTER
===================================== */

.dyip_footer{

    background:#fcfaf3;

    border-top:1px solid #e7dcc0;

    padding:60px 5%;
}

.dyip_footer_grid{

    max-width:900px;

    margin:auto;

    display:block;

}



.dyip_footer_col h4{

    color:#173d27;

    margin-bottom:25px;

    font-size:26px;

    font-family:'Cormorant Garamond',serif;
}

.dyip_footer_logo{

    display:flex;

    gap:15px;

    align-items:center;

    margin-bottom:20px;
}

.dyip_footer_logo img{

    width:80px;

    height:80px;

    border-radius:50%;

    object-fit:cover;
}

.dyip_footer_logo h3{

    font-family:'Cormorant Garamond',serif;

    color:#173d27;

    font-size:42px;

    margin:0;
}

.dyip_footer_logo p{

    color:#b88917;

    margin:0;

    letter-spacing:2px;
}

.dyip_footer_text{

    line-height:1.9;

    color:#444;

    margin-bottom:25px;
}

.dyip_footer_social{

    display:flex;

    gap:15px;
}

.dyip_footer_social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#eef1df;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:22px;
}

.dyip_footer_col ul{

    list-style:none;

    padding:0;

    margin:0;
}

.dyip_footer_col ul li{

    margin-bottom:18px;
}

.dyip_footer_col ul li a{

    text-decoration:none;

    color:#333;
}

.dyip_footer_col p{

    line-height:1.9;

    color:#444;
}

.dyip_footer_col hr{

    border:none;

    border-top:1px solid #d9cfb2;

    margin:20px 0;
}

.dyip_footer_email{

    margin-top:20px;

    font-size:30px;

    color:#173d27;

    font-family:'Cormorant Garamond',serif;

    font-weight:700;
}

@media(max-width:900px){

    .dyip_footer_grid{

        grid-template-columns:1fr;

        text-align:center;
    }

    .dyip_footer_logo{

        justify-content:center;
    }

    .dyip_footer_social{

        justify-content:center;
    }
}

/*=====================================
        JUGAAD LAB
======================================*/
/*=========================================
          JUGAAD LAB
==========================================*/

.contact_jugaad{

    padding:90px 8%;
    background:#f8f5ef;

}

.contact_jugaad_container{

    max-width:1450px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;     /* Changed */

    gap:70px;

}


/*=========================
        LEFT CONTENT
==========================*/

.contact_jugaad_text{

    flex:0 0 48%;
    max-width:620px;

}

.contact_jugaad_text h2{

    font-family:'Playfair Display',serif;
    font-size:30px;
    color:#1f4d38;
    margin-bottom:18px;

}

.contact_jugaad_text h4{

    font-size:28px;
    color:#47673a;
    font-weight:600;
    margin-bottom:30px;
    line-height:1.5;

}

.contact_jugaad_text p{

    font-size:16px;
    line-height:1.9;
    color:#555;
    text-align:justify;
    margin-bottom:25px;

}

.contact_jugaad_text h5{

    font-size:16px;
    color:#1f4d38;
    margin:35px 0 20px;

}


/*=========================
        GRID
==========================*/

.jugaad_grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;

}

.jugaad_grid div{

    background:#fff;

    border-radius:15px;

    padding:18px;

    border:1px solid #e7dcc1;

    font-size:18px;

    font-weight:500;

    color:#1f4d38;

    transition:.35s;

}

.jugaad_grid div:hover{

    background:#1f4d38;

    color:#fff;

    transform:translateY(-5px);

}


/*=========================
          QUOTE
==========================*/

.jugaad_quote{

    margin-top:35px;

    background:#1f4d38;

    color:white;

    padding:24px;

    border-radius:18px;

    text-align:center;

    font-size:24px;

    font-family:'Playfair Display',serif;

    font-style:italic;

    line-height:1.6;

}


/*=========================
      RIGHT IMAGE
==========================*/

.contact_jugaad_image{

    flex:0 0 52%;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    margin-top:5px;      /* aligns with heading */

}

.contact_jugaad_image img{

    width:100%;

    max-width:780px;

    display:block;

    filter:drop-shadow(0 15px 30px rgba(0,0,0,.12));

    transition:.35s ease;

    /* soft fade */

    -webkit-mask-image:
        radial-gradient(circle at center,
        rgba(0,0,0,1) 62%,
        rgba(0,0,0,.96) 72%,
        rgba(0,0,0,.75) 84%,
        rgba(0,0,0,.35) 94%,
        transparent 100%);

    mask-image:
        radial-gradient(circle at center,
        rgba(0,0,0,1) 62%,
        rgba(0,0,0,.96) 72%,
        rgba(0,0,0,.75) 84%,
        rgba(0,0,0,.35) 94%,
        transparent 100%);

}

.contact_jugaad_image img:hover{

    transform:scale(1.02);

}


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

@media(max-width:1000px){

.contact_jugaad{

    padding:60px 6%;

}

.contact_jugaad_container{

    flex-direction:column-reverse;

    align-items:center;

    gap:45px;

}

.contact_jugaad_text{

    max-width:100%;

}

.contact_jugaad_text h2{

    font-size:42px;

    text-align:center;

}

.contact_jugaad_text h4{

    font-size:22px;

    text-align:center;

}

.contact_jugaad_text p{

    font-size:18px;

    text-align:left;

}

.contact_jugaad_text h5{

    text-align:center;

}

.jugaad_grid{

    grid-template-columns:1fr;

}

.contact_jugaad_image{

    margin-top:0;

}

.contact_jugaad_image img{

    max-width:100%;

}

.jugaad_quote{

    font-size:20px;

}

}





























/* =====================================
   STORIES HERO SECTION
===================================== */

.stories_page_hero{

    min-height:650px;

    background:
    linear-gradient(
        rgba(255,255,255,0.20),
        rgba(255,255,255,0.20)
    ),
    url("images/stories1.png");

    background-size:90%;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    align-items:center;
}

.stories_page_overlay{

    width:100%;
}

.stories_page_content{

    width:500px;

    margin-left:7%;
}

.stories_page_content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#173d27;

    margin-bottom:15px;
}

.stories_page_tagline{

    font-size:16px;

    color:#b88917;

    margin-bottom:25px;

    font-weight:600;
}

.stories_page_content p{

    font-size:16px;

    line-height:2;

    color:#333;

    max-width:450px;
}

.stories_page_line{

    width:180px;

    height:4px;

    background:#d7a531;

    margin-top:25px;

    border-radius:20px;
}

/* MOBILE */

@media(max-width:768px){

    .stories_page_hero{

        min-height:500px;
    }

    .stories_page_content{

        width:90%;

        margin:auto;

        text-align:center;
    }

    .stories_page_content h1{

        font-size:55px;
    }

    .stories_page_tagline{

        font-size:18px;
    }

    .stories_page_content p{

        font-size:16px;
    }

    .stories_page_line{

        margin:25px auto 0;
    }
}

/* =====================================
   SECTION 3 - STORIES LINKS
===================================== */

.stories_links_section{

    padding:80px 8%;

    background:#faf8f2;
}

.stories_links_heading{

    text-align:center;

    margin-bottom:50px;
}

.stories_links_heading h2{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#173d27;

    margin-bottom:10px;
}

.stories_links_heading p{

    color:#666;

    font-size:18px;
}

.stories_links_container{

    max-width:1200px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;
}

.story_link{

    display:block;

    text-decoration:none;

    background:white;

    padding:25px 30px;

    border-left:6px solid #d7a531;

    border-radius:15px;

    color:#173d27;

    font-size:16px;

    font-weight:500;

    transition:0.3s;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.story_link:hover{

    background:#173d27;

    color:white;

    transform:translateX(10px);
}

@media(max-width:768px){

    .stories_links_heading h2{

        font-size:30px;
    }

    .story_link{

        font-size:16px;

        padding:18px;
    }
}
/* =====================================
   STORIES TICKER
===================================== */
/* =====================================
   LIVE STORIES TICKER
===================================== */
/* =====================================
   LIVE STORIES SECTION
===================================== */
/* =====================================
   STORIES TICKER
===================================== */

.stories_ticker{

    width:90%;

    max-width:1400px;

    margin:70px auto;

    background:#ffffff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* HEADER */

.stories_ticker_header{

    display:flex;

    align-items:center;

    gap:12px;

    padding:22px 35px;

    background:linear-gradient(
        90deg,
        #10301d,
        #173d27,
        #0f4b27
    );

    color:white;
}

.stories_dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#7fff00;

    animation:blink 1.2s infinite;
}

@keyframes blink{

    0%{opacity:1;}
    50%{opacity:.3;}
    100%{opacity:1;}
}

.stories_ticker_header strong{

    font-size:25px;

    font-weight:600;
}

.stories_live{

    background:#d7a531;

    color:#173d27;

    padding:6px 14px;

    border-radius:30px;

    font-size:12px;

    font-weight:700;
}

/* BODY */

.stories_ticker_body{

    max-height:550px;

    overflow-y:auto;
}

/* STORY ROW */

.story_link{

    display:grid;

    grid-template-columns:1fr 120px 160px;

    align-items:center;

    gap:20px;

    text-decoration:none;

    background:#ffffff;

    color:#173d27;

    padding:22px 35px;

    border-bottom:1px solid #ececec;

    transition:all .3s ease;
}

.story_link:nth-child(even){

    background:#faf8f2;
}

.story_link:hover{

    background:#173d27;

    transform:translateX(8px);
}

/* TITLE */

.story_title{

    color:#173d27;

    font-size:18px;

    font-weight:600;

    line-height:1.6;
}

/* DATE */

.story_date{

    color:#b88917;

    text-align:center;

    font-size:15px;

    font-weight:600;

    white-space:nowrap;
}

/* READ MORE */

.story_arrow{

    color:#b88917;

    text-align:right;

    font-size:16px;

    font-weight:700;

    white-space:nowrap;
}

/* HOVER COLORS */

.story_link:hover .story_title{

    color:white;
}

.story_link:hover .story_date{

    color:#f4d06f;
}

.story_link:hover .story_arrow{

    color:#f4d06f;
}

/* SCROLLBAR */

.stories_ticker_body::-webkit-scrollbar{

    width:10px;
}

.stories_ticker_body::-webkit-scrollbar-track{

    background:#f3f3f3;
}

.stories_ticker_body::-webkit-scrollbar-thumb{

    background:#d7a531;

    border-radius:50px;
}

/* MOBILE */

@media(max-width:768px){

    .stories_ticker{

        width:95%;
    }

    .stories_ticker_header{

        padding:18px 20px;
    }

    .stories_ticker_header strong{

        font-size:22px;
    }

    .story_link{

        grid-template-columns:1fr;

        gap:10px;

        padding:18px 20px;
    }

    .story_title{

        font-size:16px;
    }

    .story_date{

        text-align:left;
    }

    .story_arrow{

        text-align:left;
    }
}




















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

.about_vision{
    width:100%;
    padding:40px 8%;
    background:#f8f5ef;
}

.about_vision_content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.about_vision_text{
    flex:1;
}

.about_vision_text h2{
    font-family:'Playfair Display', serif;
    font-size:30px;
    font-weight:600;
    color:#1f4d38;
    margin-bottom:35px;
    line-height:1.2;
}

.about_vision_text p{
    font-size:16px;
    line-height:1.9;
    color:#4d4d4d;
    text-align:justify;
    font-weight:400;
}

.about_vision_image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about_vision_image img{
    width:100%;
    max-width:700px;
    height:auto;
    display:block;

    transition:0.4s ease;

    /* Remove rectangular edges */
    -webkit-mask-image:
        radial-gradient(circle at center,
            #000 52%,
            rgba(0,0,0,.95) 66%,
            rgba(0,0,0,.75) 78%,
            rgba(0,0,0,.45) 88%,
            transparent 100%);
    mask-image:
        radial-gradient(circle at center,
            #000 52%,
            rgba(0,0,0,.95) 66%,
            rgba(0,0,0,.75) 78%,
            rgba(0,0,0,.45) 88%,
            transparent 100%);
}

.about_vision_image img:hover{
    transform:scale(1.02);
}



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

.about_mission{
    width:100%;
    padding:40px 8%;
    background:#f8f5ef;
}

.about_mission_content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.about_mission_image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
}

.about_mission_image img{
    width:100%;
    max-width:700px;
    height:auto;
    display:block;

    transition:0.4s ease;

    /* Remove rectangular edges */
    -webkit-mask-image:
        radial-gradient(circle at center,
            #000 52%,
            rgba(0,0,0,.95) 66%,
            rgba(0,0,0,.75) 78%,
            rgba(0,0,0,.45) 88%,
            transparent 100%);
    mask-image:
        radial-gradient(circle at center,
            #000 52%,
            rgba(0,0,0,.95) 66%,
            rgba(0,0,0,.75) 78%,
            rgba(0,0,0,.45) 88%,
            transparent 100%);
}

.about_mission_image img:hover{
    transform:scale(1.02);
}

.about_mission_text{
    flex:1;
}

.about_mission_text h2{
    font-family:'Playfair Display', serif;
    font-size:30px;
    font-weight:600;
    color:#1f4d38;
    margin-bottom:35px;
    line-height:1.2;
}

.about_mission_text p{
    font-size:16px;
    line-height:1.9;
    color:#4d4d4d;
    text-align:justify;
}



/*==========================
      Mobile
===========================*/

@media (max-width:900px){

    .about_vision,
    .about_mission{
        padding:60px 6%;
    }

    .about_vision_content{
        flex-direction:column-reverse;
        gap:40px;
    }

    .about_mission_content{
        flex-direction:column;
        gap:40px;
    }

    .about_vision_text h2,
    .about_mission_text h2{
        font-size:38px;
        text-align:center;
    }

    .about_vision_text p,
    .about_mission_text p{
        font-size:18px;
        text-align:left;
    }

    .about_vision_image img,
    .about_mission_image img{
        max-width:100%;
    }

}
























