/*=========================================================
GOOGLE FONTS
=========================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');


/*=========================================================
ROOT VARIABLES
=========================================================*/

:root{

    /* Brand Colours */

    --navy:#203A63;
    --gold:#C9A03A;
    --gold-light:#E6C97A;
    --sage:#91A48E;
    --terracotta:#C88363;

    /* Backgrounds */

    --white:#FFFFFF;
    --ivory:#FCFAF6;
    --cream:#F7F3EC;
    --sand:#EFE7DA;

    /* Text */

    --heading:#22324A;
    --text:#555555;
    --light-text:#8C8C8C;

    /* Effects */

    --shadow:0 18px 45px rgba(0,0,0,.08);

    --radius:28px;

    --transition:.4s ease;

}



/*=========================================================
RESET
=========================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.8;

}

img{

    width:100%;

    display:block;

}

ul{

    list-style:none;

}

a{

    text-decoration:none;

    color:inherit;

}



/*=========================================================
GENERAL LAYOUT
=========================================================*/

section{

    position:relative;

    padding:150px 8%;

}

.container{

    width:100%;

    max-width:1400px;

    margin:auto;

}



/*=========================================================
SECTION TAG
=========================================================*/

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:12px 24px;

    border-radius:50px;

    background:#FFF5DF;

    color:var(--gold);

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-tag::before{

    content:"●";

    color:var(--sage);

}



/*=========================================================
SECTION TITLE
=========================================================*/

.section-title{

    max-width:900px;

    margin:auto auto 80px;

    text-align:center;

}

.section-title h2{

    font-family:'Cormorant Garamond',serif;

    font-size:4.6rem;

    line-height:1;

    font-weight:600;

    color:var(--heading);

    margin-bottom:25px;

}

.section-title h2 span{

    color:var(--gold);

}

.section-title p{

    font-size:1.1rem;

    color:var(--light-text);

    max-width:760px;

    margin:auto;

}



/*=========================================================
GOLD DIVIDER
=========================================================*/

.gold-divider{

    width:90px;

    height:3px;

    border-radius:50px;

    margin:30px auto;

    background:linear-gradient(

        to right,

        var(--gold),

        var(--gold-light)

    );

}



/*=========================================================
BUTTONS
=========================================================*/

.button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:18px 42px;

    border-radius:50px;

    background:var(--gold);

    color:white;

    font-weight:600;

    font-size:15px;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.button:hover{

    transform:translateY(-5px);

    background:#B78F2C;

}

.button.secondary{

    background:white;

    color:var(--heading);

    border:1.5px solid rgba(201,160,58,.25);

}

.button.secondary:hover{

    background:var(--gold);

    color:white;

}



/*=========================================================
BACKGROUND DECORATIONS
=========================================================*/

.section-blob{

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:#FFF4DE;

    filter:blur(10px);

    opacity:.7;

    z-index:-1;

}

.section-blob.left{

    top:-140px;

    left:-140px;

}

.section-blob.right{

    bottom:-140px;

    right:-140px;

}



/*=========================================================
HEADER
=========================================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    padding:22px 0;

}



/*=========================================================
NAVIGATION
=========================================================*/

.navbar{

    width:92%;

    max-width:1450px;

    margin:auto;

    height:90px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    border-radius:80px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    transition:.4s;

}

.navbar.scrolled{

    background:rgba(255,255,255,.98);

    box-shadow:0 20px 45px rgba(0,0,0,.10);

}

.nav-wrapper{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 45px;

}



/*=========================================================
LOGO
=========================================================*/

.logo{

    display:flex;

    align-items:center;

}

.logo img{

    height:78px;

    width:auto;

    transition:.4s;

}

.logo:hover img{

    transform:scale(1.05);

}



/*=========================================================
NAV LINKS
=========================================================*/

.nav-links{

    display:flex;

    align-items:center;

    gap:42px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    font-size:15px;

    font-weight:500;

    color:var(--heading);

    transition:.35s;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-10px;

    transform:translateX(-50%);

    width:0;

    height:2px;

    border-radius:20px;

    background:var(--gold);

    transition:.35s;

}

.nav-links a:hover{

    color:var(--gold);

}

.nav-links a:hover::after{

    width:100%;

}

.nav-links a.active{

    color:var(--gold);

}

.nav-links a.active::after{

    width:100%;

}

/*=========================================================
NAVIGATION GET INVOLVED BUTTON
=========================================================*/

.nav-btn{

    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 38px;

    border-radius:50px;

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    font-size:16px;
    font-weight:600;

    text-decoration:none;

    border:none;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(201,160,58,.35);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

/*=========================================================
Hover
=========================================================*/

.nav-btn:hover{

    background:linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    );

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 22px 45px rgba(201,160,58,.45);

}

/*=========================================================
Silver Shine Effect
=========================================================*/

.nav-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:45%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.85),
        transparent
    );

    transform:skewX(-25deg);

}

.nav-btn:hover::before{

    animation:buttonShine .8s ease;

}

/*=========================================================
Click Effect
=========================================================*/

.nav-btn:active{

    transform:scale(.98);

}

/*=========================================================
Animation
=========================================================*/

@keyframes buttonShine{

    from{

        left:-120%;

    }

    to{

        left:170%;

    }

}
/*=========================================================
PRIMARY GOLD BUTTON
=========================================================*/

.primary-btn{

    position:relative;
    overflow:hidden;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:18px 42px;

    background:linear-gradient(
        135deg,
        #C8A33A,
        #E6C86A
    ) !important;

    color:#ffffff !important;

    text-decoration:none;

    font-size:17px;
    font-weight:600;

    border:none;

    border-radius:50px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(201,162,39,.35);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

/* Keep gold on hover */

.primary-btn:hover{

    background:linear-gradient(
        135deg,
        #C8A33A,
        #E6C86A
    ) !important;

    color:#ffffff !important;

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(201,162,39,.45);

}

/* Silver shine */

.primary-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:45%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );

    transform:skewX(-25deg);

}

.primary-btn:hover::before{

    animation:buttonShine .8s ease;

}

@keyframes buttonShine{

    from{

        left:-120%;

    }

    to{

        left:170%;

    }

}
/*=========================================================
GET INVOLVED
=========================================================*/

.get-involved-section{

    padding:140px 8%;

    background:#faf8f3;

}

.get-involved-section .section-title{

    text-align:center;

    margin-bottom:60px;

}

.involved-image{

    width:85%;

    max-width:1200px;

    margin:0 auto 70px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.involved-image img{

    width:100%;

    display:block;

    height:auto;

}

.involved-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.involved-content p{

    font-size:18px;

    line-height:2;

    color:var(--grey);

    margin-bottom:40px;

}

.involved-content ul{

    list-style:none;

    padding:0;

    margin-bottom:45px;

}

.involved-content li{

    font-size:18px;

    margin:15px 0;

}

.involved-content i{

    color:var(--gold);

    margin-right:10px;

}


/*=========================================================
MOBILE MENU ICON
=========================================================*/

.menu-toggle{

    display:none;

    font-size:28px;

    color:var(--heading);

    cursor:pointer;

    transition:.3s;

}
/*=========================================================
MOBILE NAVIGATION
=========================================================*/

@media (max-width: 1100px){

    .navbar{

        width:95%;
        height:85px;

    }

    .nav-wrapper{

        padding:0 30px;

    }

    .nav-links{

        position:fixed;

        top:115px;
        left:-100%;

        width:92%;
        max-width:500px;

        margin:0 auto;

        background:rgba(255,255,255,.98);

        backdrop-filter:blur(20px);

        border-radius:30px;

        box-shadow:0 25px 60px rgba(0,0,0,.12);

        display:flex;

        flex-direction:column;

        align-items:center;

        gap:35px;

        padding:50px 0;

        transition:.45s ease;

    }

    .nav-links.show{

        left:50%;

        transform:translateX(-50%);

    }

    .nav-links li{

        width:100%;

        text-align:center;

    }

    .nav-links a{

        font-size:1.1rem;

    }

    .nav-btn{

        display:none;

    }

    .menu-toggle{

        display:block;

        font-size:30px;

    }

}


/*=========================================================
TABLET
=========================================================*/

@media (max-width:900px){

    section{

        padding:120px 7%;

    }

    .section-title h2{

        font-size:3.6rem;

    }

}


/*=========================================================
PHONE
=========================================================*/

@media (max-width:768px){

    header{

        padding:15px 0;

    }

    .navbar{

        height:78px;

        border-radius:24px;

    }

    .nav-wrapper{

        padding:0 22px;

    }

    .logo img{

        height:62px;

    }

    section{

        padding:100px 6%;

    }

    .section-title{

        margin-bottom:60px;

    }

    .section-title h2{

        font-size:3rem;

    }

    .section-title p{

        font-size:1rem;

    }

}


/*=========================================================
SMALL PHONE
=========================================================*/

@media (max-width:576px){

    .navbar{

        width:94%;

    }

    .logo img{

        height:55px;

    }

    .nav-links{

        width:94%;

        top:95px;

        gap:28px;

        padding:40px 0;

    }

    .nav-links a{

        font-size:1rem;

    }

    .section-title h2{

        font-size:2.5rem;

        line-height:1.1;

    }

    .button{

        width:100%;

    }

}


/*=========================================================
SCROLLBAR
=========================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f6f4ef;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#B78F2C;

}


/*=========================================================
TEXT SELECTION
=========================================================*/

::selection{

    background:rgba(201,160,58,.25);

    color:var(--heading);

}


/*=========================================================
SMOOTH FADE-IN ANIMATION
=========================================================*/

.fade-up{

    opacity:0;

    transform:translateY(40px);

    transition:all .8s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}


/*=========================================================
FLOATING DECORATIVE BLOBS
=========================================================*/

@keyframes floatBlob{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0);

    }

}

.section-blob{

    animation:floatBlob 9s ease-in-out infinite;

}


/*=========================================================
IMAGE HOVER
=========================================================*/

img{

    transition:transform .6s ease;

}

.image-hover{

    overflow:hidden;

    border-radius:var(--radius);

}

.image-hover img:hover{

    transform:scale(1.05);

}


/*=========================================================
UTILITY CLASSES
=========================================================*/

.text-center{

    text-align:center;

}

.mt-2{

    margin-top:20px;

}

.mt-3{

    margin-top:35px;

}

.mb-2{

    margin-bottom:20px;

}

.mb-3{

    margin-bottom:35px;

}

.hidden{

    display:none;

}
/*==================================================
                HERO SECTION
==================================================*/

.hero{
    position:relative;
    width:100%;
    height:100vh;
    min-height:850px;
    background:#fbfaf6;
    overflow:hidden;
    display:flex;
    align-items:center;
}

/*===================================
LEFT CONTENT
===================================*/

.hero-content{

    position:relative;

    width:42%;

    padding-left:6%;

    z-index:20;
    color: #C04BA3;
}

.hero-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    font-family:'Poppins',sans-serif;
    font-size:.85rem;
    letter-spacing:4px;
    text-transform:uppercase;

    color:#b9278b;

    margin-bottom:35px;

}

.hero-content h1{

    font-family:'Cormorant Garamond',serif;

    font-size:6.2rem;

    line-height:.95;

    font-weight:600;

    color:#5e175d;

    margin-bottom:35px;

}

.hero-content h1 span{

    color:#ac8c23;

}

.hero-content p{

    width:470px;

    font-family:'Poppins',sans-serif;

    font-size:1.12rem;

    line-height:1.9;

    color:#555;

    margin-bottom:45px;
    
    
}

/*===================================
BUTTONS
===================================*/

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    padding:18px 36px;

    border-radius:12px;

    background:#C89B3C;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.hero-btn:hover{

    transform:translateY(-5px);

    background:#b88927;

}

.hero-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:12px;

    border:1.5px solid #C89B3C;

    color:#17315E;

    text-decoration:none;

    transition:.35s;

}

.hero-btn-outline:hover{

    background:#fff;

}

/*===================================
RIGHT SIDE
===================================*/

.hero-image-area{

    position:absolute;

    right:0;

    top:0;

    width:68%;

    height:100%;

    overflow:hidden;

}

/*===================================
SLIDER
===================================*/

.hero-slider{

    position:relative;

    width:100%;

    height:100%;

}

.hero-slide{

    position:absolute;

    inset:0;

    opacity:0;

    transition:opacity 1.8s ease;

}

.hero-slide.active{

    opacity:1;

    z-index:2;

}

.hero-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    animation:zoomHero 9s linear infinite;

}

/*===================================
LEFT FADE
===================================*/

.hero-fade{

    position:absolute;

    left:-2px;

    top:0;

    width:46%;

    height:100%;

    z-index:5;

    background:linear-gradient(
        to right,
        #fbfaf6 0%,
        rgba(251,250,246,.98) 18%,
        rgba(251,250,246,.95) 30%,
        rgba(251,250,246,.82) 42%,
        rgba(251,250,246,.55) 55%,
        rgba(251,250,246,.18) 70%,
        transparent 100%
    );

}

/*===================================
SOFT LIGHT
===================================*/

.hero-fade::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:-260px;

    top:-120px;

    border-radius:50%;

    background:white;

    filter:blur(120px);

}

.hero-fade::after{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    left:-150px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(201,160,58,.18);

    filter:blur(120px);

}

/*===================================
SCROLL
===================================*/

.scroll-indicator{

    position:absolute;

    left:50%;

    bottom:35px;

    transform:translateX(-50%);

    color:#777;

    text-decoration:none;

    font-size:.75rem;

    letter-spacing:3px;

    text-transform:uppercase;

    z-index:30;

}

/*===================================
IMAGE ANIMATION
===================================*/

@keyframes zoomHero{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}
/*=========================================================
SCROLL INDICATOR
=========================================================*/

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

    color:#ffffff;

    z-index:10;

    animation:scrollBounce 2s infinite;

}

.scroll-indicator span{

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:500;

}

.scroll-indicator i{

    font-size:22px;

}

@keyframes scrollBounce{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,8px);

    }

    100%{

        transform:translate(-50%,0);

    }

}





/*=========================================================
RESPONSIVE HERO
=========================================================*/

@media (max-width:992px){

    .hero{

        height:auto;

        min-height:100vh;

    }

    .hero-overlay{

        width:100%;

        background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.94) 0%,
            rgba(255,255,255,.86) 40%,
            rgba(255,255,255,.25) 100%
        );

    }

    .hero-content{

        position:relative;

        top:auto;

        left:auto;

        transform:none;

        width:90%;

        max-width:600px;

        margin:140px auto 80px;

        text-align:center;

    }

    .hero-content h1{

        font-size:3.4rem;

        line-height:1.1;

    }

    .hero-content p{

        max-width:100%;

        margin:25px auto 40px;

    }

    .hero-slider{

        opacity:.35;

    }

}


@media (max-width:768px){

    .hero-content h1{

        font-size:2.8rem;

    }

    .hero-btn{

        padding:16px 32px;

        font-size:14px;

    }

}


@media (max-width:480px){

    .hero-content h1{

        font-size:2.2rem;

    }

    .hero-content{

        margin-top:120px;

    }

}
/*=========================================================
OUR STORY
=========================================================*/

.story-section{

    background:#FFFCF8;
    padding:120px 8%;

}

.story-container{

    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:70px;
    align-items:center;

}

/*======================================================
WHO WE ARE - IMAGE AREA
=======================================================*/

.story-image {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: visible;

    padding-bottom: 145px;
}


/*======================================================
SOFT CREAM BACKGROUND
=======================================================*/

.story-image::before {
    content: "";
    position: absolute;

    /* Match the image width */
    width: 85%;

    /* Image + bottom section */
    height: calc(100% - 15px);

    /* Slightly visible on the left */
    left: -25px;

    /* Slightly visible underneath */
    top: 25px;

    background: #F8EEDB;

    border-radius: 35px 70px 70px 35px;

    z-index: 0;
}


/*======================================================
MAIN IMAGE
=======================================================*/

.story-image img {
    width: 85%;
    height: auto;

    display: block;

    object-fit: contain;
    object-position: left center;

    border-radius: 30px;

    position: relative;
    z-index: 1;
}


/*======================================================
2016 BADGE
=======================================================*/

.experience-badge {
    position: absolute;

    left: 0;
    bottom: 25px;

    width: 85%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 35px;

    background: transparent;

    border: none;
    box-shadow: none;

    z-index: 2;
}


/* Serving Communities Since */

.experience-badge p {
    margin: 0;

    font-size: 20px;
    line-height: 1.3;

    font-weight: 500;

    color: #4A4A4A;

    max-width: 180px;
}


/* 2016 */

.experience-badge h2 {
    margin: 0;

    font-size: 52px;
    line-height: 1;

    font-weight: 700;

    color: #303030;
}
/*=========================================================
CONTENT CARD
=========================================================*/

.story-content{

    background:#ffffff;

    padding:55px;

    border-radius:35px;

    box-shadow:0 18px 45px rgba(0,0,0,.06);

}

.story-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    line-height:1.08;

    color:#243240;

    margin:20px 0;

}

.story-content h2 span{

    color:#C7A443;

}

.story-content p{

    color:#666;

    line-height:2;

    font-size:17px;

    margin-bottom:20px;

}

.story-script{

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#C7A443;

    margin-bottom:15px;

    font-style:italic;

}

/*=========================================================
MISSION CARD
=========================================================*/

.story-highlight{

    display:flex;

    gap:18px;

    align-items:flex-start;

    margin:35px 0;

    padding:26px;

    border-radius:22px;

    background:#FDF8F1;

    border-left:5px solid #C7A443;

}

.story-highlight i{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#FFF2D7;

    color:#C7A443;

    font-size:22px;

    flex-shrink:0;

}

.story-highlight h4{

    color:#20364D;

    font-size:22px;

    margin-bottom:8px;

}

.story-highlight p{

    margin:0;

    font-size:15px;

    line-height:1.8;

}

/*=========================================================
BUTTON
=========================================================*/

.story-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    margin-top:15px;

    padding:16px 34px;

    background:#C7A443;

    color:white;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.story-btn:hover{

    transform:translateY(-4px);

    background:#B89230;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.story-container{

    grid-template-columns:1fr;

}

.story-image img{

    height:420px;

}

.story-content{

    padding:40px;

}

.story-content h2{

    font-size:44px;

}

}
/*=========================================================
OUR STORY

=========================================================*/

.story-section{
    padding:140px 8%;
    background:#fff;
    position:relative;
    overflow:hidden;
}

.story-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#FFF6EA;
    border-radius:50%;
    top:-180px;
    right:-150px;
    opacity:.8;
    z-index:0;
}

.story-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:90px;
    position:relative;
    z-index:2;
}

/*=========================================================
LEFT IMAGE
=========================================================*/

.story-image{
    position:relative;
}

.story-image img{
    width:100%;
    border-radius:32px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.story-image::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    border-radius:32px;
    background:#FDF4E8;
    top:18px;
    left:-18px;
    z-index:-1;
}

/* Floating Card */

.story-badge{
    position:absolute;
    bottom:35px;
    left:35px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    padding:22px 28px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.story-badge h4{
    color:var(--gold);
    font-size:28px;
    font-family:'Cormorant Garamond',serif;
    margin-bottom:4px;
}

.story-badge p{
    font-size:14px;
    color:var(--grey);
    margin:0;
}

/*=========================================================
RIGHT CONTENT
=========================================================*/

.story-content{
    max-width:560px;
}

.story-content h2{
    font-family:'Cormorant Garamond',serif;
    font-size:62px;
    line-height:1.1;
    color:#243240;
    margin-bottom:25px;
}

.story-content h2 span{
    color:var(--gold);
}

.story-content .lead-text{
    font-size:20px;
    color:#444;
    line-height:1.8;
    margin-bottom:25px;
    font-weight:500;
}

.story-content p{
    color:var(--grey);
    line-height:2;
    font-size:17px;
    margin-bottom:22px;
}

/*=========================================================
MISSION BOX
=========================================================*/

.story-highlight{
    margin-top:35px;
    padding:28px 32px;
    background:#FFFBF5;
    border-left:5px solid var(--gold);
    border-radius:22px;
}

.story-highlight h4{
    color:#243240;
    font-size:22px;
    margin-bottom:12px;
}

.story-highlight p{
    margin:0;
    color:var(--grey);
}

/*=========================================================
FOUNDER
=========================================================*/

.founder-section{

    padding:140px 8%;

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #FCFAF8 100%
    );

}

.founder-container{

    display:grid;

    grid-template-columns:480px 1fr;

    gap:80px;

    align-items:center;

}

/*=========================================================
IMAGE
=========================================================*/

.founder-image{

    position:relative;

}

.founder-image img{

    width:100%;

    border-radius:35px;

    display:block;

    object-fit:cover;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/* Decorative background */

.founder-image::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    background:#FFF3DC;

    border-radius:35px;

    top:18px;

    left:-18px;

    z-index:-1;

}

/*=========================================================
CONTENT
=========================================================*/

.founder-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:58px;

    line-height:1.15;

    color:var(--blue);

    margin:18px 0 25px;

}

.founder-intro{

    color:var(--gold);

    font-weight:600;

    margin-bottom:15px;

}

.founder-message{

    color:var(--grey);

    line-height:2;

    margin-bottom:22px;

    font-size:17px;

}

/*=========================================================
SIGNATURE
=========================================================*/

.founder-signature{

    margin-top:45px;

    padding-top:25px;

    border-top:1px solid rgba(0,0,0,.08);

}

.founder-signature h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    color:var(--blue);

    margin-bottom:5px;

}

.founder-signature span{

    display:block;

    color:var(--gold);

    font-weight:600;

    margin-bottom:5px;

}

.founder-signature small{

    color:var(--grey);

    font-size:15px;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .founder-container{

        grid-template-columns:1fr;

        gap:60px;

    }

    .founder-content{

        text-align:center;

    }

    .founder-content h2{

        font-size:44px;

    }

}

/*=========================================================
SCRIPTURE
=========================================================*/

.scripture-box{
    margin-top:35px;
    padding:28px 32px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.scripture-box h4{
    font-family:'Cormorant Garamond',serif;
    font-size:32px;
    color:var(--gold);
    margin-bottom:6px;
}

.scripture-box span{
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:var(--grey);
    font-weight:600;
}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:992px){

.story-container{
    grid-template-columns:1fr;
    gap:60px;
}

.story-content{
    max-width:100%;
    text-align:center;
}

.story-content h2{
    font-size:48px;
}

.story-image::before{
    display:none;
}

.story-badge{
    left:20px;
    bottom:20px;
}

}
/*=========================================================
OUR IMPACT
=========================================================*/

.impact-section{
    padding:140px 8%;
    background:#fafafa;
    position:relative;
}

.impact-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
    margin-top:70px;
}

/*=========================================================
CARD
=========================================================*/

.impact-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    transition:.4s ease;

}

.impact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}

/*=========================================================
IMAGE
=========================================================*/

.impact-image{

    position:relative;

    overflow:hidden;

}

.impact-image img{

    width:100%;

    height:330px;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.impact-card:hover .impact-image img{

    transform:scale(1.08);

}

.impact-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent,
        rgba(0,0,0,.20)
    );

}

/*=========================================================
CONTENT
=========================================================*/

.impact-content{

    padding:35px;

}

.impact-line{

    display:block;

    width:65px;

    height:4px;

    background:var(--gold);

    border-radius:30px;

    margin-bottom:20px;

}

.impact-content h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    color:var(--blue);

    margin-bottom:18px;

}

.impact-content p{

    color:var(--grey);

    line-height:1.9;

    font-size:17px;

    margin-bottom:28px;

}

/*=========================================================
BUTTON
=========================================================*/

.impact-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--gold);

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.impact-link:hover{

    color:var(--blue);

    gap:16px;

}

/*=========================================================
BOTTOM QUOTE
=========================================================*/

.impact-closing{

    text-align:center;

    margin-top:90px;

}

.impact-closing h3{

    font-family:'Cormorant Garamond',serif;

    font-size:48px;

    color:var(--blue);

    margin-bottom:20px;

}

.impact-closing p{

    max-width:780px;

    margin:auto;

    color:var(--grey);

    line-height:2;

    font-size:18px;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.impact-grid{

    grid-template-columns:1fr;

}

.impact-image img{

    height:260px;

}

.impact-content{

    padding:28px;

}

.impact-content h3{

    font-size:28px;

}

.impact-closing h3{

    font-size:36px;

}

}
/*=========================================================
OUR PROMISE
=========================================================*/

.promise-section{

    padding:140px 8%;
    background:linear-gradient(
        180deg,
        #FFFBF8 0%,
        #FFFFFF 100%
    );

    position:relative;
    overflow:hidden;

}

.promise-section::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    background:#FFF4E5;

    border-radius:50%;

    top:-180px;
    right:-170px;

    opacity:.8;

}

.promise-container{

    max-width:1400px;
    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

    position:relative;

    z-index:2;

}

/*=========================================================
IMAGE
=========================================================*/

.promise-image{

    position:relative;

}

.promise-image img{

    width:100%;
    display:block;

    border-radius:32px;

    object-fit:cover;

    box-shadow:0 25px 60px rgba(0,0,0,.10);

}

.promise-image::before{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    border-radius:32px;

    background:#FDF4E8;

    top:18px;
    left:-18px;

    z-index:-1;

}

/* Floating Badge */

.promise-badge{

    position:absolute;

    left:30px;
    bottom:30px;

    padding:18px 24px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    border-radius:18px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.10);

}

.promise-badge i{

    width:48px;
    height:48px;

    border-radius:14px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#FFF4E8;

    color:var(--gold);

}

.promise-badge span{

    font-weight:600;
    color:#243240;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.promise-container{

    grid-template-columns:1fr;
    gap:60px;

}

.promise-image::before{

    display:none;

}

.promise-badge{

    left:20px;
    bottom:20px;

}

}
/*=========================================================
PROMISE CONTENT
=========================================================*/

.promise-text h2{

    font-family:'Cormorant Garamond',serif;

    font-size:60px;

    line-height:1.1;

    color:#243240;

    margin:22px 0 28px;

}

.promise-text h2 span{

    color:var(--gold);

}

.promise-text .lead-text{

    font-size:20px;

    color:#444;

    line-height:1.8;

    margin-bottom:24px;

    font-weight:500;

}

.promise-text p{

    color:var(--grey);

    font-size:17px;

    line-height:2;

    margin-bottom:22px;

}

/*=========================================================
PROMISE LIST
=========================================================*/

.promise-list{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin:45px 0;

}

.promise-list div{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px 24px;

    background:#fff;

    border-radius:22px;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

}

.promise-list div:hover{

    transform:translateX(8px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.promise-list i{

    width:52px;

    height:52px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#FFF4E7;

    color:var(--gold);

    font-size:20px;

    flex-shrink:0;

}

.promise-list p{

    margin:0;

    color:#555;

    font-size:16px;

    line-height:1.8;

}

/*=========================================================
QUOTE
=========================================================*/

.promise-text blockquote{

    margin-top:40px;

    padding:30px 35px;

    background:#FFFBF5;

    border-left:5px solid var(--gold);

    border-radius:22px;

    font-family:'Cormorant Garamond',serif;

    font-size:30px;

    color:#243240;

    font-style:italic;

    line-height:1.5;

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

/*=========================================================
BUTTON
=========================================================*/

.promise-text .button{

    margin-top:35px;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.promise-text{

    text-align:center;

}

.promise-text h2{

    font-size:46px;

}

.promise-list div{

    text-align:left;

}

.promise-text blockquote{

    font-size:24px;

    padding:24px;

}

.promise-text .button{

    margin-top:30px;

}

}
/*=========================================================
JOIN OUR MISSION
=========================================================*/

.donate-section{

    position:relative;

    padding:170px 8%;

    background:url("images/hero3.png") center center/cover no-repeat;

    overflow:hidden;

}

.donate-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(255,248,241,.82),
        rgba(255,248,241,.70)
    );

    backdrop-filter:blur(2px);

}

.donate-content{

    position:relative;

    z-index:2;

    max-width:820px;

    margin:auto;

    text-align:center;

}

/*=========================================================
TAG
=========================================================*/

.donate-content .section-tag{

    background:#FFF4E7;

    color:var(--gold);

}

/*=========================================================
TITLE
=========================================================*/

.donate-content h2{

    font-family:'Cormorant Garamond',serif;

    font-size:68px;

    line-height:1.1;

    color:#243240;

    margin:30px 0;

}

.donate-content h2 span{

    color:var(--gold);

}

/*=========================================================
TEXT
=========================================================*/

.donate-content p{

    max-width:700px;

    margin:0 auto 28px;

    color:#555;

    font-size:18px;

    line-height:2;

}

/*=========================================================
BUTTONS
=========================================================*/

.donate-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

    margin:45px 0;

}

.donate-buttons .button{

    min-width:220px;

    border-radius:50px;

    padding:18px 38px;

}

.donate-buttons .button:first-child{

    background:linear-gradient(
        135deg,
        var(--gold),
        #E6C56A
    );

    color:white;

}

.donate-buttons .button:first-child:hover{

    transform:translateY(-4px);

}

.donate-buttons .secondary{

    background:white;

    color:#243240;

    border:1px solid rgba(0,0,0,.08);

}

.donate-buttons .secondary:hover{

    background:#243240;

    color:white;

}

/*=========================================================
SCRIPTURE
=========================================================*/

.donate-scripture{

    display:inline-block;

    margin-top:20px;

    padding:15px 30px;

    border-radius:50px;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(12px);

    color:var(--gold);

    font-weight:600;

    letter-spacing:1px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

/*=========================================================
DECORATION
=========================================================*/

.donate-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#FFF4E5;

    border-radius:50%;

    top:-180px;

    left:-180px;

    opacity:.8;

}

.donate-section::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:#FDF4E8;

    border-radius:50%;

    bottom:-150px;

    right:-120px;

    opacity:.8;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.donate-section{

    padding:120px 8%;

}

.donate-content h2{

    font-size:46px;

}

.donate-content p{

    font-size:17px;

}

.donate-buttons{

    flex-direction:column;

    align-items:center;

}

}
/*=========================================================
PARTNERS SECTION
=========================================================*/

.partners-section{

    position:relative;

    padding:140px 8%;

    background:#fff;

    overflow:hidden;

}

/*=========================================================
DECORATION
=========================================================*/

.partners-decoration{

    position:absolute;

    inset:0;

    pointer-events:none;

}

.partners-decoration span{

    position:absolute;

    border-radius:50%;

    opacity:.18;

    filter:blur(3px);

}

.partners-decoration span:nth-child(1){

    width:220px;
    height:220px;

    background:#DDEEDF;

    top:-80px;
    left:-80px;

}

.partners-decoration span:nth-child(2){

    width:140px;
    height:140px;

    background:#FFF2CF;

    right:6%;
    top:16%;

}

.partners-decoration span:nth-child(3){

    width:170px;
    height:170px;

    background:#E9F7FF;

    bottom:8%;
    left:10%;

}

.partners-decoration span:nth-child(4){

    width:110px;
    height:110px;

    background:#E8F4EB;

    bottom:10%;
    right:10%;

}

/*=========================================================
JOIN THE JOURNEY IMAGE
=========================================================*/

/*=========================================================
JOIN THE JOURNEY IMAGE
=========================================================*/

.cta-banner{

    width:75%;
    max-width:950px;

    margin:60px auto 90px;

    border-radius:35px;

    overflow:hidden;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.cta-banner img{

    width:100%;
    height:auto;

    display:block;

    object-fit:cover;

}

/*=========================================================
PARTNER GRID
=========================================================*/

.partners-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

/*=========================================================
CARDS
=========================================================*/

.partner-card{

    background:#fff;

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

}

/* Top line */

.partner-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

}

/*=========================================================
CARD COLOURS
=========================================================*/

.partner-card:nth-child(1)::before{

    background:#47A9F8;

}

.partner-card:nth-child(2)::before{

    background:#8CBF98;

}

.partner-card:nth-child(3)::before{

    background:#D7B443;

}

.partner-card:nth-child(4)::before{

    background:#B995E8;

}

.partner-card:nth-child(5)::before{

    background:#64C7BE;

}

.partner-card:nth-child(6)::before{

    background:#EF8D87;

}

/*=========================================================
ICONS
=========================================================*/

.partner-card .icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    transition:.4s;

}

.partner-card:nth-child(1) .icon{

    background:#EAF6FF;

}

.partner-card:nth-child(2) .icon{

    background:#EEF7F0;

}

.partner-card:nth-child(3) .icon{

    background:#FFF7DF;

}

.partner-card:nth-child(4) .icon{

    background:#F6F0FF;

}

.partner-card:nth-child(5) .icon{

    background:#EAF9F7;

}

.partner-card:nth-child(6) .icon{

    background:#FFF1F1;

}

.partner-card i{

    color:#42A5F5;

}

/*=========================================================
TEXT
=========================================================*/

.partner-card h3{

    font-size:24px;

    margin-bottom:18px;

    color:var(--blue);

}

.partner-card p{

    line-height:1.9;

    color:#666;

}

/*=========================================================
HOVER
=========================================================*/

.partner-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);

}

.partner-card:hover .icon{

    transform:rotate(8deg) scale(1.08);

}

/*=========================================================
WHY PARTNER
=========================================================*/

.partner-benefits{

    margin-top:100px;

    text-align:center;

}

.partner-benefits h3{

    font-size:34px;

    color:var(--blue);

    margin-bottom:45px;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    max-width:900px;

    margin:auto;

}

.benefits-grid div{

    background:white;

    border-radius:18px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);

}

.benefits-grid i{

    color:#D4AF37;

    font-size:22px;

}

/*=========================================================
QUOTE
=========================================================*/

.partner-quote{

    margin-top:90px;

    text-align:center;

}

.partner-quote i{

    font-size:42px;

    color:#D4AF37;

    margin-bottom:20px;

}

.partner-quote p{

    font-size:28px;

    font-family:'Cormorant Garamond',serif;

    color:var(--blue);

    max-width:800px;

    margin:auto;

    line-height:1.6;

}

/*=========================================================
BUTTONS
=========================================================*/

.journey-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:50px;

    flex-wrap:wrap;

}

.button.secondary{

    background:white;

    color:var(--blue);

    border:2px solid var(--blue);

}

.button.secondary:hover{

    background:var(--blue);

    color:white;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

.partners-grid{

grid-template-columns:1fr 1fr;

}

.benefits-grid{

grid-template-columns:1fr;

}

.cta-banner img{

height:320px;

}

}

@media(max-width:768px){

.partners-grid{

grid-template-columns:1fr;

}

.cta-banner{

width:100%;
    height:260px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

    background:#fff;

    border-radius:25px

}

.cta-banner img{

max-width:100%;
    max-height:100%;

    width:auto;
    height:auto;

    object-fit:contain;
}

.partner-quote p{

font-size:22px;

}

}
/*=========================================================
LEFT SIDE
=========================================================*/

.contact-info{

    background:#fff;

    padding:50px;

    border-radius:32px;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}

.contact-info h3{

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:var(--blue);

    margin-bottom:18px;

}

.contact-info > p{

    color:var(--grey);

    line-height:1.9;

    margin-bottom:35px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.contact-item:last-child{

    margin-bottom:0;

}

.contact-item i{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--blue),
        #3A8DFF
    );

    color:#fff;

    font-size:22px;

}

.contact-item h4{

    color:var(--blue);

    font-size:20px;

    margin-bottom:6px;

}

.contact-item p{

    color:var(--grey);

    line-height:1.8;

}

/*=========================================================
RIGHT SIDE - FORM
=========================================================*/

.contact-form{

    background:#fff;

    padding:50px;

    border-radius:32px;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid #E6E6E6;

    border-radius:16px;

    background:#FCFCFC;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:var(--text);

    transition:all .35s ease;

}

.contact-form input::placeholder,

.contact-form textarea::placeholder{

    color:#999;

}

.contact-form input:focus,

.contact-form textarea:focus{

    outline:none;

    background:#fff;

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(212,175,55,.12);

}

.contact-form textarea{

    resize:none;

    min-height:180px;

}

.contact-form .button{

    width:220px;

    margin-top:8px;

}

/*=========================================================
GOOGLE MAP
=========================================================*/

.map-container{

    margin-top:40px;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.map-container iframe{

    width:100%;

    height:320px;

    border:0;

    display:block;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media (max-width:991px){

    .contact-container{

        grid-template-columns:1fr;

        gap:40px;

    }

    .contact-info,

    .contact-form{

        padding:35px;

    }

    .contact-info h3{

        font-size:34px;

    }

    .contact-form .button{

        width:100%;

    }

    .map-container iframe{

        height:280px;

    }

}
/*=========================================================
CONTACT SECTION
=========================================================*/

.contact-section{

    background:linear-gradient(
        180deg,
        #FCFAF8 0%,
        #FFFFFF 100%
    );

    position:relative;

    overflow:hidden;

}

.contact-section::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(212,175,55,.06);

    top:-180px;

    right:-180px;

}

.contact-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

/*=========================================================
LEFT SIDE
=========================================================*/

.contact-info{

    background:#FFFFFF;

    padding:50px;

    border-radius:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-info h3{

    font-family:'Cormorant Garamond',serif;

    font-size:44px;

    color:var(--blue);

    margin-bottom:20px;

}

.contact-info > p{

    color:var(--grey);

    line-height:1.9;

    margin-bottom:40px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:28px;

}

.contact-item:last-child{

    margin-bottom:0;

}

.contact-item i{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--gold),
        #F5D57B
    );

    color:#FFFFFF;

    font-size:22px;

}

.contact-item h4{

    color:var(--blue);

    font-size:20px;

    margin-bottom:6px;

}

.contact-item p{

    color:var(--grey);

    line-height:1.8;

}

/*=========================================================
RIGHT SIDE
=========================================================*/

.contact-form{

    background:#FFFFFF;

    padding:50px;

    border-radius:35px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:18px 22px;

    border:1px solid #E7E7E7;

    border-radius:18px;

    background:#FCFCFC;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:var(--text);

    transition:all .35s ease;

}

.contact-form input::placeholder,

.contact-form textarea::placeholder{

    color:#999999;

}

.contact-form input:focus,

.contact-form textarea:focus{

    outline:none;

    background:#FFFFFF;

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

.contact-form textarea{

    resize:none;

    min-height:180px;

}

.contact-form .button{

    width:220px;

    margin-top:10px;

}

/*=========================================================
GOOGLE MAP
=========================================================*/

.map-container{

    margin-top:40px;

    overflow:hidden;

    border-radius:25px;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.map-container iframe{

    display:block;

    width:100%;

    height:320px;

    border:0;

}

/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .contact-container{

        grid-template-columns:1fr;

        gap:40px;

    }

    .contact-info,

    .contact-form{

        padding:35px;

    }

    .contact-info h3{

        font-size:36px;

    }

    .contact-form .button{

        width:100%;

    }

    .map-container iframe{

        height:280px;

    }

}

/*=========================================================
PREMIUM FOOTER
=========================================================*/

.footer{

    background:linear-gradient(
        180deg,
        #18344F,
        #0E2438
    );

    color:#FFFFFF;

    padding:100px 8% 30px;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    top:-200px;

    right:-200px;

}

.footer-container{

    position:relative;

    z-index:2;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

}

.footer-logo img{

    width:90px;

    margin-bottom:20px;

}

.footer-logo h3{

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    margin-bottom:18px;

}

.footer-logo p{

    color:rgba(255,255,255,.78);

    line-height:1.9;

    margin-bottom:30px;

}

.footer h4{

    color:#F5D57B;

    font-size:22px;

    margin-bottom:25px;

}

.footer-links ul{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-links a{

    color:rgba(255,255,255,.82);

    transition:.35s;

}

.footer-links a:hover{

    color:#F5D57B;

    padding-left:8px;

}

.footer-contact .item{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

}

.footer-contact .item:last-child{

    margin-bottom:0;

}

.footer-contact i{

    color:#F5D57B;

    font-size:18px;

    margin-top:4px;

}

.footer-contact p{

    color:rgba(255,255,255,.82);

    line-height:1.7;

}

/*=========================================================
FOOTER RESPONSIVE
=========================================================*/

@media(max-width:991px){

    .footer-container{

        grid-template-columns:1fr;

        gap:45px;

        text-align:center;

    }

    .footer-contact .item{

        justify-content:center;

    }

    .footer-links ul{

        align-items:center;

    }

}

/*=========================================================
NEWSLETTER
=========================================================*/

.footer-newsletter p{

    color:rgba(255,255,255,.78);

    line-height:1.8;

    margin-bottom:20px;

}

.newsletter{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.newsletter input{

    width:100%;

    padding:16px 20px;

    border:none;

    border-radius:50px;

    background:#ffffff;

    color:#333;

    font-size:15px;

    font-family:'Poppins',sans-serif;

    outline:none;

    transition:.35s;

}

.newsletter input:focus{

    box-shadow:0 0 0 4px rgba(212,175,55,.18);

}

.newsletter button{

    width:100%;

    transition:.35s;

}

/*=========================================================
SOCIAL MEDIA
=========================================================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:white;

    font-size:18px;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--gold);

    color:var(--blue);

    transform:translateY(-6px);

}

/*=========================================================
FOOTER BOTTOM
=========================================================*/

.footer-bottom{

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.12);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:rgba(255,255,255,.65);

    font-size:15px;

    margin:0;

}

.footer-bottom span{

    color:#F5D57B;

    font-weight:600;

}

/*=========================================================
RESPONSIVE FOOTER
=========================================================*/

@media(max-width:991px){

.footer-container{

    grid-template-columns:1fr;

    gap:50px;

}

.footer{

    text-align:center;

}

.footer-social{

    justify-content:center;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

}

/*=========================================================
PREMIUM ANIMATIONS
=========================================================*/

/* Smooth Scrolling */

html{

    scroll-behavior:smooth;

}

/* Fade Up */

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:all .9s ease;

}

.fade-up.show{

    opacity:1;

    transform:translateY(0);

}

/* Fade Left */

.fade-left{

    opacity:0;

    transform:translateX(-60px);

    transition:all .9s ease;

}

.fade-left.show{

    opacity:1;

    transform:translateX(0);

}

/* Fade Right */

.fade-right{

    opacity:0;

    transform:translateX(60px);

    transition:all .9s ease;

}

.fade-right.show{

    opacity:1;

    transform:translateX(0);

}

/* Zoom */

.zoom{

    opacity:0;

    transform:scale(.9);

    transition:all .8s ease;

}

.zoom.show{

    opacity:1;

    transform:scale(1);

}

/*=========================================================
FLOATING ANIMATION
=========================================================*/

.float{

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{

    transform:translateY(0);

}

50%{

    transform:translateY(-15px);

}

100%{

    transform:translateY(0);

}

}
/*=========================================================
PREMIUM BUTTON EFFECTS
=========================================================*/

.button{

    position:relative;
    overflow:hidden;
    transition:all .35s ease;

}

.button:hover{

    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.button::before{

    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );

    transform:skewX(-25deg);
    transition:left .8s ease;

}

.button:hover::before{

    left:170%;

}

/*=========================================================
GLOBAL IMAGE EFFECTS
=========================================================*/

img{

    transition:transform .7s ease;

}

.story-image img,
.promise-image img,
.founder-image img,
.impact-item img,
.gallery-grid img{

    display:block;

}

.story-image:hover img,
.promise-image:hover img,
.founder-image:hover img,
.impact-item:hover img,
.gallery-grid img:hover{

    transform:scale(1.05);

}

/*=========================================================
PREMIUM CARD HOVER
=========================================================*/

.partner-card,
.value-card,
.value-box,
.stat-card,
.contact-info,
.contact-form,
.promise-card,
.impact-item{

    transition:all .35s ease;

}

.partner-card:hover,
.value-card:hover,
.value-box:hover,
.stat-card:hover,
.contact-info:hover,
.contact-form:hover,
.promise-card:hover,
.impact-item:hover{

    transform:translateY(-8px);

    box-shadow:0 28px 55px rgba(0,0,0,.12);

}

/*=========================================================
SECTION DIVIDER
=========================================================*/

section{

    position:relative;

}

section::after{

    content:"";

    display:block;

    width:80px;
    height:4px;

    margin:90px auto 0;

    border-radius:30px;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.35),
        transparent
    );

}

section:last-of-type::after{

    display:none;

}

/*=========================================================
PAGE LOADER
=========================================================*/

#loader{

    position:fixed;

    inset:0;

    background:linear-gradient(
        135deg,
        #FFFDF9,
        #FFF5E8,
        #F8FBFF
    );

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:opacity .8s ease,
               visibility .8s ease;

}

#loader img{

    width:120px;

    animation:logoFloat 2.5s ease-in-out infinite;

}

#loader h1{

    margin-top:25px;

    font-family:'Cormorant Garamond',serif;

    font-size:42px;

    color:var(--blue);

}

#loader p{

    color:var(--grey);

    margin-top:8px;

}

.loader-bar{

    width:250px;

    height:5px;

    margin-top:30px;

    border-radius:30px;

    background:#EAEAEA;

    overflow:hidden;

}

.loader-bar span{

    display:block;

    width:0;

    height:100%;

    background:linear-gradient(
        90deg,
        var(--gold),
        var(--blue)
    );

    animation:loadingBar 2.2s linear forwards;

}

@keyframes logoFloat{

    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}

}

@keyframes loadingBar{

    from{width:0;}
    to{width:100%;}

}

/*=========================================================
SCROLL REVEAL
=========================================================*/

.section-title,
.story-image,
.story-content,
.founder-image,
.founder-text,
.impact-item,
.promise-image,
.promise-text,
.partner-card,
.value-card,
.gallery-item,
.contact-info,
.contact-form{

    opacity:0;

    transform:translateY(50px);

    transition:all .9s ease;

}

.show{

    opacity:1;
    transform:translateY(0);

}

/*=========================================================
STAGGER ANIMATION
=========================================================*/

.impact-item:nth-child(2),
.partner-card:nth-child(2),
.value-card:nth-child(2),
.gallery-grid img:nth-child(2){

    transition-delay:.15s;

}

.impact-item:nth-child(3),
.partner-card:nth-child(3),
.value-card:nth-child(3),
.gallery-grid img:nth-child(3){

    transition-delay:.3s;

}

.impact-item:nth-child(4),
.partner-card:nth-child(4),
.value-card:nth-child(4),
.gallery-grid img:nth-child(4){

    transition-delay:.45s;

}

.partner-card:nth-child(5),
.gallery-grid img:nth-child(5){

    transition-delay:.6s;

}

.partner-card:nth-child(6),
.gallery-grid img:nth-child(6){

    transition-delay:.75s;

}

/*=========================================================
FLOATING IMAGES
=========================================================*/

.story-image,
.promise-image{

    animation:floatImage 7s ease-in-out infinite;

}

.founder-image{

    animation:floatImage 8s ease-in-out infinite;

}

@keyframes floatImage{

    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}

}
/*=========================================================
PREMIUM GALLERY BACKGROUND
=========================================================*/

.gallery-section{

    position:relative;

    overflow:hidden;

    padding:130px 8%;

    background:linear-gradient(
        180deg,
        #FFFFFF 0%,
        #F9FCFA 45%,
        #F3F8F5 100%
    );

}

/* Large soft sage blob */

.gallery-section::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(171,197,176,.16);

    top:-140px;
    left:-150px;

    filter:blur(20px);

}

/* Bottom decorative blob */

.gallery-section::after{

    content:"";

    position:absolute;

    width:330px;
    height:330px;

    border-radius:50%;

    background:rgba(171,197,176,.12);

    bottom:-120px;
    right:-120px;

    filter:blur(15px);

}
/*=========================================================
SAGE DECORATIONS
=========================================================*/

.gallery-decoration{

    position:absolute;

    inset:0;

    pointer-events:none;

    overflow:hidden;

}

.gallery-decoration span{

    position:absolute;

    border-radius:50%;

    background:#ABC5B0;

    opacity:.18;

    animation:floatDots 12s ease-in-out infinite;

}

.gallery-decoration span:nth-child(1){

    width:10px;
    height:10px;

    top:18%;
    left:10%;

}

.gallery-decoration span:nth-child(2){

    width:14px;
    height:14px;

    top:35%;
    right:15%;

}

.gallery-decoration span:nth-child(3){

    width:8px;
    height:8px;

    bottom:22%;
    left:18%;

}

.gallery-decoration span:nth-child(4){

    width:18px;
    height:18px;

    bottom:15%;
    right:25%;

}

.gallery-decoration span:nth-child(5){

    width:12px;
    height:12px;

    top:58%;
    left:50%;

}

.gallery-decoration span:nth-child(6){

    width:7px;
    height:7px;

    top:12%;
    right:35%;

}

@keyframes floatDots{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}
/*=========================================================
GALLERY GRID
=========================================================*/

.gallery-grid{

    margin-top:70px;

    column-count:3;

    column-gap:25px;

}

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:26px;

    margin-bottom:25px;

    break-inside:avoid;

    background:#fff;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    display:block;

    transition:.7s ease;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:nth-child(2){

    margin-top:80px;

}

.gallery-item:nth-child(5){

    margin-top:80px;

}

/* Mobile */

@media(max-width:991px){

.gallery-grid{

column-count:2;

}

}

@media(max-width:768px){

.gallery-grid{

column-count:1;

}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5){

margin-top:0;

}

}
/*=========================================================
PARTNER ICON BOX
=========================================================*/

.partner-card .icon{

    width:100px;
    height:100px;

    margin:0 auto 35px;

    border-radius:28px;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:42px;

    transition:.45s ease;

}

/* Sky blue icons */

.partner-card .icon i{

    color:#3FA9F5;
}

/* Different colours for each card */

.partner-card:nth-child(1) .icon{

    background:#EAF6FF;      /* Light Sky Blue */

}

.partner-card:nth-child(2) .icon{

    background:#EEF8F0;      /* Light Sage */

}

.partner-card:nth-child(3) .icon{

    background:#FFF5DD;      /* Light Gold */

}

.partner-card:nth-child(4) .icon{

    background:#F4EEFF;      /* Lavender */

}

.partner-card:nth-child(5) .icon{

    background:#E8F7F6;      /* Mint */

}

.partner-card:nth-child(6) .icon{

    background:#FFEDED;      /* Soft Rose */

}

/* Hover */

.partner-card:hover .icon{

    transform:translateY(-8px) rotate(8deg);

    box-shadow:0 18px 35px rgba(63,169,245,.20);

}
.partner-card{

    position:relative;

    overflow:hidden;

}

.partner-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

}

/* Different colours */

.partner-card:nth-child(1)::before{

    background:#3FA9F5;

}

.partner-card:nth-child(2)::before{

    background:#8FBF9F;

}

.partner-card:nth-child(3)::before{

    background:#D4AF37;

}

.partner-card:nth-child(4)::before{

    background:#B494E8;

}

.partner-card:nth-child(5)::before{

    background:#55C7B6;

}

.partner-card:nth-child(6)::before{

    background:#F28B82;

}
/*=========================================================
VALUES SECTION
=========================================================*/

.values-section{

    padding:120px 8%;
    background:#FAFBFD;

}


/*=========================================================
VALUES GRID
=========================================================*/

.values-grid{

    max-width:1300px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(6, 1fr);

    gap:35px;

}


/*=========================================================
VALUE CARDS
=========================================================*/

.value-card{

    background:#fff;

    padding:45px 35px;

    border-radius:28px;

    text-align:center;

    border-top:8px solid #ddd;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

}


/*=========================================================
FIRST ROW — 3 CARDS
=========================================================*/

.mission{

    grid-column:span 2;

}

.vision{

    grid-column:span 2;

}

.partnership{

    grid-column:span 2;

}


/*=========================================================
SECOND ROW — 2 CENTRED CARDS
=========================================================*/

.education{

    grid-column:2 / span 2;

}

.growth{

    grid-column:4 / span 2;

}


/*=========================================================
ICONS
=========================================================*/

.value-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

}


/*=========================================================
CARD TEXT
=========================================================*/

.value-card h3{

    margin-bottom:18px;

}


.value-card p{

    line-height:1.9;

}


/*=========================================================
CARD COLOURS
=========================================================*/


/* MISSION */

.mission{

    border-top-color:#EF3340;

}

.mission .value-icon{

    background:#EF3340;

}


/* VISION */

.vision{

    border-top-color:#D4AF37;

}

.vision .value-icon{

    background:#D4AF37;

}


/* PARTNERSHIP */

.partnership{

    border-top-color:#0A84FF;

}

.partnership .value-icon{

    background:#0A84FF;

}


/* EDUCATION */

.education{

    border-top-color:#F4A261;

}

.education .value-icon{

    background:#F4A261;

}


/* GROWTH */

.growth{

    border-top-color:#2ECC71;

}

.growth .value-icon{

    background:#2ECC71;

}


/*=========================================================
TABLET
=========================================================*/

@media(max-width:991px){

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .mission,
    .vision,
    .partnership,
    .education,
    .growth{

        grid-column:auto;

    }

}


/*=========================================================
MOBILE
=========================================================*/

@media(max-width:700px){

    .values-section{

        padding:80px 6%;

    }

    .values-grid{

        grid-template-columns:1fr;

        gap:25px;

        margin-top:50px;

    }

    .mission,
    .vision,
    .partnership,
    .education,
    .growth{

        grid-column:auto;

    }

}
/*=========================================================
LINKS
=========================================================*/

a{

    transition:color .3s ease;

    text-decoration:none;

}

/*=========================================================
FORM FOCUS
=========================================================*/

.contact-form input,
.contact-form textarea{

    transition:all .35s ease;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 18px rgba(212,175,55,.18);

}

/*=========================================================
SOCIAL ICONS
=========================================================*/

.footer-social a{

    transition:all .35s ease;

}

.footer-social a:hover{

    transform:translateY(-6px) rotate(8deg);

}
/*=========================================================
BUTTON RIPPLE EFFECT
=========================================================*/

.button{

    position:relative;
    overflow:hidden;

}

/* Ripple Element (created with JavaScript) */

.ripple{

    position:absolute;

    width:20px;
    height:20px;

    border-radius:50%;

    background:rgba(255,255,255,.45);

    transform:translate(-50%,-50%) scale(0);

    pointer-events:none;

    animation:ripple .7s ease-out forwards;

}

@keyframes ripple{

    from{

        transform:translate(-50%,-50%) scale(0);

        opacity:.7;

    }

    to{

        transform:translate(-50%,-50%) scale(18);

        opacity:0;

    }

}
/* ======================================================
   DECORATIVE BUTTERFLIES
====================================================== */

.butterflies {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.butterfly {
    position: absolute;
    width: 55px;
    height: auto;
    opacity: 0.75;
}

/* Butterfly positions */

.b1 {
    top: 18%;
    left: 7%;
}

.b2 {
    top: 38%;
    right: 8%;
}

.b3 {
    top: 58%;
    left: 5%;
}

.b4 {
    top: 76%;
    right: 6%;
}

.b5 {
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
}
/*=========================================================
PAGE LOADER
=========================================================*/

#loader.hide{

    opacity:0;

    visibility:hidden;

    pointer-events:none;

}

