/*=========================================
ROLAK FOUNDATION
Premium NGO Website
Version 1.0
=========================================*/

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

/*=========================
ROOT COLORS
==========================*/

:root{

--primary:#087F8C;        /* Teal from logo */
--secondary:#F6C54F;      /* Gold */
--accent:#F6C54F;         /* Orange */
--purple:#7B2CBF;         /* Purple */
--dark:#245D6E;
--light:#FCFBF8;
--white:#ffffff;
--text:#245D6E;

--shadow:0 20px 60px rgba(31,110,140,.10);

--radius:22px;


}


/*=========================
RESET
==========================*/

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Open Sans',sans-serif;
background:#fff;
color:var(--text);
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1320px;
margin:auto;

}


/*=========================
TOP BAR
==========================*/

.topbar{

background:var(--primary);
color:#fff;
padding:10px 0;
font-size:14px;

}

.topbar .container{

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

}

.topbar .left{

display:flex;
gap:30px;

}

.topbar .left span{

display:flex;
align-items:center;
gap:8px;

}

.topbar .right{

display:flex;
gap:15px;

}

.topbar .right a{

width:35px;
height:35px;
border-radius:50%;
background:rgba(255,255,255,.12);

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

color:#fff;

transition:.4s;

}

.topbar .right a:hover{

background:var(--secondary);

}


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

header{

position:fixed;

top:50px;

left:0;

width:100%;

z-index:999;

transition:.4s;

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

height:95px;

padding:0 35px;

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

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

border-radius:18px;

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

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.4s ease;

}
/*=========================
LOGO
==========================*/

.logo{

display:flex;

align-items:center;

background:#fff;

padding:10px 18px;

border-radius:15px;

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

transition:.4s;

}

.logo img{

width:50px;

height:auto;

display:block;

transition:.4s ease;

}

header.sticky .logo img{

width:165px;




}

nav ul{

display:flex;

gap:40px;

}

nav ul li a{

font-family:'Poppins';

font-weight:600;

font-size:16px;

color:#245D6E;

position:relative;

transition:.35s ease;



}

nav ul li a:after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--secondary);

transition:.4s;

}

nav ul li a:hover:after{

width:100%;

}

nav ul li a:hover{

color:var(--secondary);

}

nav ul li a.active{

    color: var(--secondary);

    font-weight:700;

}

nav ul li a.active::after{

    width:100%;

}
/*=========================
BUTTON
==========================*/
/*=========================
BUTTON
==========================*/

/*=========================
DONATE BUTTON
==========================*/

.donate-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:15px 35px;

background:transparent;

color:var(--secondary);

border:2px solid var(--secondary);

border-radius:50px;

font-family:'Poppins',sans-serif;

font-weight:600;

font-size:16px;

transition:.35s ease;

}

.donate-btn i{

width:34px;

height:34px;

display:flex;

align-items:center;

justify-content:center;

border:2px solid var(--secondary);

border-radius:50%;

font-size:15px;

color:var(--secondary);

transition:.35s ease;

}

.donate-btn:hover{

background:var(--secondary);

color:#fff;

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(244,194,26,.35);

}

.donate-btn:hover i{

color:#fff;

border-color:#fff;

}



/*=========================
VOLUNTEER BUTTON
==========================*/

.volunteer-btn{

display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;

padding:14px 28px;

background:transparent;

color:var(--secondary);

border:2px solid var(--secondary);

border-radius:50px;

font-family:'Poppins',sans-serif;
font-weight:600;
font-size:16px;

transition:.35s;

}

.volunteer-btn i{

font-size:18px;

color:var(--secondary);

transition:.35s;

}

.volunteer-btn:hover{

background:var(--secondary);

color:#fff;

transform:translateY(-3px);

}

.volunteer-btn:hover i{

color:#fff;

}


/*=========================
HERO
=========================*/
.hero{

position:relative;

padding:180px 0 140px;

min-height:600px;

display:flex;

align-items:center;

overflow:hidden;

/* Background image */

background-image:
linear-gradient(
90deg,
rgba(255,255,255,.75) 0%,
rgba(255,255,255,.60) 30%,
rgba(255,255,255,.30) 55%,
rgba(255,255,255,.08) 75%,
rgba(255,255,255,0) 100%
),
url("../images/hero.png");

background-size:cover;

background-position:center center;

background-repeat:no-repeat;



}

.hero-wrapper{

display:flex;

align-items:center;

min-height:600px;


}

.hero-left{

width:52%;

max-width:650px;

z-index:5;



}




.small-title{

display:inline-block;

background:#E8F5FB;

color:#0B5E8A;

padding:12px 22px;

border-radius:40px;

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:25px;

}

.hero h1{

font-family:'Poppins',sans-serif;

font-size:72px;

font-weight:800;

line-height:1.05;

color:#245D6E;

margin-bottom:15px;

}

.hero h1 span{

display:block;

font-family:'Great Vibes',cursive;

font-size:96px;

font-weight:400;

color:#F4C21A;

line-height:.95;

margin-top:10px;




}

.hero p{

font-size:18px;

line-height:34px;

margin-bottom:40px;

max-width:550px;

}

.hero-buttons{

display:flex;

gap:20px;

}
.header-section::after{

    content:"";

    display:block;

    width:120px;

    height:5px;

    margin:0 auto;

    background:linear-gradient(
        90deg,
        #1F6E8C,
        #F4C21A
    );

    border-radius:50px;

}

.about{

    margin-top:50px;

}
.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff;
}
/*=================================
ABOUT HERO
==================================*/

.about-hero{

    position:relative;

    min-height:80vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url("../images/about-hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.about-overlay{

    position:absolute;

    inset:0;

}

.about-hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    padding-top:270px;

}

.about-hero-content h1{

    font-family:'Poppins';

    font-size:40px;

    font-weight:600;

    line-height:1.10;

    color:#fff;

    margin:10px 0;

}

.about-hero-content h1 span{

    display:block;

    font-family:'Great Vibes',cursive;

    font-size:80px;

    color:var(--secondary);

    margin-top:10px;

}

.about-hero .hero-small{

    color:#fff;

}

.about-hero .hero-description{

    color:#fff;

    max-width:720px;

    margin:0 auto 40px;

    line-height:34px;

}

.about-hero .hero-buttons{

    justify-content:center;

}

/*=========================
ABOUT HERO IMAGE
==========================*/

.about-hero-image{

    height:520px;

    background:url("../images/about-hero.jpg") center center/cover no-repeat;

}

/*=========================
ABOUT INTRO CARD
==========================*/

.about-card{

    position:relative;

    width:90%;

    max-width:700px;

    margin:auto;

    margin-top:-20px;

    padding:18px 35px;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

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

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

    z-index:7;

}
.about-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(255,255,255,.82),
            rgba(255,255,255,.82)
        ),
        url("../images/kids.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    opacity:.9;

    z-index:0;

}

/* Keep card contents above background */

.about-card>*{

    position:relative;

    z-index:2;

}


/* Card paragraph */

.about-card p{

    font-family:'Poppins', sans-serif;

    font-size:18px;

    font-weight:400;

    line-height:1.8;

    color:#245D6E;

    max-width:760px;

    margin:0 auto 30px;

    letter-spacing:.2px;

}


/* Buttons container */

.about-card .hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    margin-top:10px;

    flex-wrap:wrap;

}


/* Both buttons */

.about-card .hero-buttons a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:120px;

    padding:10px 15px;

    border-radius:40px;

    text-decoration:none;

    font-family:'Poppins', sans-serif;

    font-size:15px;

    font-weight:600;

    transition:.3s ease;

}


/* Get Involved */

.about-card .hero-buttons .primary{

    background:#f3f3f1;

    color:#F6C54F;

    border:2px solid #F6C54F;

}


/* Get Involved hover */

.about-card .hero-buttons .primary:hover{

    background:#F6C54F;

    border-color:#F6C54F;

    color:#f8f8f7;

    transform:translateY(-3px);

}


/* Back Home */

.about-card .hero-buttons .secondary{

    background:#fff;

    color:#F6C54F;

    border:2px solid #F6C54F;

}


/* Back Home hover */

.about-card .hero-buttons .secondary:hover{

    background:#F6C54F;

    color:#fff;

    transform:translateY(-3px);



}

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

.mission{

    margin-top:-70px;

    position:relative;

    z-index:50;

    padding:110px 0;

    background:#F8FBFD;

}

/*====================================================
ABOUT FOUNDATION
====================================================*/

.mission-about{

    display:grid;

    grid-template-columns:45% 55%;

    gap:60px;

    align-items:center;

    margin-bottom:80px;

}

.mission-image img{

    width:100%;

    height:430px;

    object-fit:cover;

    border-radius:28px;

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

}

.mission-text span{

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-weight:700;

    font-size:14px;

    letter-spacing:2px;

}

.mission-text h2{

    margin:18px 0 22px;

    font-family:'Poppins',sans-serif;

    font-size:46px;

    line-height:1.25;

    color:#1F2D3D;

}

.mission-text h2 span{

    color:#1F6E8C;

    font-size:inherit;

    letter-spacing:0;

}

.mission-text p{

    color:#5F6B73;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:32px;

    margin-bottom:35px;

}

.mission-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 35px;

    border:2px solid #F4C21A;

    border-radius:50px;

    background:#ffffff;

    color:#1F6E8C;

    text-decoration:none;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    transition:.35s;

}

.mission-btn:hover{

    background:#F4C21A;

    color:#1F2D3D;

}

/*====================================================
HEADING
====================================================*/

.mission-heading{

    text-align:center;

    max-width:820px;

    margin:0 auto 55px;

}

.mission-heading span{

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.mission-heading h2{

    margin:18px 0;

    font-size:42px;

    font-family:'Poppins',sans-serif;

    color:#1F2D3D;

}

.mission-heading h2 span{

    color:#1F6E8C;

    font-size:inherit;

    letter-spacing:0;

}

.mission-title-line{

    width:80px;

    height:4px;

    background:#F4C21A;

    margin:20px auto;

    border-radius:50px;

}

.mission-heading p{

    color:#5F6B73;

    line-height:30px;

    font-size:17px;

    font-family:'Open Sans',sans-serif;

}/*=========================================
HERO → ABOUT SEPARATOR
=========================================*/

.about-video{

    position:relative;

    height:720px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    margin-top:45px;

}


/* BRAND SEPARATOR */

.about-video::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:150px;

    height:5px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #1F6E8C 0%,
        #F4C21A 50%,
        #1F6E8C 100%
    );

    z-index:50;

}
/*====================================================
ABOUT US VIDEO
====================================================*/

.about-video{
    

    position:relative;

    height:720px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.about-video-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.about-video-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(31,45,61,.65),
    rgba(31,45,61,.55));

}

.about-video .container{

    position:relative;

    z-index:5;

    display:flex;

    justify-content:center;

}
.about-video-card{

    width:100%;
    max-width:540px;

    background:#ffffff;

    padding:28px 35px;

    border-radius:22px;

    text-align:center;

    margin:auto;

    box-shadow:0 20px 55px rgba(0,0,0,.15);

    border:1px solid rgba(36,93,110,.08);

    transition:.35s ease;

}

.about-video-card h2{

    font-family:'Poppins',sans-serif;

    font-size:36px;

    line-height:1.2;

    margin-bottom:15px;

    color:#245D6E;

}

.about-video-card h2 span{

    display:block;

    color:#F6C54F;}

.about-video-card p{

    font-size:15px;

    line-height:28px;

    color:#245D6E;

    margin-bottom:20px;


}


/*=================================
LUXURY GOLD DIVIDER
==================================*/

.luxury-divider{

    position:relative;

    width:100%;

    max-width:500px;

    height:60px;


    margin:18px auto;


}

/* Left Line */

.luxury-divider::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    width:42%;

    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #F4C21A
    );

    transform:translateY(-50%);

}

/* Right Line */

.luxury-divider::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    width:42%;

    height:2px;

    background:linear-gradient(
        to left,
        transparent,
        #F4C21A
    );

    transform:translateY(-50%);

}

/* Diamond */

.luxury-divider .diamond{

    position:absolute;

    left:50%;

    top:50%;

    width:24px;

    height:24px;

    transform:translate(-50%,-50%) rotate(45deg);

    border:3px solid #F4C21A;

    background:#ffffff;

    box-shadow:
        0 0 0 6px #ffffff;

}

/* Inner Diamond */



/* Gold Dots */

.luxury-divider .diamond::after{

    content:"";

    position:absolute;

    top:50%;

    left:50%;

    width:80px;

    height:8px;

    transform:translate(-50%,-50%) rotate(-45deg);

    background:
        radial-gradient(circle,#F4C21A 4px,transparent 5px) left center no-repeat,
        radial-gradient(circle,#F4C21A 4px,transparent 5px) right center no-repeat;

    background-size:10px 10px;

    pointer-events:none;

}

.about-video-card p{

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:34px;

    color:#5F6B73;

    margin-bottom:35px;

}
.about-video-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:15px 34px;

    border-radius:45px;

    background:#fdfdfd;

    color:#F4C21A;

    text-decoration:none;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    transition:.35s;

}

.about-video-btn:hover{

    background:#F6C54F;

    color:#245D6E;

    transform:translateY(-5px);

}

.about-video-btn i{

    transition:.35s;

}

.about-video-btn:hover i{

    transform:translateX(6px);

}

@media(max-width:768px){

.about-video{

height:650px;

}

.about-video-card{

width:95%;

padding:35px 25px;

}

.about-video-card h2{

font-size:36px;

}

.about-video-card p{

font-size:16px;

line-height:30px;

}

}/* =========================================================
   ROLAK FOUNDATION — FOUR PILLARS
   BACKGROUND + HEADING ONLY
   CARDS ARE NOT TOUCHED
========================================================= */


/* =========================================================
   MAIN TEAL BACKGROUND
========================================================= */

.pillars-section {
    position: relative !important;
    width: 100% !important;

    background:
        linear-gradient(
            135deg,
            #005C65 0%,
            #007985 48%,
            #008C95 100%
        ) !important;

    padding: 110px 0 120px !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.pillars-section::before {
    content: "" !important;

    position: absolute !important;

    width: 420px !important;
    height: 420px !important;

    top: -210px !important;
    left: -210px !important;

    border: 1px solid rgba(244,194,26,0.18) !important;

    border-radius: 50% !important;

    background: transparent !important;

    pointer-events: none !important;
}


.pillars-section::after {
    content: "" !important;

    position: absolute !important;

    width: 500px !important;
    height: 500px !important;

    right: -250px !important;
    bottom: -250px !important;

    border: 1px solid rgba(255,255,255,0.12) !important;

    border-radius: 50% !important;

    background: transparent !important;

    pointer-events: none !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.pillars-section > .container,
.pillars-section .container {
    position: relative !important;

    z-index: 5 !important;

    width: 90% !important;
    max-width: 1280px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}

/* =========================================================
   FOUR PILLARS — TITLE BADGE
   PILL-STYLE DESIGN
   CARDS ARE NOT TOUCHED
========================================================= */

.pillars-section .section-heading > span {

    display: inline-block !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 auto 25px !important;

    padding: 10px 25px !important;

    box-sizing: border-box !important;

    background: #FFF6DA !important;

    color: #D39B00 !important;

    border: none !important;

    border-radius: 50px !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: 14px !important;

    font-weight: 600 !important;

    letter-spacing: 0.5px !important;

    line-height: 1.4 !important;

    text-align: center !important;

    text-transform: uppercase !important;

    white-space: nowrap !important;

    overflow: visible !important;

    box-shadow: none !important;
}


/* =========================================================
   PREVENT GLOBAL SPAN STYLES
   FROM TURNING BADGE INTO A CIRCLE
========================================================= */

.pillars-section .section-heading > span * {

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #D39B00 !important;

    border: none !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: inherit !important;
    font-weight: 600 !important;

    line-height: inherit !important;

    letter-spacing: inherit !important;

    text-align: center !important;
}


/* =========================================================
   MAIN FOUR PILLARS HEADING
========================================================= */

.pillars-section .section-heading h2 {

    display: block !important;

    width: 100% !important;

    margin: 0 auto 18px !important;

    padding: 0 !important;

    background: transparent !important;

    color: #FFFFFF !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: 46px !important;

    font-weight: 700 !important;

    line-height: 1.2 !important;

    letter-spacing: normal !important;

    text-align: center !important;

    text-transform: none !important;

    white-space: normal !important;
}


/* =========================================================
   YELLOW HEADING HIGHLIGHT
========================================================= */

.pillars-section .section-heading h2 span {

    display: inline !important;

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #F4C21A !important;

    border: none !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    font-family: inherit !important;

    font-size: inherit !important;

    font-weight: 700 !important;

    line-height: inherit !important;

    letter-spacing: normal !important;

    text-transform: none !important;
}


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

@media (max-width: 768px) {

    .pillars-section .section-heading > span {

        display: inline-block !important;

        width: auto !important;

        height: auto !important;

        min-width: 0 !important;
        min-height: 0 !important;

        max-width: 90% !important;
        max-height: none !important;

        margin: 0 auto 20px !important;

        padding: 9px 20px !important;

        font-size: 12px !important;

        letter-spacing: 0.5px !important;

        line-height: 1.4 !important;

        white-space: nowrap !important;
    }

    .pillars-section .section-heading h2 {

        font-size: 36px !important;

        line-height: 1.25 !important;
    }
}


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

@media (max-width: 480px) {

    .pillars-section .section-heading > span {

        padding: 8px 18px !important;

        font-size: 11px !important;

        margin-bottom: 18px !important;
    }

    .pillars-section .section-heading h2 {

        font-size: 31px !important;

        line-height: 1.25 !important;
    }
}
/* =========================================================
   DIVIDER
========================================================= */

.pillars-section .about-divider {
    position: relative !important;

    display: block !important;

    width: 75px !important;
    height: 4px !important;

    margin: 23px auto 26px !important;
    padding: 0 !important;

    background: #F4C21A !important;

    border: none !important;
    border-radius: 50px !important;
}


.pillars-section .about-divider::before,
.pillars-section .about-divider::after {
    content: "" !important;

    position: absolute !important;

    top: 50% !important;

    width: 7px !important;
    height: 7px !important;

    background: #F4C21A !important;

    border-radius: 50% !important;

    transform: translateY(-50%) !important;
}


.pillars-section .about-divider::before {
    left: -15px !important;
}


.pillars-section .about-divider::after {
    right: -15px !important;
}


/* =========================================================
   HEADING DESCRIPTION
========================================================= */

.pillars-section .section-heading p {
    display: block !important;

    width: 100% !important;
    max-width: 760px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    background: transparent !important;

    color: rgba(255,255,255,0.88) !important;

    font-family: 'Open Sans', sans-serif !important;

    font-size: 16px !important;
    font-weight: 400 !important;

    line-height: 1.85 !important;

    text-align: center !important;
}


/* =========================================================
   IMPORTANT:
   DO NOT STYLE .pillar-card HERE.
   YOUR ORIGINAL CARD CSS REMAINS UNCHANGED.
========================================================= */


/* =========================================================
   MOBILE — BACKGROUND + HEADING ONLY
========================================================= */

@media (max-width:768px) {

    .pillars-section {
        padding: 75px 0 85px !important;

        background:
            linear-gradient(
                145deg,
                #005C65 0%,
                #007985 50%,
                #008C95 100%
            ) !important;
    }


    .pillars-section::before {
        width: 250px !important;
        height: 250px !important;

        top: -125px !important;
        left: -125px !important;
    }


    .pillars-section::after {
        width: 300px !important;
        height: 300px !important;

        right: -150px !important;
        bottom: -150px !important;
    }


    .pillars-section .container {
        width: 92% !important;
    }


    .pillars-section .section-heading {
        max-width: 100% !important;

        margin-bottom: 50px !important;
    }


    .pillars-section .section-heading > span {
        width: 95px !important;
        min-width: 95px !important;
        max-width: 95px !important;

        height: 95px !important;
        min-height: 95px !important;
        max-height: 95px !important;

        margin: 0 auto 20px !important;

        padding: 12px !important;

        font-size: 10px !important;

        letter-spacing: 1.5px !important;
        line-height: 1.4 !important;
    }


    .pillars-section .section-heading h2 {
        font-size: 36px !important;

        line-height: 1.25 !important;

        color: #FFFFFF !important;
    }


    .pillars-section .section-heading p {
        font-size: 15px !important;

        line-height: 1.75 !important;

        color: rgba(255,255,255,0.88) !important;
    }
}


/* =========================================================
   SMALL MOBILE — HEADING ONLY
========================================================= */

@media (max-width:480px) {

    .pillars-section {
        padding: 65px 0 75px !important;
    }


    .pillars-section .section-heading > span {
        width: 85px !important;
        min-width: 85px !important;
        max-width: 85px !important;

        height: 85px !important;
        min-height: 85px !important;
        max-height: 85px !important;

        margin: 0 auto 18px !important;

        padding: 10px !important;

        font-size: 9px !important;

        letter-spacing: 1.2px !important;
    }


    .pillars-section .section-heading h2 {
        font-size: 31px !important;

        line-height: 1.25 !important;
    }


    .pillars-section .about-divider {
        width: 60px !important;
        height: 3px !important;
    }
}
/* =========================================================
   ROLAK FOUNDATION — FOUR PILLARS
   SLIDE-IN ANIMATION ONLY
   DOES NOT CHANGE CARD DESIGN
========================================================= */


/* =========================================================
   CARD DEFAULT STATE
   Cards remain visible before animation is activated
========================================================= */

.pillars-section .pillar-card {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.85s ease,
        transform 0.9s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   SLIDE-IN ACTIVATION
   JavaScript adds .cards-ready to the section
========================================================= */


/* ODD CARDS — COME FROM LEFT */

.pillars-section.cards-ready .pillar-card:nth-child(odd) {
    opacity: 0;
    transform: translateX(-140px);
}


/* EVEN CARDS — COME FROM RIGHT */

.pillars-section.cards-ready .pillar-card:nth-child(even) {
    opacity: 0;
    transform: translateX(140px);
}


/* =========================================================
   VISIBLE STATE
   JavaScript adds .is-visible to each card
========================================================= */

.pillars-section.cards-ready .pillar-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   STAGGER
   Each card enters slightly after the previous one
========================================================= */

.pillars-section.cards-ready .pillar-card:nth-child(1) {
    transition-delay: 0.05s;
}

.pillars-section.cards-ready .pillar-card:nth-child(2) {
    transition-delay: 0.18s;
}

.pillars-section.cards-ready .pillar-card:nth-child(3) {
    transition-delay: 0.31s;
}

.pillars-section.cards-ready .pillar-card:nth-child(4) {
    transition-delay: 0.44s;
}


/* =========================================================
   MOBILE
   Alternating cards still enter from outside
========================================================= */

@media (max-width: 768px) {

    .pillars-section.cards-ready .pillar-card:nth-child(odd) {
        opacity: 0;
        transform: translateX(-80px);
    }

    .pillars-section.cards-ready .pillar-card:nth-child(even) {
        opacity: 0;
        transform: translateX(80px);
    }

    .pillars-section.cards-ready .pillar-card.is-visible {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .pillars-section .pillar-card,
    .pillars-section.cards-ready .pillar-card,
    .pillars-section.cards-ready .pillar-card.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* =========================================================
   STORY • MISSION • VISION
========================================================= */

.smv-section {

    position:
        relative;

    padding:
        110px 0;

    background-image:
        url("../images/our-story.jpg");

    background-size:
        cover;

    background-position:
        center;

    background-repeat:
        no-repeat;

    overflow:
        hidden;
}


.smv-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(31,45,61,.68);
}


.smv-section .container {

    position:
        relative;

    z-index:
        2;
}


.smv-heading {

    text-align:
        center;

    max-width:
        750px;

    margin:
        0 auto 55px;
}


.smv-heading span {

    display:
        block;

    color:
        #F4C21A;

    font-family:
        'Poppins',sans-serif;

    font-size:
        14px;

    font-weight:
        700;

    letter-spacing:
        3px;

    margin-bottom:
        12px;
}


.smv-heading h2 {

    color:
        #fff;

    font-family:
        'Poppins',sans-serif;

    font-size:
        42px;

    font-weight:
        700;

    line-height:
        1.2;

    margin-bottom:
        15px;
}


.smv-heading h2 strong {

    color:
        #F4C21A;
}


.smv-heading p {

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

    font-family:
        'Open Sans',sans-serif;

    font-size:
        16px;
}


.smv-wrapper {

    display:
        grid;

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

    gap:
        25px;
}


.smv-card {

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

    padding:
        35px 30px;

    border-radius:
        20px;

    text-align:
        center;

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

    transition:
        .35s ease;
}


.smv-card:hover {

    transform:
        translateY(-8px);
}


.smv-card-icon {

    width:
        58px;

    height:
        58px;

    margin:
        0 auto 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        #E8F5FB;

    color:
        #1F6E8C;

    font-size:
        22px;
}


.smv-card h3 {

    font-family:
        'Poppins',sans-serif;

    font-size:
        24px;

    color:
        #1F6E8C;

    margin-bottom:
        15px;
}


.smv-card p {

    font-family:
        'Open Sans',sans-serif;

    font-size:
        15px;

    line-height:
        1.7;

    color:
        #5F6B73;
}


.smv-more {

    display:
        none;

    margin-top:
        5px;
}


.smv-more p {

    margin-top:
        10px;
}


.read-more-btn {

    border:
        none;

    background:
        none;

    color:
        #1F6E8C;

    font-family:
        'Poppins',sans-serif;

    font-size:
        13px;

    font-weight:
        700;

    cursor:
        pointer;

    margin-top:
        12px;
}


.read-more-btn i {

    margin-left:
        6px;

    transition:
        .3s ease;
}


.smv-card.expanded
.smv-more {

    display:
        block;
}


.smv-card.expanded
.read-more-btn i {

    transform:
        rotate(180deg);
}


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

@media (max-width:900px) {

    .smv-wrapper {

        grid-template-columns:
            1fr;
    }


    .smv-heading h2 {

        font-size:
            36px;
    }
}


@media (max-width:768px) {

    .smv-section {

        padding:
            75px 0;
    }


    .smv-heading {

        width:
            92%;

        margin:
            0 auto 45px;
    }


    .smv-heading h2 {

        font-size:
            32px;
    }


    .smv-heading p {

        font-size:
            15px;

        line-height:
            1.7;
    }


    .smv-card {

        padding:
            32px 25px;
    }
}


@media (max-width:480px) {

    .smv-section {

        padding:
            65px 0;
    }


    .smv-heading h2 {

        font-size:
            29px;
    }


    .smv-heading span {

        font-size:
            12px;

        letter-spacing:
            2px;
    }


    .smv-card {

        padding:
            30px 22px;

        border-radius:
            18px;
    }


    .smv-card h3 {

        font-size:
            21px;
    }


    .smv-card p {

        font-size:
            14px;
    }
}
/*====================================================
OUR IMPACT SHOWCASE FOR ABOUT US
====================================================*/

.impact-showcase{

    padding:80px 0 0;

    background:#FCFBF8;

    position:relative;

    overflow:visible;



}
/*=========================
IMPACT CONTAINER
==========================*/


.impact-container{

    width:90%;

    max-width:1280px;

    margin:0 auto;

    display:flex;

    align-items:stretch;

    position:relative;

    overflow:visible;

    padding:0;



}

/*=========================
LEFT PANEL
==========================*/

.impact-left{

    width:56%;

    background:#1F6E8C;

    padding:80px 70px;

    border-radius:35px;

    position:relative;

    z-index:3;


}.impact-content{

    position:relative;

    z-index:10;

    width:78%;

    margin:auto;

    text-align:center;

}

.impact-content h2{

    font-size:56px;

    line-height:1.2;

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-weight:700;

    margin-bottom:25px;

}

.impact-line{

    width:90px;

    height:4px;

    background:#F4C21A;

    border-radius:30px;

    margin:25px auto;

}

.impact-content p{

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

    font-size:18px;

    line-height:1.9;

    max-width:520px;

    margin:0 auto 40px;

    text-align:center;

}





/* everything above wave */

.impact-left>*{

    position:relative;

    z-index:5;

}

.impact-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#F4C21A;

    font-weight:700;

    letter-spacing:2px;

    font-size:15px;

    margin-bottom:25px;

    font-family:'Poppins',sans-serif;

}

.impact-tag i{

    color:#F4C21A;

}

.impact-left h2{

    font-size:62px;

    line-height:1.08;

    color:#fff;

    font-family:'Poppins',sans-serif;

    margin-bottom:15px;

}

.impact-left h2 span{

    display:block;

    color:#F4C21A;

    font-size:74px;

    font-family:'Great Vibes',cursive;

    font-weight:400;

    margin-top:10px;

}

.impact-line{

    width:90px;

    height:5px;

    background:#F4C21A;

    border-radius:20px;

    margin:25px 0;

}

.impact-left p{

    max-width:470px;

    line-height:1.9;

    font-size:19px;

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

}

/*=========================
IMPACT BUTTON
==========================*/

.impact-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:15px 20px;

    background:#ffffff;

    color:#1F6E8C;

    border:2px solid #F4C21A;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    transition:.35s ease;

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

}

.impact-btn i{

    transition:.35s ease;

}

.impact-btn:hover{

    background:#F4C21A;

    color:#1F6E8C;

    transform:translateY(-3px);

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

}

.impact-btn:hover i{

    transform:translateX(6px);

}

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

.impact-image{

    width:48%;

    margin-left:-70px;

    position:relative;

    z-index:2;

    overflow:hidden;

    border-radius:35px;

}

.impact-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    border-radius:

    140px 35px 35px 140px;

    transition:.6s;

}
.impact-image::before{

    content:"";

    position:absolute;

    inset:0;

    border:5px solid #F4C21A;

    border-radius:

    140px 35px 35px 140px;

    pointer-events:none;

    z-index:4;

}
.impact-container:hover img{

    transform:scale(1.08);

}

/*=========================
DOTS
==========================*/

.impact-dots{

    position:absolute;

    width:90px;

    height:90px;

    background-image:radial-gradient(#F4C21A 2px, transparent 2px);

    background-size:18px 18px;

    opacity:.9;

}

.dots-top{

    top:45px;

    left:25px;

}

.dots-bottom{

    bottom:35px;

    right:120px;

}

/*=========================
CARDS
==========================*/
/*====================================================
PREMIUM IMPACT CARDS
====================================================*/

.impact-cards{

    width:90%;
    max-width:1280px;
    margin:-140px auto 0;

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

    position:relative;
    z-index:50;

    
}
.impact-cards{
    width:90%;
    max-width:1280px;
    margin:-110px auto 0;

    position:relative;
    left:-20px;   /* Move the whole row left */
}
.impact-card{

    position:relative;
    overflow:visible;

    background:#fff;

    padding:75px 30px 35px;

    border-radius:28px;

    text-align:center;

    transition:.45s ease;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

    border-top:6px solid #F4C21A;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

}

.impact-card:hover{

    transform:translateY(-18px);

    box-shadow:
        0 35px 65px rgba(31,110,140,.18);

}

.impact-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:28px;

    border:1px solid rgba(31,110,140,.08);

    pointer-events:none;

}

/* Floating Icon */

.impact-icon{

    position:absolute;

    top:-45px;
    left:50%;

    transform:translateX(-50%);

    width:92px;
    height:92px;

    border-radius:50%;

    background:#fff;

    border:6px solid #F4C21A;

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

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

    transition:.4s;

}

.impact-card:hover .impact-icon{

    transform:translateX(-50%) scale(1.08) rotate(8deg);

}

.impact-icon i{

    font-size:38px;
    color:#1F6E8C;

}

/* Number */

.impact-number{

    font-size:54px;

    font-weight:700;

    color:#1F6E8C;

    margin-bottom:5px;

    font-family:'Poppins',sans-serif;

}

/* Title */

.impact-card h3{

    font-size:25px;

    color:#1F2D3D;

    margin-bottom:18px;

    font-family:'Poppins',sans-serif;

}

/* Gold Line */

.card-line{

    width:70px;
    height:4px;

    background:#F4C21A;

    border-radius:50px;

    margin:0 auto 22px;

}

/* Description */

.impact-card p{

    color:#5F6B73;

    line-height:1.9;

    font-size:16px;

}

/* Button */

.impact-card a{

    margin-top:auto;

    display:inline-flex;

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

    gap:10px;

    text-decoration:none;

    color:#1F6E8C;

    font-weight:600;

    transition:.3s;

}

.impact-card a:hover{

    color:#F4C21A;


}/*====================================================
ROLAK FOUNDATION
IMPACT READ MORE
====================================================*/
/*====================================================
IMPACT READ MORE POSITION
====================================================*/
.impact-readmore{

    position:relative;

    width:100%;

    margin-top:-80px;

    padding:0 0 100px;

    background:#FCFBF8;

    z-index:30;



}
.impact-readmore .container{

    width:90%;

    max-width:1280px;

    margin:0 auto;

    padding:0;

    position:relative;

    display:block;

}


/*=========================
GRID
=========================*/
.impact-rm-grid{

    width:100%;

    display:grid;

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

    gap:28px;

    justify-content:center;

    align-items:start;

}

/*=========================
CARD
=========================*/

.impact-rm-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px 30px;

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

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    position:relative;

    overflow:hidden;

    border-top:5px solid #F4C21A;

}

.impact-rm-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 55px rgba(31,110,140,.15);

}

/*=========================
TOP ANIMATION
=========================*/

.impact-rm-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:5px;

    background:#1F6E8C;

    transition:.45s;

}

.impact-rm-card:hover::before{

    width:100%;

}

/*=========================
ICON
=========================*/

.impact-rm-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#EEF7FA;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 24px;

    transition:.35s;

}

.impact-rm-card:hover .impact-rm-icon{

    transform:scale(1.08);

}

.impact-rm-icon i{

    font-size:38px;

    color:#1F6E8C;

}

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

.impact-rm-card h3{

    font-family:'Poppins',sans-serif;

    font-size:24px;

    color:#1F2D3D;

    text-align:center;

    margin-bottom:15px;

}

/*=========================
LINE
=========================*/

.impact-rm-line{

    width:60px;

    height:4px;

    background:#F4C21A;

    border-radius:30px;

    margin:0 auto 20px;

}

/*=========================
SUMMARY
=========================*/

.impact-rm-summary{

    font-family:'Open Sans',sans-serif;

    color:#5F6B73;

    text-align:center;

    line-height:1.8;

    font-size:16px;

}

/*=========================
DETAILS
=========================*/

.impact-rm-details{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.impact-rm-details p{

    margin-top:22px;

    font-family:'Open Sans',sans-serif;

    color:#5F6B73;

    line-height:1.9;

    font-size:15px;

}

/*=========================
ACTIVE CARD
=========================*/

.impact-rm-card.active .impact-rm-details{

    max-height:260px;

}

/*=========================
BUTTON
=========================*/

.impact-rm-toggle{

    margin-top:auto;

    margin-left:auto;

    margin-right:auto;

    margin-top:10px;

    padding:13px 30px;

    border-radius:40px;

    border:2px solid #F4C21A;

    background:#ffffff;

    color:#1F6E8C;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.impact-rm-toggle:hover{

    background:#F4C21A;

    color:#1F2D3D;

}

.impact-rm-toggle i{

    transition:.35s;

}

.impact-rm-card.active .impact-rm-toggle i{

    transform:rotate(180deg);

}

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

@media(max-width:992px){

.impact-rm-grid{

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

}

}

/*=========================
PHONE
=========================*/

@media(max-width:768px){

.impact-rm-grid{

grid-template-columns:1fr;

}

.impact-rm-card{

padding:30px 24px;

}

}
/*=================================
MISSION HIGHLIGHTS
==================================*/

.mission{

margin-top:-70px;

position:relative;

z-index:50;

}

.mission-card{

background:#fff;

padding:45px 35px;

border-radius:28px;

display:grid;

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

gap:25px;

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

}

.mission-item{

text-align:center;

padding:20px;

transition:.35s ease;

border-radius:20px;

}

.mission-item:hover{

transform:translateY(-8px);

background:#F8FBFD;

}

.mission-item i{

width:80px;

height:80px;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

margin-bottom:22px;

border-radius:50%;

font-size:32px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

box-shadow:0 12px 30px rgba(31,110,140,.25);

}

.mission-item h3{

font-family:'Poppins',sans-serif;

font-size:22px;

font-weight:700;

color:var(--dark);

margin-bottom:12px;

}

.mission-item p{

font-size:16px;

line-height:28px;

color:var(--text);

}

/*=================================
PREMIUM IMPACT SECTION HOME
==================================*/

/*=========================
IMPACT HOME
==========================*/

.impact{

position:relative;

padding:130px 0;

overflow:hidden;

background:linear-gradient(
-45deg,
#087F8C,
#2A7FA3,
#245D6E,
#F4C21A
);

background-size:400% 400%;

animation:gradientMove 18s ease infinite;




}
.impact::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:300%;

height:220px;

background:url("../images/wave.svg") repeat-x;

background-size:900px 220px;

opacity:.18;

animation:waveMove 28s linear infinite;

}

.impact::after{

content:"";

position:absolute;

left:0;

bottom:20px;

width:300%;

height:180px;

background:url("../images/wave.svg") repeat-x;

background-size:700px 180px;

opacity:.08;

animation:waveMoveReverse 40s linear infinite;

}
.impact .container{

position:relative;

z-index:5;

}
/*=========================
ANIMATIONS
==========================*/

@keyframes gradientMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

@keyframes waveMove{

from{

transform:translateX(0);

}

to{

transform:translateX(-900px);

}

}

@keyframes waveMoveReverse{

from{

transform:translateX(-700px);

}

to{

transform:translateX(0);

}

}
/* Moving Waves */

.impact::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:200%;

height:180px;

background:url("../images/wave.svg") repeat-x;

background-size:1200px 180px;

opacity:.18;

animation:waveMove 18s linear infinite;

}

.impact::after{

content:"";

position:absolute;

left:0;

bottom:25px;

width:200%;

height:150px;

background:url("../images/wave.svg") repeat-x;

background-size:900px 150px;

opacity:.10;

animation:waveMoveReverse 24s linear infinite;

}
.impact .section-title{

position:relative;

z-index:5;

text-align:center;

max-width:760px;

margin:0 auto 80px;

}

.impact .section-title span{

display:inline-block;

padding:12px 26px;

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

backdrop-filter:blur(8px);

border-radius:40px;

font-family:'Poppins';

font-size:14px;

font-weight:700;

letter-spacing:2px;

color:#F4C21A;

margin-bottom:20px;

}

.impact .section-title h2{

font-family:'Poppins';

font-size:54px;

font-weight:800;

color:#fff;

margin-bottom:20px;

}

.impact .section-title p{

font-size:18px;

line-height:34px;

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


}

.impact-grid{

position:relative;

z-index:5;

display:grid;

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

gap:35px;

}

.impact-card{

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

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

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

padding:45px 30px;

border-radius:25px;

text-align:center;

transition:.4s;

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

color:#fff;

}

.impact-card:hover{

transform:translateY(-12px);

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



}
.impact-card .icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:28px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(
135deg,
#F4C21A,
#F28C28
);

font-size:38px;

color:#fff;

box-shadow:0 20px 35px rgba(244,194,26,.35);

transition:.4s;

}

.impact-card:hover .icon{

transform:rotate(10deg) scale(1.08);

}

.impact-card h3{

font-family:'Poppins';

font-size:50px;

font-weight:800;

color:#fff;

margin-bottom:10px;

}

.impact-card p{

font-size:18px;

font-weight:600;

color:#F5F5F5;

}

@keyframes gradientMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}
@keyframes waveMove{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

@keyframes waveMoveReverse{

0%{

transform:translateX(-50%);

}

100%{

transform:translateX(0);

}

}
@media(max-width:991px){

.impact-grid{

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

}

}

@media(max-width:650px){

.impact-grid{

grid-template-columns:1fr;

}

.impact .section-title h2{

font-size:40px;

}

}
@media(max-width:991px){

.impact-grid{

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

}

}

@media(max-width:600px){

.impact-grid{

grid-template-columns:1fr;

}

}

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

header.sticky{

top:0;

background:#fff;

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

}

header.sticky nav{

background:#ffffff;

border:none;

border-radius:0;

height:85px;

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



}

header.sticky nav ul li a{

color:var(--dark);

}

header.sticky .logo img{

width:145px;

}


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

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

@media (max-width:991px){

.hero{

padding:150px 0 80px;

}

.hero-wrapper{

flex-direction:column;

text-align:center;

}

.hero-left,
.hero-right{

width:100%;

}

.hero p{

margin:auto;

margin-bottom:35px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero h1{

font-size:46px;

line-height:56px;

}

.hero-right{

margin-top:40px;

}

.impact-grid{

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

}

.why-wrapper{

flex-direction:column;

}

.program-grid{

grid-template-columns:1fr;

}



}
@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}/* ==========================
WHY WE EXIST
STICKY BACKGROUND IMAGE
========================== */

.why-section{

    position:relative;

    padding:120px 0;

    min-height:700px;

    background-image:
        linear-gradient(
            rgba(31,110,140,.78),
            rgba(31,45,61,.90)
        ),
        url("../images/why-image.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    overflow:hidden;

}


/* ==========================
CONTAINER
========================== */

.why-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* ==========================
REMOVE OLD IMAGE COLUMN
========================== */

.why-image{

    display:none;

}


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

.why-content{

    max-width:850px;

    margin:0 auto;

    text-align:center;

}


/* ==========================
BADGE
========================== */

.section-badge{

    display:inline-block;

    padding:10px 25px;

    background:#FFF6DA;

    color:#D39B00;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    font-size:14px;

    margin-bottom:25px;

}


/* ==========================
HEADING
========================== */

.why-content h2{

    font-family:'Poppins',sans-serif;

    font-size:52px;

    line-height:1.2;

    margin-bottom:25px;

    color:#ffffff;

}


.why-content h2 span{

    display:block;

    color:#F4C21A;

}


/* ==========================
DESCRIPTION
========================== */

.why-content > p{

    font-family:'Open Sans',sans-serif;

    font-size:18px;

    line-height:32px;

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

    max-width:800px;

    margin:0 auto 22px;

}


/* ==========================
WHY LIST
========================== */

.why-list{

    display:flex;

    flex-direction:column;

    gap:22px;

    max-width:750px;

    margin:35px auto;

    text-align:left;

}


/* ==========================
WHY ITEM
========================== */

.why-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}


/* ==========================
ICON
========================== */

.why-item i{

    color:#F4C21A;

    font-size:25px;

    margin-top:5px;

    min-width:28px;

}


/* ==========================
ITEM TITLE
========================== */

.why-item strong{

    font-family:'Poppins',sans-serif;

    font-size:20px;

    color:#ffffff;

    display:block;

    margin-bottom:7px;

}


/* ==========================
ITEM TEXT
========================== */

.why-item p{

    margin:0;

    font-family:'Open Sans',sans-serif;

    font-size:16px;

    line-height:28px;

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

}


/* ==========================
SUBTLE OVERLAY EFFECT
========================== */

.why-section::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244,194,26,.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255,255,255,.08),
            transparent 30%
        );

    pointer-events:none;

}


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

@media(max-width:992px){

    .why-section{

        padding:100px 0;

        background-attachment:scroll;

    }

}


/* ==========================
PHONE
========================== */

@media(max-width:768px){

    .why-section{

        padding:80px 0;

        min-height:auto;

        background-attachment:scroll;

    }


    .why-content h2{

        font-size:36px;

    }


    .why-content > p{

        font-size:16px;

        line-height:28px;

    }


    .why-list{

        gap:20px;

    }


    .why-item strong{

        font-size:18px;

    }

}


/* Decorative background */

.programs{

    position:relative;

    overflow:hidden;

    padding:130px 0;

    background:linear-gradient(
        180deg,
        #FCFBF8 0%,
        #F8FBFD 100%
    );


}
/*==================================
LUXURY FLOATING BUBBLES
==================================*/

.programs::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(36,93,110,.22) 0%,
        rgba(36,93,110,.12) 45%,
        transparent 75%
    );

    top:-260px;

    left:-250px;

    animation:floatBubble1 18s ease-in-out infinite;

}

.programs::after{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(246,197,79,.25) 0%,
        rgba(246,197,79,.15) 45%,
        transparent 75%
    );

    bottom:-180px;

    right:-180px;

    animation:floatBubble2 15s ease-in-out infinite;


}
.program-bubble{

    position:absolute;

    border-radius:50%;

    pointer-events:none;

    animation:floatBubble 12s ease-in-out infinite;

    filter:blur(2px);

}

.bubble-one{

    width:180px;

    height:180px;

    background:rgba(36,93,110,.18);

    top:120px;

    right:8%;

}

.bubble-two{

    width:110px;

    height:110px;

    background:rgba(246,197,79,.25);

    left:6%;

    bottom:140px;

    animation-delay:2s;

}

.bubble-three{

    width:240px;

    height:240px;

    background:rgba(36,93,110,.12);

    right:28%;

    bottom:40px;

    animation-delay:4s;

}

.bubble-four{

    width:140px;

    height:140px;

    background:rgba(246,197,79,.20);

    top:60px;

    left:42%;

    animation-delay:6s;


}
@keyframes floatBubble{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-25px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes floatBubble1{

    0%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(30px,-30px);

    }

    100%{

        transform:translate(0,0);

    }

}

@keyframes floatBubble2{

    0%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(-35px,25px);

    }

    100%{

        transform:translate(0,0);

    }

}
.programs::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(31,110,140,.05);

    bottom:-150px;

    left:-120px;

}

/*=========================
HEADING
=/*=========================================
PROGRAM SECTION HEADING
=========================================*/

.programs .section-title{

    width:100%;

    max-width:900px;

    margin:0 auto 75px;

    padding-top:145px;

    text-align:center;

    position:relative;

    z-index:5;

}


/*=========================================
PROGRAM LABEL
=========================================*/

.program-label{

    display:flex;

    width:max-content;

    align-items:center;

    justify-content:center;

    padding:10px 26px;

    margin:0 auto 22px;

    background:#FFF8E5;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#D69E00;

}


/*=========================================
PROGRAM HEADING
=========================================*/

.programs-heading{

    width:100%;

    text-align:center;

}


.programs-heading h2{

    width:100%;

    margin:0 auto 20px;

    text-align:center;

    font-family:'Poppins',sans-serif;

    font-size:52px;

    font-weight:700;

    line-height:1.18;

    color:#245D6E;

}


.programs-heading h2 span{

    display:block;

    text-align:center;

    color:#F6C54F;

}


/*=========================================
DIVIDER
=========================================*/

.programs-heading .about-divider{

    margin:25px auto;

}


/*=========================================
DESCRIPTION
=========================================*/

.programs-heading p{

    width:100%;

    max-width:760px;

    margin:25px auto 0;

    text-align:center;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:30px;

    color:#5F6B73;

}
/*=========================================
WHITE PANEL
=========================================*/

.program-grid{

    background:#ffffff;

    border-radius:40px;

    padding:60px;

    display:grid;

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

    gap:35px;

    position:relative;

    z-index:5;

    box-shadow:
        0 30px 80px rgba(0,0,0,.08);


}

/*=========================
CARD
==========================*/

.program-card{

    background:linear-gradient(
        160deg,
        #ffffff,
        #F8FBFD
    );

    border-radius:28px;

    padding:50px 40px;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    border:1px solid rgba(31,110,140,.08);

    box-shadow:0 18px 45px rgba(31,110,140,.08);

    transition:.45s ease;

    position:relative;

    overflow:hidden;

}

/* Animated top line */

.program-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:5px;

    background:linear-gradient(
        90deg,
        #1F6E8C,
        #F4C21A
    );

    transition:.45s;

}

.program-card:hover::before{

    width:100%;

}

.program-card:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 65px rgba(31,110,140,.16);

}

/*=========================
ICON
==========================*/

.program-icon{

    width:95px;

    height:95px;

    margin:0 auto 28px;

    border-radius:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #1F6E8C,
        #3A8AAA,
        #F4C21A
    );

    color:#fff;

    font-size:36px;

    box-shadow:0 18px 35px rgba(31,110,140,.20);

    transition:.45s;

}

.program-card:hover .program-icon{

    transform:rotate(8deg) scale(1.08);

}

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

.program-card h3{

    font-family:'Poppins';

    font-size:28px;

    font-weight:700;

    color:#1F2D3D;

    margin-bottom:18px;

    text-align:center;

}

/* Gold divider */

.program-divider{

    width:70px;

    height:4px;

    margin:0 auto 22px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        #F4C21A,
        transparent
    );

}

/*=========================
DESCRIPTION
==========================*/

.program-card p{

    font-family:'Open Sans';

    font-size:16px;

    line-height:30px;

    color:#5F6B73;

    text-align:center;

    margin-bottom:28px;

}

/*=========================
BUTTON
==========================*/

.program-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-top:auto;

    padding:14px 30px;

    border-radius:40px;

    border:2px solid #F4C21A;

    background:#fff;

    color:#1F6E8C;

    font-family:'Poppins';

    font-weight:600;

    transition:.35s;

}

.program-btn:hover{

    background:#F4C21A;

    color:#1F2D3D;

}

.program-btn i{

    transition:.35s;

}

.program-btn:hover i{

    transform:translateX(5px);

}

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

@media(max-width:992px){

.program-grid{

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

}

}

/*=========================
PHONE
==========================*/

@media(max-width:768px){

.program-grid{

grid-template-columns:1fr;

}

.program-card{

padding:40px 28px;

}

.programs .section-heading h2{

font-size:36px;

}

}
/*====================================================
OUR PROMISE
====================================================*/

.our-promise {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    background:
        linear-gradient(
            135deg,
            #f7faf9 0%,
            #ffffff 50%,
            #f3f8f7 100%
        );
    overflow: hidden;
    box-sizing: border-box;
}


/*--------------------------------
SUBTLE DECORATIVE BACKGROUND
--------------------------------*/

.our-promise::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(20, 132, 145, 0.06);
    top: -180px;
    left: -100px;
}

.our-promise::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(244, 194, 26, 0.07);
    bottom: -160px;
    right: -80px;
}


/*--------------------------------
CONTENT
--------------------------------*/

.promise-container {
    position: relative;
    z-index: 2;
    width: min(900px, 92%);
    margin: 0 auto;
    text-align: center;
}


/*--------------------------------
LABEL
--------------------------------*/

.promise-label {
    display: inline-block;
    margin-bottom: 14px;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: #f4c21a;
}


/*--------------------------------
HEADING
--------------------------------*/

.promise-container h2 {
    margin: 0 auto 20px;

    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;

    color: #203047;
}

.promise-container h2 span {
    color: #147f8b;
}


/*--------------------------------
DIVIDER
--------------------------------*/

.promise-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin: 20px auto 28px;
}

.promise-divider span {
    display: block;
    width: 65px;
    height: 4px;

    background: #f4c21a;
    border-radius: 10px;
}


/*--------------------------------
TEXT
--------------------------------*/

.promise-container p {
    max-width: 780px;
    margin: 0 auto 16px;

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;

    color: #5d6872;
}


/*--------------------------------
CLOSING STATEMENT
--------------------------------*/

.promise-closing {
    margin-top: 30px;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;

    color: #147f8b;
}

.promise-closing strong {
    display: inline-block;
    margin-left: 5px;

    color: #dcae0c;
    font-weight: 700;
}


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

@media (max-width: 768px) {

    .our-promise {
        padding: 60px 18px;
    }

    .promise-container {
        width: 94%;
    }

    .promise-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .promise-container h2 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .promise-divider {
        margin: 18px auto 24px;
    }

    .promise-container p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .promise-closing {
        margin-top: 25px;
        font-size: 15px;
        line-height: 1.6;
    }

    .promise-closing strong {
        display: block;
        margin: 3px 0 0;
    }

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

.footer{

background:#087F8C;

color:#fff;

margin-top:120px;

}


.footer-top{

background:linear-gradient(135deg,#087F8C,#087F8C);

padding:60px 0;

}

.footer-cta{

display:flex;

justify-content:space-between;

align-items:center;

gap:50px;

}

.footer-cta h2{

font-family:'Poppins';

font-size:42px;

margin-bottom:15px;

}

.footer-cta p{

font-size:18px;

max-width:600px;

opacity:.9;

}

.footer-buttons{

display:flex;

gap:20px;

}

.footer-grid{

padding:90px 0;

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:60px;

}

.footer-logo{

width:220px;

margin-bottom:25px;

}

.footer-col p{

line-height:30px;

opacity:.9;

margin-bottom:25px;

}

.footer-col h3{

font-family:'Poppins';

font-size:24px;

margin-bottom:25px;

}

.footer-col ul li{

margin-bottom:18px;

}

.footer-col ul li a{

color:#fff;

opacity:.85;

transition:.3s;

}

.footer-col ul li a:hover{

color:#F4C21A;

padding-left:8px;

}

.footer-social{

display:flex;

gap:15px;

}

.footer-social a{

width:45px;

height:45px;

border-radius:50%;

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

display:flex;

align-items:center;

justify-content:center;

color:#fff;

transition:.35s;

}

.footer-social a:hover{

background:#F4C21A;

color:#245D6E;

transform:translateY(-5px);

}

.footer-col input{

width:100%;

padding:16px;

border:none;

border-radius:10px;

margin-bottom:15px;

outline:none;

}

.footer-col button{

width:100%;

padding:16px;

border:none;

border-radius:10px;

background:#F4C21A;

font-family:'Poppins';

font-weight:600;

cursor:pointer;

transition:.35s;

}

.footer-col button:hover{

background:#fff;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding:25px 0;

}

.footer-copy{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}
/* =================================
   OUR LEADERSHIP
================================= */

.leadership {
    position: relative;
    margin-top: 100px;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(31,110,140,.08) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(244,194,26,.10) 0%,
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #F8FBFD,
            #EAF4F7
        );
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading h2 {
    font-family: 'Poppins';
    font-size: 42px;
    line-height: 1.3;
    margin: 20px 0;
    color: var(--dark);
}

.section-heading h2 span {
    display: block;
    color: var(--primary);
}

.section-heading p {
    font-size: 18px;
    line-height: 32px;
    color: var(--text);
}
/* ==========================================
   OUR LEADERSHIP
========================================== */

.leadership {
    position: relative;
    margin-top: 100px;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(31,110,140,.08),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(244,194,26,.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #F8FBFD,
            #EAF4F7
        );
}


/* SECTION HEADING */

.leadership .section-heading {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}


/* ==========================================
   LARGE FOUNDER PROFILE
========================================== */

.founder-profile {
    width: 650px;
    max-width: 90%;
    margin: 0 auto 70px;

    background: #fff;

    border-radius: 30px;
    overflow: hidden;

    border-top: 7px solid var(--secondary);

    box-shadow:
        0 30px 80px rgba(0,0,0,.14);

    text-align: center;

    position: relative;
}


/* FOUNDER IMAGE */

.founder-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* FOUNDER INFORMATION */

.founder-info {
    padding: 35px 55px 45px;
}

.founder-info h3 {
    font-family: 'Poppins';
    font-size: 34px;
    margin: 0 0 10px;
    color: var(--dark);
}

.founder-info .position {
    display: inline-block;

    background: var(--primary);
    color: #fff;

    padding: 9px 22px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 22px;
}

.founder-info p {
    font-size: 16px;
    line-height: 29px;
    color: var(--text);
    margin: 0;
}

/* =========================================================
   CO-DIRECTOR SECTION
   ROLAK FOUNDATION
   COMPLETE REPLACEMENT CSS
========================================================= */

.codirectors-section {
    position: relative;
    padding: 110px 20px;
    background: #F8FBFB;
    overflow: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.codirectors-section .container {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.codirectors-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.codirectors-heading .section-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 9px 22px;
    border-radius: 30px;
    background: #FFF6DA;
    color: #008C95;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.codirectors-heading h2 {
    margin: 0;
    color: #173B3F;
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.codirectors-heading h2 span {
    color: #008C95;
}

.codirectors-heading .about-divider {
    width: 65px;
    height: 4px;
    margin: 20px auto;
    border-radius: 10px;
    background: #F4C21A;
}

.codirectors-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #5F6B73;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FEATURED CO-DIRECTOR
========================================================= */

.codirector-featured {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(450px, 1.1fr);
    align-items: stretch;
    max-width: 1080px;
    min-height: 560px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(23, 59, 63, 0.12);
}


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

.codirector-featured-image {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #006F78;
}

.codirector-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(23, 59, 63, 0.45),
        rgba(23, 59, 63, 0.05) 55%,
        transparent
    );
    pointer-events: none;
}

.codirector-featured-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.codirector-featured:hover .codirector-featured-image img {
    transform: scale(1.04);
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.codirector-image-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 4px;
    background: #F4C21A;
    color: #173B3F;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


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

.codirector-featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px 60px;
    background: #FFFFFF;
}


/* =========================================================
   ROLE LABEL
========================================================= */

.codirector-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #F4C21A;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


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

.codirector-featured-content h3 {
    margin: 0;
    color: #008C95;
    font-family: "Poppins", sans-serif;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   SMALL TEAL/YELLOW LINE
========================================================= */

.codirector-line {
    width: 70px;
    height: 4px;
    margin: 18px 0 25px;
    border-radius: 10px;
    background: #F4C21A;
}


/* =========================================================
   BIO
========================================================= */

.codirector-featured-content .director-card-bio {
    position: relative;
}

.codirector-featured-content .director-card-bio > p {
    margin: 0;
    color: #5F6B73;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   HIDDEN BIO CONTENT
========================================================= */

.codirector-featured-content .director-card-more {
    display: none;
    margin-top: 18px;
}

.codirector-featured-content .director-card-more p {
    margin: 0 0 16px;
    color: #5F6B73;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.85;
}

.codirector-featured-content .director-card-more p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   READ MORE BUTTON
========================================================= */

.codirector-featured-content .director-card-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-top: 28px;
    padding: 12px 22px;
    border: 2px solid #008C95;
    border-radius: 4px;
    background: #008C95;
    color: #FFFFFF;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.codirector-featured-content .director-card-button:hover {
    background: #F4C21A;
    border-color: #F4C21A;
    color: #173B3F;
    transform: translateY(-2px);
}


/* =========================================================
   READ MORE / READ LESS
========================================================= */

.codirector-featured-content .director-read-less {
    display: none;
}

.codirector-featured-content .director-button-arrow {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
    transition: transform 0.3s ease;
}


/* =========================================================
   WHEN PROFILE IS OPEN
   Supports common JS class patterns
========================================================= */

.codirector-featured-content .director-card-bio.expanded .director-card-more,
.codirector-featured-content .director-card-more.show {
    display: block;
}

.codirector-featured-content .director-card-bio.expanded .director-read-more {
    display: none;
}

.codirector-featured-content .director-card-bio.expanded .director-read-less {
    display: inline;
}

.codirector-featured-content .director-card-bio.expanded .director-button-arrow {
    transform: rotate(180deg);
}


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

@media (max-width: 900px) {

    .codirectors-section {
        padding: 90px 20px;
    }

    .codirectors-heading {
        margin-bottom: 50px;
    }

    .codirectors-heading h2 {
        font-size: 36px;
    }

    .codirector-featured {
        grid-template-columns: 1fr 1fr;
        min-height: 500px;
    }

    .codirector-featured-image {
        min-height: 500px;
    }

    .codirector-featured-image img {
        min-height: 500px;
    }

    .codirector-featured-content {
        padding: 45px 35px;
    }

    .codirector-featured-content h3 {
        font-size: 30px;
    }

}


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

@media (max-width: 700px) {

    .codirectors-section {
        padding: 75px 18px;
    }

    .codirectors-heading {
        margin-bottom: 40px;
    }

    .codirectors-heading .section-badge {
        padding: 8px 18px;
        font-size: 11px;
    }

    .codirectors-heading h2 {
        font-size: 30px;
    }

    .codirectors-heading p {
        font-size: 14px;
        line-height: 1.75;
    }


    /* FEATURED CARD */

    .codirector-featured {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: auto;
        border-radius: 14px;
    }


    /* IMAGE */

    .codirector-featured-image {
        width: 100%;
        height: 420px;
        min-height: 420px;
    }

    .codirector-featured-image img {
        width: 100%;
        height: 420px;
        min-height: 420px;
        object-position: center top;
    }


    /* BADGE */

    .codirector-image-badge {
        left: 20px;
        bottom: 20px;
        padding: 9px 14px;
        font-size: 10px;
    }


    /* CONTENT */

    .codirector-featured-content {
        padding: 38px 25px 40px;
    }

    .codirector-label {
        margin-bottom: 9px;
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .codirector-featured-content h3 {
        font-size: 28px;
    }

    .codirector-line {
        width: 55px;
        height: 3px;
        margin: 15px 0 21px;
    }

    .codirector-featured-content .director-card-bio > p,
    .codirector-featured-content .director-card-more p {
        font-size: 14px;
        line-height: 1.8;
    }

    .codirector-featured-content .director-card-button {
        margin-top: 23px;
        padding: 11px 18px;
        font-size: 12px;
    }

}


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

@media (max-width: 420px) {

    .codirectors-section {
        padding: 60px 15px;
    }

    .codirectors-heading h2 {
        font-size: 27px;
    }

    .codirector-featured-image {
        height: 360px;
        min-height: 360px;
    }

    .codirector-featured-image img {
        height: 360px;
        min-height: 360px;
    }

    .codirector-featured-content {
        padding: 32px 20px 35px;
    }

    .codirector-featured-content h3 {
        font-size: 25px;
    }

    .codirector-featured-content .director-card-bio > p,
    .codirector-featured-content .director-card-more p {
        font-size: 13.5px;
    }

}
/*==================================
OUR TEAM
===================================*/

.team{

    position:relative;

    padding:130px 0 150px;

    overflow:hidden;

    background:#1F6E8C;

}


/*==================================
TEAM BACKGROUND
===================================*/

.team{

    position:relative;

    padding:130px 0 150px;

    overflow:hidden;

    background:#1F6E8C;

}


/*==================================
STICKY BACKGROUND IMAGE
===================================*/

.team-bg-slider{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:0;

    overflow:hidden;

}


#teamBackgroundImage{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    opacity:1;

    transform:scale(1.03);

    transition:

        opacity 1.3s ease-in-out,

        transform 6s ease;

}


/*==================================
TEAL OVERLAY
===================================*/

.team-bg-overlay{

    position:absolute;

    inset:0;

    z-index:1;

    background:rgba(31,110,140,.72);

    pointer-events:none;

}


/*==================================
TEAM CONTENT
===================================*/

.team .container{

    position:relative;

    z-index:5;

}

/*==================================
TEAM HEADING
===================================*/

.team .section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 75px;

}


/*==================================
TEAM LABEL
===================================*/

.team .section-title span{

    display:inline-block;

    padding:10px 25px;

    background:#FFF8E5;

    color:#D69E00;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    margin-bottom:22px;

}


/*==================================
TEAM HEADING
===================================*/

.team .section-title h2{

    font-family:'Poppins',sans-serif;

    font-size:52px;

    line-height:1.18;

    color:#ffffff;

    margin:0 0 20px;

}


.team .section-title h2 span{

    display:block;

    padding:0;

    background:none;

    color:#F4C21A;

    border-radius:0;

    margin:0;

    font-size:inherit;

    letter-spacing:normal;

    text-transform:none;

}


/*==================================
TEAM DESCRIPTION
===================================*/

.team .section-title p{

    max-width:760px;

    margin:25px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:31px;

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

}


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

.team-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}


/*==================================
TEAM CARD
===================================*/

.team-card{

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

    border-radius:28px;

    padding:35px;

    text-align:center;

    transition:.4s ease;

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

    border-bottom:5px solid #F6C54F;

}


.team-card:hover{

    transform:translateY(-12px);

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

}


/*==================================
TEAM IMAGE
===================================*/

.team-image{

    width:150px;

    height:150px;

    margin:0 auto 25px;

    border-radius:50%;

    overflow:hidden;

    border:6px solid #F6C54F;

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

}


.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/*==================================
TEAM NAME
===================================*/

.team-card h3{

    font-family:'Poppins',sans-serif;

    font-size:25px;

    color:#245D6E;

    margin-bottom:10px;

}


/*==================================
TEAM ROLE
===================================*/

.team-role{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:#245D6E;

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}


/*==================================
TEAM DESCRIPTION
===================================*/

.team-card p{

    font-family:'Open Sans',sans-serif;

    font-size:16px;

    line-height:30px;

    color:#5F6B73;

}


/*==================================
SUBTLE BACKGROUND GLOW
===================================*/

.team::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244,194,26,.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(255,255,255,.08),
            transparent 30%
        );

    pointer-events:none;

    z-index:1;

}


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

@media(max-width:992px){

    .team{

        background-attachment:scroll;

    }

    .team-grid{

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

    }

}


/*==================================
PHONE
===================================*/

@media(max-width:768px){

    .team{

        padding:90px 0 110px;

        background-attachment:scroll;

    }

    .team-grid{

        grid-template-columns:1fr;

    }

    .team .section-title h2{

        font-size:36px;

    }

}
/*==================================
BRING TEAM CONTENT ABOVE BACKGROUND
===================================*/

.team .container{

    position:relative;

    z-index:10;

}


.team .section-title{

    position:relative;

    z-index:11;

}


.team-grid{

    position:relative;

    z-index:11;

}


.team-card{

    position:relative;

    z-index:12;

}
/*==================================
TEAM FINAL STRUCTURE
===================================*/

.team{

    position:relative;

    isolation:isolate;

    overflow:hidden;

    padding:130px 0 150px;

    background:#1F6E8C;

}


/*==================================
STICKY BACKGROUND
===================================*/

.team-bg-slider{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:-2;

    overflow:hidden;

}


#teamBackgroundImage{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transition:opacity 1s ease-in-out;

}


/*==================================
TEAL OVERLAY
===================================*/

.team-bg-overlay{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:-1;

    background:rgba(31,110,140,.72);

    pointer-events:none;

}


/*==================================
TEAM CONTENT
===================================*/

.team-content{

    position:relative;

    z-index:5;

}


.team-content .container{

    position:relative;

    z-index:6;

}


/*==================================
TEAM HEADING
===================================*/

.team-content .section-heading{

    position:relative;

    z-index:7;

    text-align:center;

    max-width:850px;

    margin:0 auto 75px;

}


.team-content .section-heading > span{

    display:inline-block;

    padding:10px 25px;

    background:#FFF8E5;

    color:#D69E00;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    margin-bottom:22px;

}


.team-content .section-heading h2{

    font-family:'Poppins',sans-serif;

    font-size:52px;

    line-height:1.18;

    color:#fff;

    margin:0 0 20px;

}


.team-content .section-heading h2 span{

    display:block;

    color:#F4C21A;

}


.team-content .section-heading p{

    max-width:760px;

    margin:25px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:31px;

    color:#fff;

}


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

.team-content .team-grid{

    position:relative;

    z-index:7;

    display:grid;

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

    gap:35px;

    margin-top:60px;

}


/*==================================
TEAM CARD
===================================*/

.team-content .team-card{

    position:relative;

    z-index:8;

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

    border-radius:28px;

    padding:35px;

    text-align:center;

    box-shadow:0 25px 55px rgba(0,0,0,.20);

    border-bottom:5px solid #F6C54F;

    transition:.4s ease;

}


.team-content .team-card:hover{

    transform:translateY(-12px);

}


/*==================================
TEAM IMAGE
===================================*/

.team-image{

    width:150px;

    height:150px;

    margin:0 auto 25px;

    border-radius:50%;

    overflow:hidden;

    border:6px solid #F6C54F;

}


.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


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

@media(max-width:992px){

    .team-content .team-grid{

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

    }

}


@media(max-width:768px){

    .team{

        padding:90px 0 110px;

    }

    .team-content .team-grid{

        grid-template-columns:1fr;

    }

    .team-content .section-heading h2{

        font-size:36px;

    }

}
/*====================================================
GALLERY - HOMEPAGE ONLY
====================================================*/

.gallery{

    position:relative;

    padding:70px 0 90px;

    background:#FCFBF8;

    overflow:hidden;

}


/*==================================
GALLERY LABEL
===================================*/

.gallery .section-heading > span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 26px;

    background:#FFF8E5;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    color:#D69E00;

    text-transform:uppercase;

    margin-bottom:22px;

}


/*==================================
HOMEPAGE GALLERY GRID
===================================*/

.gallery .gallery-grid{

    display:grid;

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

    grid-auto-rows:260px;

    gap:25px;

    margin-top:70px;

}


/*==================================
HOMEPAGE GALLERY ITEM
===================================*/

.gallery .gallery-item{

    overflow:hidden;

    border-radius:25px;

    position:relative;

    cursor:pointer;

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

}


/*==================================
HOMEPAGE GALLERY IMAGE
===================================*/

.gallery .gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}


.gallery .gallery-item:hover img{

    transform:scale(1.12);

}


/*==================================
HOMEPAGE GALLERY OVERLAY
===================================*/

.gallery .gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent,
        rgba(36,93,110,.45)
    );

    opacity:0;

    transition:.35s;

}


.gallery .gallery-item:hover::after{

    opacity:1;

}


/*==================================
HOMEPAGE LARGE GALLERY ITEM
===================================*/

.gallery .gallery-item.large{

    grid-column:span 2;

    grid-row:span 2;

}
/*==================================
MOVING GALLERY
===================================*/

.gallery-strip{


    width:100%;

    overflow:hidden;

    white-space:nowrap;

    position:relative;

    margin:70px 0 50px;

}

.gallery-track{

    display:flex;

    flex-wrap:nowrap;

    gap:0;

    width:max-content;

    animation: galleryMove 40s linear infinite;

}

.gallery-track img{

    display:block;

    flex-shrink:0;

    width:240px;

    height:170px;

    object-fit:cover;

    margin:0;

    padding:0;

    border-radius:0;


}

.gallery-track img:hover{

    transform:scale(1.08);

}

.gallery-strip:hover .gallery-track{

    animation-play-state:paused;

}

@keyframes galleryMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.gallery-btn{

    text-align:center;

    margin-top:60px;

}

@media(max-width:991px){

.gallery-grid{

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

}

.gallery-item.large{

grid-column:span 2;

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item.large{

grid-column:span 1;

grid-row:span 1;

}


}
/*==================================
SUCCESS STORIES
===================================*/

.success-stories{

    position:relative;

    margin-top:50px;

    padding:100px 0 80px;

    background:#087F8C;

    overflow:hidden;

}


/*==================================
HEADING
===================================*/

.success-heading{

    max-width:760px;

    margin:0 auto 55px;

    text-align:center;

    position:relative;

    z-index:2;

}

.success-heading > span{

    display:block;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    color:#F4C21A;

    margin-bottom:12px;

}

.success-heading h2{

    font-family:'Poppins',sans-serif;

    font-size:44px;

    line-height:1.2;

    font-weight:700;

    color:#fff;

    margin:0 0 15px;

}

.success-heading h2 strong{

    color:#F4C21A;

}

.success-heading p{

    max-width:650px;

    margin:15px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:16px;

    line-height:28px;

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

}


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

.success-grid{

    display:grid;

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

    gap:45px;

    align-items:start;

    position:relative;

    z-index:2;

}


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

.success-story{

    position:relative;

    text-align:center;

    transition:.4s ease;

}

.success-story:hover{

    transform:translateY(-8px);

}


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

.success-image{

    position:relative;

    width:100%;

    max-width:310px;

    height:330px;

    margin:0 auto;

    overflow:hidden;

    border-radius:28px;

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

}

.success-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

.success-story:hover .success-image img{

    transform:scale(1.06);

}


/*==================================
NUMBER
===================================*/

.story-number{

    position:absolute;

    top:18px;

    left:18px;

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F4C21A;

    color:#1F6E8C;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:700;

}


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

.success-content{

    position:relative;

    width:90%;

    max-width:290px;

    margin:-5px auto 0;

    padding:25px 20px 0;

    z-index:5;

}


/*==================================
STARS
===================================*/

.story-stars{

    display:flex;

    justify-content:center;

    gap:4px;

    margin-bottom:12px;

}

.story-stars i{

    color:#F4C21A;

    font-size:15px;

}


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

.story-category{

    display:block;

    font-family:'Poppins',sans-serif;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    color:#F4C21A;

    margin-bottom:8px;

}


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

.success-content h3{

    font-family:'Poppins',sans-serif;

    font-size:22px;

    line-height:1.3;

    font-weight:700;

    color:#fff;

    margin:0 0 10px;

}


/*==================================
DESCRIPTION
===================================*/

.success-content p{

    font-family:'Open Sans',sans-serif;

    font-size:14px;

    line-height:25px;

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

    margin:0;

}


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

.featured-story{

    transform:translateY(-20px);

}

.featured-story:hover{

    transform:translateY(-28px);

}


/*==================================
BUTTON
===================================*/

.success-action{

    text-align:center;

    margin-top:55px;

}

.success-action .mission-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    border:1px solid rgba(244,194,26,.7);

}


/*==================================
DECORATIVE BACKGROUND
===================================*/

.success-stories::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(244,194,26,.06);

    top:-230px;

    right:-120px;

}

.success-stories::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

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

    bottom:-180px;

    left:-100px;

}


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

@media(max-width:991px){

    .success-grid{

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

    }

    .featured-story{

        transform:none;

    }

    .featured-story:hover{

        transform:translateY(-8px);

    }

}


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

@media(max-width:650px){

    .success-stories{

        padding:80px 0 70px;

    }

    .success-heading{

        margin-bottom:45px;

    }

    .success-heading h2{

        font-size:34px;

    }

    .success-grid{

        grid-template-columns:1fr;

        gap:55px;

    }

    .success-image{

        max-width:290px;

        height:320px;

    }

    .success-content{

        margin-top:-2px;

    }

}
/*=========================================
SUCCESS STORY PERSON
=========================================*/

.story-person{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:45px 25px 20px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0)
    );

    color:#fff;

    z-index:2;

}


.story-person strong{

    display:block;

    font-family:'Poppins', sans-serif;

    font-size:18px;

    font-weight:600;

    margin-bottom:3px;

}


.story-person span{

    display:block;

    font-family:'Open Sans', sans-serif;

    font-size:12px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:1px;

    opacity:0.85;

}
/*=========================================
CONTACT PAGE
=========================================*/

.contact-hero{

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:
        linear-gradient(
            rgba(31,110,140,.78),
            rgba(36,93,110,.88)
        ),
        url("../images/about-hero.jpg");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}


.contact-hero-content{

    position:relative;

    z-index:5;

    max-width:850px;

    margin:120px auto 0;

}


.contact-hero .section-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(244,194,26,.18);

    border:1px solid rgba(244,194,26,.6);

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}


.contact-hero h1{

    margin:25px 0 15px;

    font-family:'Poppins',sans-serif;

    font-size:55px;

    line-height:1.15;

    color:#fff;

}


.contact-hero h1 span{

    display:block;

    color:#F4C21A;

}


.contact-hero p{

    max-width:720px;

    margin:20px auto;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:31px;

    color:#fff;

}


/*=========================================
CONTACT MAIN
=========================================*/

.contact-section{

    padding:110px 0 120px;

    background:#FCFBF8;

}


.contact-heading{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}


.contact-heading > span{

    display:inline-block;

    padding:9px 22px;

    border-radius:50px;

    background:#FFF8E5;

    color:#D69E00;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}


.contact-heading h2{

    margin:22px 0 18px;

    font-family:'Poppins',sans-serif;

    font-size:46px;

    line-height:1.2;

    color:#245D6E;

}


.contact-heading h2 span{

    color:#F4C21A;

}


.contact-heading p{

    max-width:700px;

    margin:25px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:30px;

    color:#5F6B73;

}


/*=========================================
CONTACT WRAPPER
=========================================*/

.contact-wrapper{

    display:grid;

    grid-template-columns:40% 60%;

    max-width:1150px;

    margin:auto;

    border-radius:35px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(31,110,140,.12);

}


/*=========================================
CONTACT INFO
=========================================*/

.contact-info{

    padding:55px 40px;

    background:#1F6E8C;

}


.contact-info-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:22px 0;

    border-bottom:1px solid rgba(255,255,255,.15);

}


.contact-info-card:last-child{

    border-bottom:none;

}


.contact-icon{

    min-width:55px;

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:#F4C21A;

    color:#245D6E;

    font-size:20px;

}


.contact-info-card h3{

    margin-bottom:6px;

    font-family:'Poppins',sans-serif;

    font-size:17px;

    color:#fff;

}


.contact-info-card p{

    font-family:'Open Sans',sans-serif;

    font-size:14px;

    line-height:23px;

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

}


/*=========================================
CONTACT FORM
=========================================*/

.contact-form-box{

    padding:55px;

    background:#fff;

}


.contact-form-box h3{

    font-family:'Poppins',sans-serif;

    font-size:28px;

    color:#245D6E;

    margin-bottom:8px;

}


.contact-form-box > p{

    color:#5F6B73;

    margin-bottom:30px;

}


.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}


.form-group{

    margin-bottom:20px;

}


.form-group label{

    display:block;

    margin-bottom:8px;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:600;

    color:#245D6E;

}


.form-group input,
.form-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #DDE5E8;

    border-radius:12px;

    outline:none;

    font-family:'Open Sans',sans-serif;

    font-size:15px;

    color:#1F2D3D;

    background:#FCFBF8;

    transition:.3s;

}


.form-group textarea{

    resize:vertical;

}


.form-group input:focus,
.form-group textarea:focus{

    border-color:#1F6E8C;

    box-shadow:0 0 0 3px rgba(31,110,140,.08);

}


.contact-submit{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 30px;

    border:none;

    border-radius:50px;

    background:#1F6E8C;

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}


.contact-submit:hover{

    background:#F4C21A;

    color:#1F2D3D;

    transform:translateY(-3px);

}


/*=========================================
CONTACT CTA
=========================================*/

.contact-cta{

    padding:100px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244,194,26,.16),
            transparent 30%
        ),
        #1F6E8C;

    text-align:center;

}


.contact-cta-content{

    max-width:800px;

    margin:auto;

}


.contact-cta-content > span{

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

}


.contact-cta h2{

    margin:20px 0;

    font-family:'Poppins',sans-serif;

    font-size:45px;

    line-height:1.2;

    color:#fff;

}


.contact-cta h2 strong{

    color:#F4C21A;

}


.contact-cta p{

    max-width:650px;

    margin:0 auto 30px;

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

    line-height:30px;

}


.contact-cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}
/*====================================================
PROGRAMS PAGE
Premium Editorial Design
====================================================*/


/*==================================
PROGRAM PAGE HERO
===================================*/

.program-page-hero{

    position:relative;

    min-height:560px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:
        linear-gradient(
            rgba(31,110,140,.78),
            rgba(36,93,110,.90)
        ),
        url("../images/about-hero.jpg");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}


.program-page-overlay{

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(244,194,26,.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(255,255,255,.08),
            transparent 30%
        );

}
/*=========================================
PROGRAM PAGE HERO CONTENT
=========================================*/

.program-page-hero-content{
    position:relative;
    z-index:10;
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:120px 25px 100px;
    box-sizing:border-box;
    text-align:center;
}


/*=========================================
PROGRAM HERO BADGE
=========================================*/

.program-page-hero .section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 26px;

    border-radius:50px;

    background:#ffffff;

    border:2px solid #F4C21A;

    color:#D9A900;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:800;

    letter-spacing:2px;

    line-height:1;

    box-shadow:0 8px 25px rgba(0,0,0,.12);
}


/*=========================================
PROGRAM HERO HEADING
=========================================*/

.program-page-hero h1{

    margin:28px auto 0;

    max-width:850px;

    font-family:'Poppins',sans-serif;

    font-size:58px;

    font-weight:800;

    line-height:1.12;

    letter-spacing:-1px;

    color:#ffffff;

    text-shadow:
        0 3px 12px rgba(0,0,0,.25);
}


/*=========================================
YELLOW HEADING TEXT
=========================================*/

.program-page-hero h1 span{

    display:block;

    margin-top:6px;

    color:#F4C21A;

    font-weight:800;

    text-shadow:
        0 3px 12px rgba(0,0,0,.20);
}


/*=========================================
PROGRAM HERO DESCRIPTION
=========================================*/

.program-page-hero p{

    max-width:760px;

    margin:28px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:18px;

    font-weight:500;

    line-height:1.8;

    color:#ffffff;

    text-shadow:
        0 2px 8px rgba(0,0,0,.35);
}


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

@media(max-width:992px){

    .program-page-hero-content{
        padding:100px 25px 80px;
    }

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

    .program-page-hero p{
        font-size:17px;
    }

}


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

@media(max-width:768px){

    .program-page-hero-content{
        padding:85px 20px 70px;
    }

    .program-page-hero .section-badge{
        padding:9px 20px;
        font-size:11px;
        letter-spacing:1.5px;
    }

    .program-page-hero h1{
        margin-top:22px;
        font-size:36px;
        line-height:1.18;
        letter-spacing:-.5px;
    }

    .program-page-hero h1 span{
        margin-top:4px;
    }

    .program-page-hero p{
        margin-top:22px;
        font-size:15px;
        line-height:1.7;
    }

}


/*=========================================
SMALL PHONES
=========================================*/

@media(max-width:480px){

    .program-page-hero-content{
        padding:75px 18px 60px;
    }

    .program-page-hero h1{
        font-size:31px;
    }

    .program-page-hero p{
        font-size:14px;
        line-height:1.65;
    }

}
/* =====================================================
   PROGRAM INTRO — CLEAN & SHARP
   ===================================================== */

.program-intro{
    position:relative;
    width:100%;
    padding:90px 20px 95px;
    background:#ffffff !important;
    overflow:hidden;
    box-sizing:border-box;
}


/* CONTENT CONTAINER */

.program-intro .container{
    width:100%;
    max-width:1100px;
    margin:0 auto;
}


/* HEADING AREA */

.program-intro-heading{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}


/* SMALL LABEL */

.program-intro-heading > span{
    display:inline-block;
    margin-bottom:18px;

    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:2.5px;

    color:#F4C21A;

    text-transform:uppercase;
}


/* MAIN HEADING */

.program-intro-heading h2{
    margin:0;

    font-family:'Poppins',sans-serif;
    font-size:46px;
    font-weight:700;
    line-height:1.2;

    color:#24566A !important;

    text-align:center;
}


/* YELLOW PART OF HEADING */

.program-intro-heading h2 span{
    display:block;

    margin-top:5px;

    color:#F4C21A !important;
}


/* DIVIDER */

.program-intro-heading .about-divider{
    width:70px;
    height:4px;

    margin:25px auto 28px;

    background:#F4C21A !important;

    border-radius:10px;
}


/* DESCRIPTION */

.program-intro-heading p{
    max-width:780px;

    margin:0 auto;

    font-family:'Open Sans',sans-serif;
    font-size:17px;
    font-weight:400;

    line-height:1.8;

    color:#536A73 !important;

    text-align:center;
}


/* =====================================================
   SUBTLE DECORATIVE EFFECT
   ===================================================== */

.program-intro::before{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    left:-110px;
    top:50%;

    transform:translateY(-50%);

    background:rgba(15,130,143,.06);

    border-radius:50%;

    pointer-events:none;
}


.program-intro::after{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    right:-90px;
    bottom:-70px;

    background:rgba(244,194,26,.07);

    border-radius:50%;

    pointer-events:none;
}


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

@media (max-width:768px){

    .program-intro{
        padding:65px 20px 70px;
    }

    .program-intro-heading{
        max-width:100%;
    }

    .program-intro-heading > span{
        font-size:11px;
        letter-spacing:2px;
        margin-bottom:14px;
    }

    .program-intro-heading h2{
        font-size:32px;
        line-height:1.2;
    }

    .program-intro-heading h2 span{
        margin-top:4px;
    }

    .program-intro-heading .about-divider{
        width:55px;
        height:3px;
        margin:20px auto 22px;
    }

    .program-intro-heading p{
        max-width:100%;
        font-size:15px;
        line-height:1.75;
    }

}

/* =====================================================
   PROGRAM INTRO — TEXT SLIDE-IN ANIMATION
   ===================================================== */

/* Small label */
.program-intro-heading > span{
    opacity:0;
    transform:translateY(25px);
    animation:programSlideUp .8s ease-out forwards;
    animation-delay:.15s;
}


/* Main heading */
.program-intro-heading h2{
    opacity:0;
    transform:translateY(30px);
    animation:programSlideUp .9s ease-out forwards;
    animation-delay:.3s;
}


/* Yellow heading line */
.program-intro-heading h2 span{
    opacity:0;
    transform:translateY(25px);
    animation:programSlideUp .8s ease-out forwards;
    animation-delay:.5s;
}


/* Divider */
.program-intro-heading .about-divider{
    opacity:0;
    transform:scaleX(0);
    transform-origin:center;
    animation:programDivider .7s ease-out forwards;
    animation-delay:.7s;
}


/* Description */
.program-intro-heading p{
    opacity:0;
    transform:translateY(25px);
    animation:programSlideUp .9s ease-out forwards;
    animation-delay:.85s;
}


/* =====================================================
   ANIMATION KEYFRAMES
   ===================================================== */

@keyframes programSlideUp{

    0%{
        opacity:0;
        transform:translateY(30px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}


@keyframes programDivider{

    0%{
        opacity:0;
        transform:scaleX(0);
    }

    100%{
        opacity:1;
        transform:scaleX(1);
    }

}


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

@media (max-width:768px){

    .program-intro-heading > span{
        animation-delay:.1s;
    }

    .program-intro-heading h2{
        animation-delay:.25s;
    }

    .program-intro-heading h2 span{
        animation-delay:.4s;
    }

    .program-intro-heading .about-divider{
        animation-delay:.55s;
    }

    .program-intro-heading p{
        animation-delay:.7s;
    }

}

/*==================================
PROGRAM FEATURE
===================================*/

.program-feature{

    position:relative;

    padding:110px 0;

    background:#fff;

    overflow:hidden;

}


.program-feature:nth-of-type(even){

    background:#FCFBF8;

}


.program-feature-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}


/*==================================
PROGRAM IMAGE
===================================*/

.program-feature-image{

    position:relative;

    height:500px;

    border-radius:35px;

    overflow:hidden;

    box-shadow:
        0 30px 70px rgba(31,110,140,.15);

}


.program-feature-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(31,45,61,.35)
        );

}


.program-feature-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s ease;

}


.program-feature:hover
.program-feature-image img{

    transform:scale(1.06);

}


/*==================================
PROGRAM NUMBER
===================================*/

.program-number{

    position:absolute;

    z-index:5;

    top:25px;

    left:25px;

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:#F4C21A;

    color:#1F2D3D;

    font-family:'Poppins',sans-serif;

    font-size:22px;

    font-weight:700;

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

}


/*==================================
PROGRAM CONTENT
===================================*/

.program-feature-content{

    max-width:540px;

}


.program-feature-label{

    display:inline-block;

    margin-bottom:15px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    color:#1F6E8C;

}


.program-feature-content h2{

    margin:0 0 15px;

    font-family:'Poppins',sans-serif;

    font-size:48px;

    font-weight:700;

    line-height:1.15;

    color:#1F2D3D;

}


.program-feature-content h2 span{

    display:block;

    color:#1F6E8C;

}


.program-feature-content .about-divider{

    margin:20px 0 25px;

}


.program-feature-content > p{

    margin-bottom:25px;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:31px;

    color:#5F6B73;

}


/*==================================
PROGRAM LIST
===================================*/

.program-feature-content ul{

    list-style:none;

    padding:0;

    margin:0;

}


.program-feature-content li{

    display:flex;

    align-items:center;

    gap:13px;

    margin-bottom:15px;

    font-family:'Open Sans',sans-serif;

    font-size:15px;

    font-weight:600;

    color:#245D6E;

}


.program-feature-content li i{

    width:27px;

    height:27px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#FFF8E5;

    color:#D69E00;

    font-size:12px;

}


/*==================================
REVERSED PROGRAM
===================================*/

.program-feature-reverse
.program-feature-grid{

    direction:rtl;

}


.program-feature-reverse
.program-feature-grid > *{

    direction:ltr;

}



/*==================================
DECORATIVE SHAPES
===================================*/

.program-feature::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(31,110,140,.08),
            transparent 70%
        );

    top:-100px;

    right:-80px;

    pointer-events:none;

}


.program-feature-reverse::before{

    left:-80px;

    right:auto;

    background:
        radial-gradient(
            circle,
            rgba(244,194,26,.10),
            transparent 70%
        );

}



/*==================================
PROGRAM CTA
===================================*/

.program-page-cta{

    position:relative;

    padding:110px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244,194,26,.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255,255,255,.08),
            transparent 30%
        ),
        #1F6E8C;

    overflow:hidden;

    text-align:center;

}


.program-page-cta-content{

    position:relative;

    z-index:5;

    max-width:820px;

    margin:auto;

}


.program-page-cta-content > span{

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

}


.program-page-cta h2{

    margin:20px 0;

    font-family:'Poppins',sans-serif;

    font-size:48px;

    font-weight:700;

    line-height:1.2;

    color:#fff;

}


.program-page-cta h2 strong{

    display:block;

    color:#F4C21A;

}


.program-page-cta p{

    max-width:650px;

    margin:0 auto 30px;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:30px;

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

}


.program-cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}



/*==================================
PROGRAMS PAGE RESPONSIVE
===================================*/

@media(max-width:992px){

    .program-page-hero h1{

        font-size:48px;

    }


    .program-feature-grid{

        grid-template-columns:1fr;

        gap:50px;

    }


    .program-feature-reverse
    .program-feature-grid{

        direction:ltr;

    }


    .program-feature-image{

        height:450px;

    }


    .program-feature-content{

        max-width:700px;

    }

}


@media(max-width:768px){

    .program-page-hero{

        min-height:500px;

    }


    .program-page-hero-content{

        margin-top:80px;

    }


    .program-page-hero h1{

        font-size:38px;

    }


    .program-page-hero p{

        font-size:16px;

        line-height:28px;

    }


    .program-intro{

        padding:75px 0 60px;

    }


    .program-intro-heading h2{

        font-size:34px;

    }


    .program-feature{

        padding:75px 0;

    }


    .program-feature-image{

        height:350px;

        border-radius:25px;

    }


    .program-number{

        width:58px;

        height:58px;

        border-radius:18px;

        font-size:18px;

    }


    .program-feature-content h2{

        font-size:36px;

    }


    .program-feature-content > p{

        font-size:16px;

        line-height:28px;

    }


    .program-page-cta{

        padding:80px 20px;

    }


    .program-page-cta h2{

        font-size:35px;

    }

}
/*==================================
ELEGANT FOOTER SEPARATOR
===================================*/

.footer-top{
    position:relative;
    border-bottom:1px solid rgba(244,194,26,.35);
}

.footer-top::after{
    content:"";
    position:absolute;

    bottom:-6px;
    left:50%;

    width:12px;
    height:12px;

    background:#F4C21A;

    transform:translateX(-50%) rotate(45deg);

    box-shadow:
        0 0 0 5px #1F6E8C;
}
/*====================================================
GALLERY PAGE
====================================================*/

.gallery-section{
    padding:100px 0;
    background:#FCFBF8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-auto-rows:250px;
    gap:18px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.gallery-hero{

    position:relative;

    min-height:520px;

    margin:0;

    padding:180px 0 90px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        linear-gradient(
            rgba(20,45,60,.70),
            rgba(20,45,60,.74)
        ),
        url("images/gallery1.jpg")
        center center / cover no-repeat;

}

/* ============================================================
   ROLAK FOUNDATION — MOBILE RESPONSIVE FIX
   Added as a final override layer so the existing desktop design
   and sections that already work on mobile remain intact.
   ============================================================ */

html, body{
    max-width:100%;
    overflow-x:hidden;
}

*, *::before, *::after{
    box-sizing:border-box;
}

img, video, iframe{
    max-width:100%;
}

/* ---------- TABLET ---------- */
@media (max-width: 991px){

    .container{
        width:92%;
        max-width:1200px;
    }

    /* Header / navigation */
    .topbar .container{
        min-height:42px;
        gap:10px;
    }

    header{
        top:42px;
    }

    nav{
        min-height:76px;
        height:auto;
        padding:10px 18px;
        gap:12px;
        flex-wrap:wrap;
    }

    .logo{
        padding:7px 12px;
    }

    .logo img,
    header.sticky .logo img{
        width:125px;
        height:auto;
    }

    nav ul{
        order:3;
        width:100%;
        justify-content:center;
        gap:24px;
        padding:5px 0 3px;
        flex-wrap:wrap;
    }

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

    .donate-btn{
        padding:11px 20px;
        font-size:14px;
    }

    /* Hero */
    .hero{
        min-height:auto;
        padding:190px 0 75px;
    }

    .hero-wrapper{
        flex-direction:column;
        text-align:center;
        gap:35px;
    }

    .hero-left,
    .hero-right{
        width:100%;
        max-width:100%;
    }

    .hero h1{
        font-size:46px;
        line-height:1.12;
    }

    .hero h1 span{
        font-size:68px;
        line-height:1.05;
    }

    .hero p{
        max-width:700px;
        margin:0 auto 30px;
        font-size:16px;
        line-height:28px;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:12px;
    }

    /* General section spacing */
    section{
        max-width:100%;
    }

    /* About / story two-column layouts */
    .about-story-wrapper,
    .mission-about,
    .why-wrapper,
    .contact-wrapper{
        grid-template-columns:1fr;
        flex-direction:column;
        gap:40px;
    }

    .about-story-image img{
        height:420px;
    }

    /* Mission cards */
    .mission-card{
        grid-template-columns:repeat(2,1fr);
    }

    /* Impact */
    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* Why we exist */
    .why-section{
        min-height:auto;
        padding:90px 0;
        background-attachment:scroll;
    }

    .why-content{
        max-width:850px;
    }

    .why-content h2{
        font-size:44px;
    }

    .why-content > p{
        font-size:16px;
        line-height:29px;
    }

    .why-list{
        flex-wrap:wrap;
        justify-content:center;
    }

    /* Leadership / team */
    .leadership-grid,
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* Gallery */
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:220px;
    }

    .gallery-item.large{
        grid-column:span 2;
        grid-row:span 1;
    }

    .gallery-track img{
        width:210px;
        height:155px;
    }

    /* Success stories */
    .success-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    /* Programs */
    .program-feature-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .program-feature-image{
        height:430px;
    }

    .program-feature-content{
        max-width:100%;
    }

    /* Contact */
    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:40px 30px;
    }

    .contact-cta h2{
        font-size:40px;
    }

}

/* ---------- PHONE ---------- */
@media (max-width: 768px){

    .container{
        width:92%;
    }

    /* Top bar */
    .topbar{
        height:auto;
    }

    .topbar .container{
        justify-content:center;
        padding:7px 0;
    }

    .topbar .left{
        justify-content:center;
        flex-wrap:wrap;
        gap:5px 14px;
        font-size:11px;
    }

    .topbar .right{
        display:none;
    }

    header{
        top:39px;
    }

    /* Mobile-friendly two-row navigation without changing HTML */
    nav{
        width:100%;
        padding:8px 12px;
        border-radius:12px;
        justify-content:space-between;
    }

    header.sticky nav{
        height:auto;
        min-height:72px;
    }

    .logo{
        padding:6px 9px;
        border-radius:10px;
    }

    .logo img,
    header.sticky .logo img{
        width:105px;
    }

    nav .donate-btn{
        padding:9px 14px;
        font-size:12px;
        border-width:1.5px;
    }

    nav ul{
        display:flex;
        width:100%;
        order:3;
        gap:0;
        justify-content:space-between;
        flex-wrap:nowrap;
        overflow-x:auto;
        overflow-y:hidden;
        scrollbar-width:none;
        -ms-overflow-style:none;
        padding:7px 2px 2px;
    }

    nav ul::-webkit-scrollbar{
        display:none;
    }

    nav ul li{
        flex:0 0 auto;
    }

    nav ul li a{
        display:block;
        padding:5px 7px;
        font-size:12px;
        white-space:nowrap;
    }

    /* Hero */
    .hero{
        padding:205px 0 60px;
    }

    .hero-wrapper{
        gap:25px;
    }

    .hero h1{
        font-size:35px;
        line-height:1.15;
    }

    .hero h1 span{
        font-size:50px;
        line-height:1.05;
    }

    .hero p{
        font-size:15px;
        line-height:26px;
        margin-bottom:25px;
    }

    .hero-buttons,
    .hero-left > .donate-btn{
        width:100%;
    }

    .hero-left > .donate-btn{
        max-width:280px;
        margin:7px auto;
    }

    /* About video */
    .about-video{
        min-height:520px;
    }

    .about-video-card{
        padding:35px 22px;
        width:100%;
    }

    .about-video-card h2{
        font-size:34px;
        line-height:1.18;
    }

    /* Common headings */
    .section-heading h2,
    .section-title h2{
        font-size:34px;
        line-height:1.2;
    }

    .section-heading p,
    .section-title p{
        font-size:15px;
        line-height:26px;
    }

    .section-badge{
        padding:8px 17px;
        font-size:11px;
        letter-spacing:1.5px;
    }

    /* Mission */
    .mission-about,
    .about-story-wrapper,
    .why-wrapper{
        gap:30px;
    }

    .mission-card{
        grid-template-columns:1fr;
        gap:25px;
    }

    .mission-text h2,
    .about-story-content h2{
        font-size:34px;
    }

    .mission-item h3{
        font-size:21px;
    }

    .mission-item p,
    .about-story-content p{
        font-size:15px;
        line-height:26px;
    }

    .about-story-image img{
        height:330px;
        border-radius:18px;
    }

    /* Story / mission / vision */
    .smv-section{
        padding:75px 0;
        background-attachment:scroll;
    }

    /* Impact */
    .impact-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .impact-card h3{
        font-size:42px;
    }

    .impact-card p{
        font-size:15px;
    }

    /* Why */
    .why-section{
        padding:75px 0;
        background-attachment:scroll;
    }

    .why-content h2{
        font-size:34px;
    }

    .why-content > p{
        font-size:15px;
        line-height:26px;
    }

    .why-list{
        display:grid;
        grid-template-columns:1fr;
        gap:12px;
    }

    /* Leadership / Team */
    .leadership-grid,
    .team-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .leadership-card,
    .team-card{
        width:100%;
        max-width:430px;
        margin:0 auto;
    }

    /* Gallery */
    .gallery-section,
    .gallery{
        padding:70px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:240px;
        gap:12px;
    }

    .gallery-item.large{
        grid-column:span 1;
        grid-row:span 1;
    }

    .gallery-track img{
        width:175px;
        height:130px;
    }

    /* Success stories */
    .success-stories{
        padding:75px 0 60px;
    }

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

    .success-heading p{
        font-size:15px;
        line-height:26px;
    }

    .success-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    /* Programs */
    .program-page-hero{
        min-height:520px;
        padding:150px 0 70px;
    }

    .program-page-hero-content{
        margin:70px auto 0;
        width:92%;
    }

    .program-page-hero h1{
        font-size:38px;
    }

    .program-page-hero p{
        font-size:15px;
        line-height:27px;
    }

    .program-intro{
        padding:75px 0 65px;
    }

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

    .program-intro-heading p{
        font-size:15px;
        line-height:27px;
    }

    .program-feature{
        padding:75px 0;
    }

    .program-feature-image{
        height:320px;
        border-radius:22px;
    }

    .program-number{
        width:58px;
        height:58px;
        top:15px;
        left:15px;
        border-radius:16px;
        font-size:18px;
    }

    .program-feature-content h2{
        font-size:34px;
    }

    .program-feature-content > p{
        font-size:15px;
        line-height:27px;
    }

    /* Contact */
    .contact-form-box{
        padding:30px 20px;
    }

    .contact-form-box h3{
        font-size:25px;
    }

    .form-group input,
    .form-group textarea{
        width:100%;
        max-width:100%;
        font-size:14px;
    }

    .contact-submit{
        width:100%;
    }

    .contact-cta{
        padding:75px 20px;
    }

    .contact-cta h2{
        font-size:34px;
    }

    .contact-cta p{
        font-size:15px;
        line-height:26px;
    }

    .contact-cta-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .contact-cta-buttons a,
    .contact-cta-buttons button{
        width:100%;
    }

    /* Footer */
    .footer-top{
        text-align:center;
    }

    .footer-grid,
    .footer-content,
    .footer-columns{
        grid-template-columns:1fr;
        flex-direction:column;
        text-align:center;
    }

    .footer-socials{
        justify-content:center;
    }

}

/* ---------- SMALL PHONES ---------- */
@media (max-width: 480px){

    .container{
        width:94%;
    }

    .topbar .left span{
        font-size:10px;
    }

    nav{
        padding:7px 9px;
    }

    .logo img,
    header.sticky .logo img{
        width:92px;
    }

    nav .donate-btn{
        padding:8px 11px;
        font-size:11px;
    }

    nav ul li a{
        font-size:11px;
        padding:4px 5px;
    }

    .hero{
        padding-top:195px;
    }

    .hero h1{
        font-size:31px;
    }

    .hero h1 span{
        font-size:43px;
    }

    .hero p{
        font-size:14px;
        line-height:24px;
    }

    .hero-left > .donate-btn{
        max-width:100%;
    }

    .about-video-card h2,
    .section-heading h2,
    .section-title h2,
    .mission-text h2,
    .about-story-content h2,
    .why-content h2,
    .success-heading h2,
    .program-intro-heading h2,
    .program-feature-content h2,
    .contact-cta h2{
        font-size:29px;
    }

    .impact-card h3{
        font-size:36px;
    }

    .gallery-grid{
        grid-auto-rows:210px;
    }

    .gallery-track img{
        width:150px;
        height:110px;
    }

    .program-page-hero h1{
        font-size:32px;
    }

    .program-page-hero p{
        font-size:14px;
        line-height:24px;
    }

    .program-feature-image{
        height:280px;
    }

}

/* Prevent long words / URLs from forcing horizontal scrolling. */
body, p, h1, h2, h3, h4, h5, h6, a, li{
    overflow-wrap:break-word;
}

input, textarea, select, button{
    max-width:100%;
}
/* =========================================================
   MOBILE TOPBAR + HEADER + HERO FIX
   ========================================================= */

@media (max-width: 768px) {

    /* =========================
       TOP BAR
       ========================= */

    .topbar {
        position: relative;
        z-index: 1000;
        height: auto;
        padding: 7px 0;
    }

    .topbar .container {
        width: 94%;
        min-height: 26px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .topbar .left {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .topbar .left span {
        font-size: 9px;
        white-space: nowrap;
    }

    .topbar .right {
        display: none;
    }


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

    header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        z-index: 999;
    }

    header .container {
        width: 94%;
        padding: 8px 0;
    }

    nav {
        height: 62px;
        padding: 0 10px;
        border-radius: 12px;
        gap: 7px;
    }

    .logo {
        flex-shrink: 0;
        padding: 5px 7px;
    }

    .logo img {
        width: 38px;
        height: auto;
    }

    nav ul {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        font-size: 9px;
        white-space: nowrap;
    }

    nav > .donate-btn {
        flex-shrink: 0;
        padding: 8px 10px !important;
        min-height: auto !important;
        font-size: 9px !important;
        white-space: nowrap;
    }


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

    .hero {
        min-height: 570px;
        padding: 75px 0 55px;

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-wrapper {
        width: 94%;
        min-height: 440px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .hero-left {
        width: 72%;
        max-width: 500px;
        text-align: left;
    }

    .hero-left .small-title {
        font-size: 9px;
        padding: 7px 12px;
        margin-bottom: 13px;
        letter-spacing: 1.3px;
    }

    .hero-left h1 {
        font-size: 37px;
        line-height: 1.05;
        margin-bottom: 12px;
    }

    .hero-left h1 span {
        font-size: 51px;
        line-height: .95;
        margin-top: 4px;
    }

    .hero-left p {
        max-width: 400px;
        font-size: 12px;
        line-height: 1.6;
        margin: 0 0 20px;
    }


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

    .hero-left a.donate-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;

        height: 38px !important;
        min-height: 38px !important;

        padding: 8px 11px !important;
        margin: 0 4px 6px 0 !important;

        font-size: 9px !important;
        line-height: 1 !important;

        gap: 5px;
        white-space: nowrap;
        border-radius: 30px;
    }

    .hero-left a.donate-btn i {
        font-size: 9px !important;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .topbar {
        padding: 5px 0;
    }

    .topbar .container {
        width: 96%;
        min-height: 22px;
    }

    .topbar .left {
        gap: 7px;
    }

    .topbar .left span {
        font-size: 7px;
    }

    .topbar .left span i {
        font-size: 7px;
    }


    /* HEADER */

    header .container {
        width: 96%;
        padding: 6px 0;
    }

    nav {
        height: 56px;
        padding: 0 7px;
        gap: 5px;
    }

    .logo {
        padding: 4px 5px;
    }

    .logo img {
        width: 33px;
    }

    nav ul {
        gap: 6px;
    }

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

    nav > .donate-btn {
        padding: 7px 7px !important;
        font-size: 7px !important;
    }


    /* HERO */

    .hero {
        min-height: 510px;
        padding: 55px 0 45px;
    }

    .hero-wrapper {
        width: 96%;
        min-height: 400px;
    }

    .hero-left {
        width: 75%;
    }

    .hero-left .small-title {
        font-size: 7px;
        padding: 6px 9px;
        letter-spacing: .8px;
        margin-bottom: 10px;
    }

    .hero-left h1 {
        font-size: 29px;
        line-height: 1.05;
    }

    .hero-left h1 span {
        font-size: 40px;
    }

    .hero-left p {
        max-width: 300px;
        font-size: 10px;
        line-height: 1.55;
        margin-bottom: 16px;
    }


    /* SMALLER HERO BUTTONS */

    .hero-left a.donate-btn {
        height: 34px !important;
        min-height: 34px !important;
        padding: 7px 9px !important;
        margin-right: 3px !important;
        font-size: 8px !important;
        gap: 4px;
    }

    .hero-left a.donate-btn i {
        font-size: 8px !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .topbar .left {
        gap: 5px;
    }

    .topbar .left span {
        font-size: 6.5px;
    }

    header .container {
        padding: 5px 0;
    }

    nav {
        height: 52px;
        padding: 0 5px;
    }

    .logo img {
        width: 30px;
    }

    nav ul {
        gap: 4px;
    }

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

    nav > .donate-btn {
        padding: 6px 5px !important;
        font-size: 6.5px !important;
    }


    /* HERO */

    .hero {
        min-height: 480px;
        padding: 45px 0 40px;
    }

    .hero-wrapper {
        min-height: 370px;
    }

    .hero-left {
        width: 78%;
    }

    .hero-left h1 {
        font-size: 26px;
    }

    .hero-left h1 span {
        font-size: 35px;
    }

    .hero-left p {
        font-size: 9px;
        max-width: 250px;
    }

    .hero-left a.donate-btn {
        height: 31px !important;
        min-height: 31px !important;
        padding: 6px 8px !important;
        font-size: 7px !important;
    }

    .hero-left a.donate-btn i {
        font-size: 7px !important;
    }
}
/* Move hero content higher on desktop */
@media (min-width: 769px) {
    .hero-left {
        transform: translateY(-90px);
    }
    
}
/* Move hero content higher on mobile */
@media (max-width: 768px) {
    .hero-left {
        transform: translateY(-80px);
    }
}
@media (max-width: 768px) {
    .hero-left p {
        position: relative;
        top: 70px;
    }
}
/* Move hero TEXT only higher on mobile */
@media (max-width: 768px) {

    .hero-left .small-title,
    .hero-left h1,
    .hero-left p {
        position: relative;
        top: 40px;
    }

}
@media (max-width: 768px) {
    .hero-left .small-title,
    .hero-left h1 {
        position: relative;
        top: -50px;
    }
}
/* Move ONLY hero buttons down on mobile */
@media (max-width: 768px) {
    .hero-left a.donate-btn {
        position: relative;
        top: 180px;
    }
}
/* ==========================================
   SMALLER ABOUT US CARD - MOBILE
   ========================================== */

@media (max-width: 768px) {

    .about-video-card {
        width: 75%;
        max-width: 360px;
        padding: 25px 20px;
        margin: 0 auto;
    }

}
@media (max-width: 768px) {

    .about-video-card .section-badge {
        font-size: 8px;
        padding: 6px 10px;
    }

    .about-video-card h2 {
        font-size: 25px;
        line-height: 1.1;
        margin: 12px 0;
    }

    .about-video-card p {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

}
/* ==========================================
   ROLAK FOUNDATION LEADERSHIP
   FINAL LAYOUT
========================================== */

.leadership {
    width: 100%;
    padding: 100px 0;
    background: #EAF4F7;
}

.leadership .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* SECTION HEADING */

.leadership .section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.leadership .section-heading h2 {
    font-size: 42px;
    line-height: 1.25;
    margin: 18px 0;
}

.leadership .section-heading h2 span {
    display: block;
    color: var(--primary);
}

.leadership .section-heading p {
    font-size: 17px;
    line-height: 28px;
}


/* ==========================================
   FOUNDER - LARGE
========================================== */

.founder-profile {
    width: 650px !important;
    max-width: 90% !important;
    margin: 0 auto 60px !important;

    background: #ffffff !important;

    border-radius: 30px !important;
    overflow: hidden !important;

    border-top: 7px solid var(--secondary);

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

    text-align: center;
}


/* FOUNDER IMAGE */

.founder-profile .founder-image {
    width: 100% !important;
    height: 550px !important;
    overflow: hidden !important;
}

.founder-profile .founder-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
}


/* FOUNDER TEXT */

.founder-profile .founder-info {
    padding: 30px 50px 40px !important;
}

.founder-profile .founder-info h3 {
    font-size: 32px !important;
    margin: 0 0 10px !important;
}

.founder-profile .founder-info .position {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 20px;

    background: var(--primary);
    color: #fff;

    border-radius: 30px;
}

.founder-profile .founder-info p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 27px !important;
}


/* ==========================================
   TWO OTHER LEADERS
========================================== */

.other-leaders {
    width: 700px !important;
    max-width: 90% !important;

    margin: 0 auto !important;

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

    gap: 35px !important;
}


/* SMALL CARDS */

.small-leader {
    width: 100% !important;

    background: #fff !important;

    border-radius: 24px !important;
    overflow: hidden !important;

    box-shadow: 0 18px 50px rgba(0,0,0,.10);

    text-align: center;
}


/* SMALL IMAGES */

.small-leader-image {
    width: 100% !important;
    height: 300px !important;
    overflow: hidden !important;
}

.small-leader-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    display: block !important;
}


/* SMALL TEXT */

.small-leader-info {
    padding: 22px 20px 28px !important;
}

.small-leader-info h3 {
    font-size: 20px !important;
    margin: 0 0 8px !important;
}

.small-leader-info .position {
    display: inline-block;

    background: var(--primary);
    color: #fff;

    padding: 6px 15px;

    border-radius: 30px;

    font-size: 12px;

    margin-bottom: 15px;
}

.small-leader-info p {
    font-size: 13px !important;
    line-height: 22px !important;
    margin: 0 !important;
}


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

@media (max-width: 768px) {

    .leadership {
        padding: 70px 0;
    }

    .leadership .container {
        width: 92%;
    }

    .leadership .section-heading h2 {
        font-size: 29px;
    }

    .leadership .section-heading p {
        font-size: 14px;
        line-height: 23px;
    }


    /* LARGE FOUNDER */

    .founder-profile {
        width: 92% !important;
        max-width: 430px !important;
    }

    .founder-profile .founder-image {
        height: 420px !important;
    }

    .founder-profile .founder-info {
        padding: 25px 20px 30px !important;
    }

    .founder-profile .founder-info h3 {
        font-size: 24px !important;
    }

    .founder-profile .founder-info p {
        font-size: 13px !important;
        line-height: 22px !important;
    }


    /* TWO SMALLER WOMEN */

    .other-leaders {
        width: 92% !important;
        max-width: 430px !important;

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

        gap: 12px !important;
    }

    .small-leader-image {
        height: 210px !important;
    }

    .small-leader-info {
        padding: 15px 8px 20px !important;
    }

    .small-leader-info h3 {
        font-size: 14px !important;
    }

    .small-leader-info p {
        font-size: 10px !important;
        line-height: 17px !important;
    }

}
/* ==========================================
   LEADERSHIP FINAL BACKGROUND
========================================== */

section.leadership {
    width: 100%;
    padding: 100px 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(31,110,140,.08),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(244,194,26,.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #F8FBFD,
            #EAF4F7
        );
}
/* ==========================================
   LEADERSHIP - TEAL BACKGROUND + SPACING
========================================== */

section.leadership {
    margin-top: 30px !important;
    padding-top: 55px !important;
    padding-bottom: 100px !important;

    position: relative;
    overflow: hidden;

    background: #087F8C !important;
}


/* TEAL STICKY BACKGROUND */

section.leadership::before {
    content: "";

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

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            rgba(5, 111, 123, .88),
            rgba(8, 127, 140, .94)
        ),
        url("images/founder.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    z-index: 0;
}


/* CONTENT ABOVE BACKGROUND */

section.leadership .container {
    position: relative;
    z-index: 2;
}


/* MAKE THE HEADING WORK WITH TEAL */

section.leadership .section-heading h2 {
    color: #ffffff !important;
}

section.leadership .section-heading h2 span {
    color: #F4C21A !important;
}

section.leadership .section-heading p {
    color: rgba(255,255,255,.90) !important;
}

section.leadership .section-badge {
    color: #ffffff !important;
}
/* ==========================================
   LEADERSHIP STICKY BACKGROUND
========================================== */

section.leadership {
    position: relative !important;
    overflow: hidden !important;
    background: #087F8C !important;
}


/* FIXED FOUNDER IMAGE */

section.leadership::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: url("images/founder.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    /* THIS creates the fixed/sticky effect */
    background-attachment: fixed;

    opacity: .20;

    z-index: 0;
}


/* TEAL OVERLAY */

section.leadership::after {
    content: "";
    position: absolute;

    inset: 0;

    background: rgba(0, 112, 125, .78);

    z-index: 1;
}


/* CONTENT ABOVE BOTH LAYERS */

section.leadership .container {
    position: relative !important;
    z-index: 2 !important;
}
/* Leadership badge text */
section.leadership .section-badge {
    color: #087F8C !important;
    background: #ffffff !important;
}
/* Leadership badge - yellow text */
section.leadership .section-badge {
    color: #F4C21A !important;
    background: #ffffff !important;
}
/* ==========================================
   ROLAK IMPACT SECTION BACKGROUND
========================================== */

.impact {
    background-image:
        linear-gradient(
            rgba(8, 127, 140, 0.35),
            rgba(8, 127, 140, 0.45)
        ),
        url("../images/rolak-impact-section.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    animation: none;
}
/* ==========================================
   STORY • MISSION • VISION
   MOBILE RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .smv-section {
        padding: 75px 0 70px;
        background-position: center center;
    }

    .smv-section .container {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Heading */
    .smv-heading {
        max-width: 100%;
        margin: 0 auto 40px;
        padding: 0 5px;
    }

    .smv-heading span {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .smv-heading h2 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .smv-heading p {
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

    /* Cards become one column */
    .smv-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    /* Cards */
    .smv-card {
        width: 100%;
        box-sizing: border-box;
        padding: 32px 24px;
        border-radius: 18px;
    }

    /* Prevent hover movement on mobile */
    .smv-card:hover {
        transform: none;
    }

    /* Icons */
    .smv-card-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 17px;
        font-size: 21px;
    }

    /* Card titles */
    .smv-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    /* Card text */
    .smv-card p {
        font-size: 15px;
        line-height: 1.75;
    }

    /* Read more */
    .read-more-btn {
        font-size: 13px;
        margin-top: 14px;
        padding: 5px 10px;
    }

    /* Expanded content */
    .smv-more {
        margin-top: 5px;
    }

    .smv-more p {
        margin-top: 12px;
        line-height: 1.75;
    }
}


/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 480px) {

    .smv-section {
        padding: 65px 0 60px;
    }

    .smv-section .container {
        width: 92%;
    }

    .smv-heading {
        margin-bottom: 32px;
    }

    .smv-heading h2 {
        font-size: 27px;
    }

    .smv-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .smv-wrapper {
        gap: 18px;
    }

    .smv-card {
        padding: 28px 20px;
        border-radius: 17px;
    }

    .smv-card h3 {
        font-size: 21px;
    }

    .smv-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}
/*====================================================
OUR IMPACT AREAS — MOBILE RESPONSIVE
====================================================*/

@media (max-width: 768px){

    /*--------------------------------
    MAIN IMPACT SHOWCASE
    --------------------------------*/

    .impact-showcase{
        padding:50px 0 0;
        overflow:hidden;
    }

    .impact-container{
        width:92%;
        display:flex;
        flex-direction:column;
        margin:0 auto;
    }


    /*--------------------------------
    BLUE CONTENT PANEL
    --------------------------------*/

    .impact-left{
        width:100%;
        padding:55px 25px 60px;
        border-radius:28px 28px 0 0;
        box-sizing:border-box;
    }

    .impact-content{
        width:100%;
        margin:0 auto;
    }

    .impact-tag{
        font-size:12px;
        letter-spacing:1.5px;
        margin-bottom:18px;
    }

    .impact-left h2{
        font-size:38px;
        line-height:1.15;
        margin-bottom:15px;
    }

    .impact-left h2 span{
        font-size:52px;
        line-height:1.15;
        margin-top:6px;
    }

    .impact-line{
        width:65px;
        height:4px;
        margin:20px auto;
    }

    .impact-left p{
        max-width:100%;
        font-size:16px;
        line-height:1.75;
        text-align:center;
        margin-bottom:30px;
    }

    .impact-btn{
        font-size:14px;
        padding:13px 18px;
    }


    /*--------------------------------
    DECORATIVE DOTS
    --------------------------------*/

    .dots-top{
        top:20px;
        left:12px;
        width:60px;
        height:60px;
        background-size:14px 14px;
    }

    .dots-bottom{
        bottom:20px;
        right:15px;
        width:60px;
        height:60px;
        background-size:14px 14px;
    }


    /*--------------------------------
    IMAGE
    --------------------------------*/

    .impact-image{
        width:100%;
        height:300px;
        margin-left:0;
        border-radius:0 0 28px 28px;
    }

    .impact-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        border-radius:0 0 28px 28px;
    }

    .impact-image::before{
        border:4px solid #F4C21A;
        border-radius:0 0 28px 28px;
    }


    /*--------------------------------
    IMPACT READ MORE SECTION
    --------------------------------*/

    .impact-readmore{
        margin-top:0;
        padding:45px 0 70px;
    }

    .impact-readmore .container{
        width:92%;
    }

    .impact-rm-grid{
        width:100%;
        grid-template-columns:1fr;
        gap:22px;
    }


    /*--------------------------------
    IMPACT CARD
    --------------------------------*/

    .impact-rm-card{
        width:100%;
        box-sizing:border-box;
        padding:30px 22px;
        border-radius:22px;
    }

    .impact-rm-icon{
        width:75px;
        height:75px;
        margin-bottom:18px;
    }

    .impact-rm-icon i{
        font-size:30px;
    }

    .impact-rm-card h3{
        font-size:21px;
        margin-bottom:12px;
    }

    .impact-rm-summary{
        font-size:15px;
        line-height:1.75;
    }

    .impact-rm-details p{
        font-size:14px;
        line-height:1.75;
    }

    .impact-rm-toggle{
        font-size:13px;
        padding:11px 24px;
    }

}/* =========================================================
   ROLAK FOUNDATION
   CORE FOCUS SECTION
   ========================================================= */

.core-focus {
    position: relative;

    width: 100%;

    min-height: 680px;

    padding: 100px 0;

    overflow: hidden;

    isolation: isolate;

    background: #174e58;
}

/* =========================================================
   VIDEO BACKGROUND — 16:9 LANDSCAPE
   ========================================================= */

.core-focus-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: -3;

    background: #174e58;
}


/* =========================================================
   16:9 VIDEO
   ========================================================= */
.core-focus-video video {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: auto;

    transform: translate(-50%, -50%);

    display: block;

    filter: none;

    object-fit: contain;
}

/* =========================================================
   VIDEO OVERLAY
   ========================================================= */

.core-focus-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}

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

.core-focus-content {
    position: relative;

    z-index: 2;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.core-focus-heading {
    max-width: 850px;

    margin: 0 auto 50px;

    text-align: center;
}


/* SMALL TITLE */

.core-focus-heading .section-badge {
    display: inline-block;

    margin-bottom: 15px;

    color: #e2bd3d;
}


/* MAIN TITLE */

.core-focus-heading h2 {
    margin: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}


/* GOLD TITLE */

.core-focus-heading h2 span {
    color: #e2bd3d;
}


/* DESCRIPTION */

.core-focus-heading p {
    max-width: 800px;

    margin: 20px auto 0;

    font-family: 'Open Sans', sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.94);
}


/* DIVIDER */

.core-focus-heading .about-divider {
    margin: 20px auto;
}


/* =========================================================
   FOCUS CARDS
   ========================================================= */

.focus-content {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

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

    gap: 25px;
}


/* =========================================================
   INDIVIDUAL CARD
   ========================================================= */

.focus-item {
    padding: 35px 28px;

    background:
        rgba(255, 255, 255, 0.95);

    border-radius: 18px;

    text-align: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.55);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* CARD HOVER */

.focus-item:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.25);
}


/* =========================================================
   ICON
   ========================================================= */

.focus-icon {
    width: 68px;
    height: 68px;

    margin:
        0 auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #287b86,
            #d8b83f
        );

    box-shadow:
        0 8px 20px
        rgba(40, 123, 134, 0.25);
}


/* ICON */

.focus-icon i {
    color: #ffffff;

    font-size: 25px;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.focus-text h3 {
    margin:
        0 0 10px;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 20px;

    font-weight: 600;

    color: #285b68;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.focus-text p {
    margin: 0;

    font-family:
        'Open Sans',
        sans-serif;

    font-size: 15px;

    line-height: 1.7;

    color: #5f6c72;
}


/* =========================================================
   COMMITMENT
   ========================================================= */

.focus-commitment {
    max-width: 900px;

    margin:
        30px auto 0;

    padding:
        18px 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    background:
        rgba(255, 255, 255, 0.94);

    border-radius: 12px;

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


/* COMMITMENT ICON */

.focus-commitment i {
    flex-shrink: 0;

    font-size: 22px;

    color: #d8b83f;
}


/* COMMITMENT TEXT */

.focus-commitment p {
    margin: 0;

    font-family:
        'Open Sans',
        sans-serif;

    font-size: 15px;

    line-height: 1.6;

    color: #53636b;
}


/* COMMITMENT BOLD */

.focus-commitment strong {
    color: #285b68;
}


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

@media (max-width: 900px) {

    .core-focus {

        min-height: auto;

        padding:
            80px 20px;
    }


    .core-focus-heading h2 {

        font-size: 34px;
    }


    .core-focus-heading p {

        font-size: 15px;
    }


    .focus-content {

        grid-template-columns:
            1fr;

        max-width: 600px;

        gap: 20px;
    }

}


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

@media (max-width: 600px) {

    .core-focus {

        padding:
            65px 15px;

        min-height: auto;
    }


    /*
       MOBILE USES THE NATURAL VERTICAL
       VIDEO FORMAT.
    */

    .core-focus-video video {

        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position:
            center center;

        transform:
            translate(-50%, -50%);
    }


    /*
       Stronger overlay on mobile so
       text remains readable.
    */

    .core-focus-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(20, 72, 80, 0.62),
                rgba(20, 72, 80, 0.52),
                rgba(0, 0, 0, 0.50)
            );
    }


}
/*====================================================
IMPACT SECTION — CLEAR IMAGE / REMOVE COLOR OVERLAY
====================================================*/

/* Main impact section */
.impact-showcase {
    position: relative;
    overflow: hidden;
}

/* Make sure the image is visible */
.impact-image {
    position: relative;
    overflow: hidden;
}

/* Image itself */
.impact-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 1;
}

/* REMOVE ANY COLOUR OVERLAY */
.impact-image::after,
.impact-image::before {
    background: transparent !important;
}

/* If an overlay element exists */
.impact-overlay,
.impact-image-overlay,
.impact-bg-overlay {
    background: transparent !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Keep image above background layers */
.impact-image img {
    opacity: 1 !important;
    filter: none !important;
}

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

@media (max-width: 768px) {

    .impact-image {
        width: 100%;
        height: 300px;
        margin-left: 0;
        border-radius: 0 0 28px 28px;
        overflow: hidden;
    }

    .impact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        border-radius: 0 0 28px 28px;
    }

    /* Remove mobile overlay too */
    .impact-image::before,
    .impact-image::after {
        background: transparent !important;
        opacity: 0 !important;
    }

    .impact-overlay,
    .impact-image-overlay,
    .impact-bg-overlay {
        display: none !important;
    }
}
/*====================================================
LEADERSHIP — FOUNDER + CO-DIRECTORS
====================================================*/

.leadership {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}


/*==================================
FOUNDER PROFILE
===================================*/

.founder-profile {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0,0,0,0.10);
}


.founder-image {
    min-height: 560px;
    overflow: hidden;
}


.founder-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}


.founder-info {
    padding: 55px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.founder-info .position {
    display: inline-block;
    color: #F4C21A;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}


.founder-info h3 {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    line-height: 1.2;
    margin: 0;
    color: #123F45;
}


.founder-divider {
    width: 65px;
    height: 4px;
    background: #F4C21A;
    margin: 20px 0 25px;
}


.founder-info p {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 15px;
}

/*=========================================
ROLAK FOUNDATION
Premium NGO Website
Version 1.0
=========================================*/

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

/*=========================
ROOT COLORS
==========================*/

:root{

--primary:#087F8C;        /* Teal from logo */
--secondary:#F6C54F;      /* Gold */
--accent:#F6C54F;         /* Orange */
--purple:#7B2CBF;         /* Purple */
--dark:#245D6E;
--light:#FCFBF8;
--white:#ffffff;
--text:#245D6E;

--shadow:0 20px 60px rgba(31,110,140,.10);

--radius:22px;


}


/*=========================
RESET
==========================*/

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Open Sans',sans-serif;
background:#fff;
color:var(--text);
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1320px;
margin:auto;

}


/*=========================
TOP BAR
==========================*/

.topbar{

background:var(--primary);
color:#fff;
padding:10px 0;
font-size:14px;

}

.topbar .container{

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

}

.topbar .left{

display:flex;
gap:30px;

}

.topbar .left span{

display:flex;
align-items:center;
gap:8px;

}

.topbar .right{

display:flex;
gap:15px;

}

.topbar .right a{

width:35px;
height:35px;
border-radius:50%;
background:rgba(255,255,255,.12);

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

color:#fff;

transition:.4s;

}

.topbar .right a:hover{

background:var(--secondary);

}


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

header{

position:fixed;

top:50px;

left:0;

width:100%;

z-index:999;

transition:.4s;

}

nav{

display:flex;

justify-content:space-between;

align-items:center;

height:95px;

padding:0 35px;

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

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

border-radius:18px;

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

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.4s ease;

}
/*=========================
LOGO
==========================*/

.logo{

display:flex;

align-items:center;

background:#fff;

padding:10px 18px;

border-radius:15px;

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

transition:.4s;

}

.logo img{

width:50px;

height:auto;

display:block;

transition:.4s ease;

}

header.sticky .logo img{

width:165px;




}

nav ul{

display:flex;

gap:40px;

}

nav ul li a{

font-family:'Poppins';

font-weight:600;

font-size:16px;

color:#245D6E;

position:relative;

transition:.35s ease;



}

nav ul li a:after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:var(--secondary);

transition:.4s;

}

nav ul li a:hover:after{

width:100%;

}

nav ul li a:hover{

color:var(--secondary);

}

nav ul li a.active{

    color: var(--secondary);

    font-weight:700;

}

nav ul li a.active::after{

    width:100%;

}
/*=========================
BUTTON
==========================*/
/*=========================
BUTTON
==========================*/

/*=========================
DONATE BUTTON
==========================*/

.donate-btn{

display:inline-flex;

align-items:center;

justify-content:center;

gap:10px;

padding:15px 35px;

background:transparent;

color:var(--secondary);

border:2px solid var(--secondary);

border-radius:50px;

font-family:'Poppins',sans-serif;

font-weight:600;

font-size:16px;

transition:.35s ease;

}

.donate-btn i{

width:34px;

height:34px;

display:flex;

align-items:center;

justify-content:center;

border:2px solid var(--secondary);

border-radius:50%;

font-size:15px;

color:var(--secondary);

transition:.35s ease;

}

.donate-btn:hover{

background:var(--secondary);

color:#fff;

transform:translateY(-3px);

box-shadow:0 15px 30px rgba(244,194,26,.35);

}

.donate-btn:hover i{

color:#fff;

border-color:#fff;

}



/*=========================
VOLUNTEER BUTTON
==========================*/

.volunteer-btn{

display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;

padding:14px 28px;

background:transparent;

color:var(--secondary);

border:2px solid var(--secondary);

border-radius:50px;

font-family:'Poppins',sans-serif;
font-weight:600;
font-size:16px;

transition:.35s;

}

.volunteer-btn i{

font-size:18px;

color:var(--secondary);

transition:.35s;

}

.volunteer-btn:hover{

background:var(--secondary);

color:#fff;

transform:translateY(-3px);

}

.volunteer-btn:hover i{

color:#fff;

}


/*=========================
HERO
=========================*/
.hero{

position:relative;

padding:180px 0 140px;

min-height:600px;

display:flex;

align-items:center;

overflow:hidden;

/* Background image */

background-image:
linear-gradient(
90deg,
rgba(255,255,255,.75) 0%,
rgba(255,255,255,.60) 30%,
rgba(255,255,255,.30) 55%,
rgba(255,255,255,.08) 75%,
rgba(255,255,255,0) 100%
),
url("../images/hero.png");

background-size:cover;

background-position:center center;

background-repeat:no-repeat;



}

.hero-wrapper{

display:flex;

align-items:center;

min-height:600px;


}

.hero-left{

width:52%;

max-width:650px;

z-index:5;



}




.small-title{

display:inline-block;

background:#E8F5FB;

color:#0B5E8A;

padding:12px 22px;

border-radius:40px;

font-size:13px;

font-weight:700;

letter-spacing:2px;

margin-bottom:25px;

}

.hero h1{

font-family:'Poppins',sans-serif;

font-size:72px;

font-weight:800;

line-height:1.05;

color:#245D6E;

margin-bottom:15px;

}

.hero h1 span{

display:block;

font-family:'Great Vibes',cursive;

font-size:96px;

font-weight:400;

color:#F4C21A;

line-height:.95;

margin-top:10px;




}

.hero p{

font-size:18px;

line-height:34px;

margin-bottom:40px;

max-width:550px;

}

.hero-buttons{

display:flex;

gap:20px;

}
.header-section::after{

    content:"";

    display:block;

    width:120px;

    height:5px;

    margin:0 auto;

    background:linear-gradient(
        90deg,
        #1F6E8C,
        #F4C21A
    );

    border-radius:50px;

}

.about{

    margin-top:50px;

}
.hero-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: #ffffff;
}
/*=================================
ABOUT HERO
==================================*/

.about-hero{

    position:relative;

    min-height:80vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url("../images/about-hero.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.about-overlay{

    position:absolute;

    inset:0;

}

.about-hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    padding-top:270px;

}

.about-hero-content h1{

    font-family:'Poppins';

    font-size:40px;

    font-weight:600;

    line-height:1.10;

    color:#fff;

    margin:10px 0;

}

.about-hero-content h1 span{

    display:block;

    font-family:'Great Vibes',cursive;

    font-size:80px;

    color:var(--secondary);

    margin-top:10px;

}

.about-hero .hero-small{

    color:#fff;

}

.about-hero .hero-description{

    color:#fff;

    max-width:720px;

    margin:0 auto 40px;

    line-height:34px;

}

.about-hero .hero-buttons{

    justify-content:center;

}

/*=========================
ABOUT HERO IMAGE
==========================*/

.about-hero-image{

    height:520px;

    background:url("../images/about-hero.jpg") center center/cover no-repeat;

}

/*=========================
ABOUT INTRO CARD
==========================*/

.about-card{

    position:relative;

    width:90%;

    max-width:700px;

    margin:auto;

    margin-top:-20px;

    padding:18px 35px;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

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

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

    z-index:7;

}
.about-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            rgba(255,255,255,.82),
            rgba(255,255,255,.82)
        ),
        url("../images/kids.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    opacity:.9;

    z-index:0;

}

/* Keep card contents above background */

.about-card>*{

    position:relative;

    z-index:2;

}


/* Card paragraph */

.about-card p{

    font-family:'Poppins', sans-serif;

    font-size:18px;

    font-weight:400;

    line-height:1.8;

    color:#245D6E;

    max-width:760px;

    margin:0 auto 30px;

    letter-spacing:.2px;

}


/* Buttons container */

.about-card .hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    margin-top:10px;

    flex-wrap:wrap;

}


/* Both buttons */

.about-card .hero-buttons a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:120px;

    padding:10px 15px;

    border-radius:40px;

    text-decoration:none;

    font-family:'Poppins', sans-serif;

    font-size:15px;

    font-weight:600;

    transition:.3s ease;

}


/* Get Involved */

.about-card .hero-buttons .primary{

    background:#f3f3f1;

    color:#F6C54F;

    border:2px solid #F6C54F;

}


/* Get Involved hover */

.about-card .hero-buttons .primary:hover{

    background:#F6C54F;

    border-color:#F6C54F;

    color:#f8f8f7;

    transform:translateY(-3px);

}


/* Back Home */

.about-card .hero-buttons .secondary{

    background:#fff;

    color:#F6C54F;

    border:2px solid #F6C54F;

}


/* Back Home hover */

.about-card .hero-buttons .secondary:hover{

    background:#F6C54F;

    color:#fff;

    transform:translateY(-3px);



}

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

.mission{

    margin-top:-70px;

    position:relative;

    z-index:50;

    padding:110px 0;

    background:#F8FBFD;

}

/*====================================================
ABOUT FOUNDATION
====================================================*/

.mission-about{

    display:grid;

    grid-template-columns:45% 55%;

    gap:60px;

    align-items:center;

    margin-bottom:80px;

}

.mission-image img{

    width:100%;

    height:430px;

    object-fit:cover;

    border-radius:28px;

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

}

.mission-text span{

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-weight:700;

    font-size:14px;

    letter-spacing:2px;

}

.mission-text h2{

    margin:18px 0 22px;

    font-family:'Poppins',sans-serif;

    font-size:46px;

    line-height:1.25;

    color:#1F2D3D;

}

.mission-text h2 span{

    color:#1F6E8C;

    font-size:inherit;

    letter-spacing:0;

}

.mission-text p{

    color:#5F6B73;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:32px;

    margin-bottom:35px;

}

.mission-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 35px;

    border:2px solid #F4C21A;

    border-radius:50px;

    background:#ffffff;

    color:#1F6E8C;

    text-decoration:none;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    transition:.35s;

}

.mission-btn:hover{

    background:#F4C21A;

    color:#1F2D3D;

}

/*====================================================
HEADING
====================================================*/

.mission-heading{

    text-align:center;

    max-width:820px;

    margin:0 auto 55px;

}

.mission-heading span{

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

}

.mission-heading h2{

    margin:18px 0;

    font-size:42px;

    font-family:'Poppins',sans-serif;

    color:#1F2D3D;

}

.mission-heading h2 span{

    color:#1F6E8C;

    font-size:inherit;

    letter-spacing:0;

}

.mission-title-line{

    width:80px;

    height:4px;

    background:#F4C21A;

    margin:20px auto;

    border-radius:50px;

}

.mission-heading p{

    color:#5F6B73;

    line-height:30px;

    font-size:17px;

    font-family:'Open Sans',sans-serif;

}/*=========================================
HERO → ABOUT SEPARATOR
=========================================*/

.about-video{

    position:relative;

    height:720px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    margin-top:45px;

}


/* BRAND SEPARATOR */

.about-video::before{

    content:"";

    position:absolute;

    top:0;

    left:50%;

    transform:translateX(-50%);

    width:150px;

    height:5px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        #1F6E8C 0%,
        #F4C21A 50%,
        #1F6E8C 100%
    );

    z-index:50;

}
/*====================================================
ABOUT US VIDEO
====================================================*/

.about-video{
    

    position:relative;

    height:720px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.about-video-bg{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.about-video-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(31,45,61,.65),
    rgba(31,45,61,.55));

}

.about-video .container{

    position:relative;

    z-index:5;

    display:flex;

    justify-content:center;

}
.about-video-card{

    width:100%;
    max-width:540px;

    background:#ffffff;

    padding:28px 35px;

    border-radius:22px;

    text-align:center;

    margin:auto;

    box-shadow:0 20px 55px rgba(0,0,0,.15);

    border:1px solid rgba(36,93,110,.08);

    transition:.35s ease;

}

.about-video-card h2{

    font-family:'Poppins',sans-serif;

    font-size:36px;

    line-height:1.2;

    margin-bottom:15px;

    color:#245D6E;

}

.about-video-card h2 span{

    display:block;

    color:#F6C54F;}

.about-video-card p{

    font-size:15px;

    line-height:28px;

    color:#245D6E;

    margin-bottom:20px;


}


/*=================================
LUXURY GOLD DIVIDER
==================================*/

.luxury-divider{

    position:relative;

    width:100%;

    max-width:500px;

    height:60px;


    margin:18px auto;


}

/* Left Line */

.luxury-divider::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    width:42%;

    height:2px;

    background:linear-gradient(
        to right,
        transparent,
        #F4C21A
    );

    transform:translateY(-50%);

}

/* Right Line */

.luxury-divider::after{

    content:"";

    position:absolute;

    right:0;

    top:50%;

    width:42%;

    height:2px;

    background:linear-gradient(
        to left,
        transparent,
        #F4C21A
    );

    transform:translateY(-50%);

}

/* Diamond */

.luxury-divider .diamond{

    position:absolute;

    left:50%;

    top:50%;

    width:24px;

    height:24px;

    transform:translate(-50%,-50%) rotate(45deg);

    border:3px solid #F4C21A;

    background:#ffffff;

    box-shadow:
        0 0 0 6px #ffffff;

}

/* Inner Diamond */



/* Gold Dots */

.luxury-divider .diamond::after{

    content:"";

    position:absolute;

    top:50%;

    left:50%;

    width:80px;

    height:8px;

    transform:translate(-50%,-50%) rotate(-45deg);

    background:
        radial-gradient(circle,#F4C21A 4px,transparent 5px) left center no-repeat,
        radial-gradient(circle,#F4C21A 4px,transparent 5px) right center no-repeat;

    background-size:10px 10px;

    pointer-events:none;

}

.about-video-card p{

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:34px;

    color:#5F6B73;

    margin-bottom:35px;

}
.about-video-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:15px 34px;

    border-radius:45px;

    background:#fdfdfd;

    color:#F4C21A;

    text-decoration:none;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    transition:.35s;

}

.about-video-btn:hover{

    background:#F6C54F;

    color:#245D6E;

    transform:translateY(-5px);

}

.about-video-btn i{

    transition:.35s;

}

.about-video-btn:hover i{

    transform:translateX(6px);

}

@media(max-width:768px){

.about-video{

height:650px;

}

.about-video-card{

width:95%;

padding:35px 25px;

}

.about-video-card h2{

font-size:36px;

}

.about-video-card p{

font-size:16px;

line-height:30px;

}

}/* =========================================================
   ROLAK FOUNDATION — FOUR PILLARS
   BACKGROUND + HEADING ONLY
   CARDS ARE NOT TOUCHED
========================================================= */


/* =========================================================
   MAIN TEAL BACKGROUND
========================================================= */

.pillars-section {
    position: relative !important;
    width: 100% !important;

    background:
        linear-gradient(
            135deg,
            #005C65 0%,
            #007985 48%,
            #008C95 100%
        ) !important;

    padding: 110px 0 120px !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.pillars-section::before {
    content: "" !important;

    position: absolute !important;

    width: 420px !important;
    height: 420px !important;

    top: -210px !important;
    left: -210px !important;

    border: 1px solid rgba(244,194,26,0.18) !important;

    border-radius: 50% !important;

    background: transparent !important;

    pointer-events: none !important;
}


.pillars-section::after {
    content: "" !important;

    position: absolute !important;

    width: 500px !important;
    height: 500px !important;

    right: -250px !important;
    bottom: -250px !important;

    border: 1px solid rgba(255,255,255,0.12) !important;

    border-radius: 50% !important;

    background: transparent !important;

    pointer-events: none !important;
}


/* =========================================================
   CONTAINER
========================================================= */

.pillars-section > .container,
.pillars-section .container {
    position: relative !important;

    z-index: 5 !important;

    width: 90% !important;
    max-width: 1280px !important;

    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;
}

/* =========================================================
   FOUR PILLARS — TITLE BADGE
   PILL-STYLE DESIGN
   CARDS ARE NOT TOUCHED
========================================================= */

.pillars-section .section-heading > span {

    display: inline-block !important;

    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    margin: 0 auto 25px !important;

    padding: 10px 25px !important;

    box-sizing: border-box !important;

    background: #FFF6DA !important;

    color: #D39B00 !important;

    border: none !important;

    border-radius: 50px !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: 14px !important;

    font-weight: 600 !important;

    letter-spacing: 0.5px !important;

    line-height: 1.4 !important;

    text-align: center !important;

    text-transform: uppercase !important;

    white-space: nowrap !important;

    overflow: visible !important;

    box-shadow: none !important;
}


/* =========================================================
   PREVENT GLOBAL SPAN STYLES
   FROM TURNING BADGE INTO A CIRCLE
========================================================= */

.pillars-section .section-heading > span * {

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #D39B00 !important;

    border: none !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: inherit !important;
    font-weight: 600 !important;

    line-height: inherit !important;

    letter-spacing: inherit !important;

    text-align: center !important;
}


/* =========================================================
   MAIN FOUR PILLARS HEADING
========================================================= */

.pillars-section .section-heading h2 {

    display: block !important;

    width: 100% !important;

    margin: 0 auto 18px !important;

    padding: 0 !important;

    background: transparent !important;

    color: #FFFFFF !important;

    font-family: 'Poppins', sans-serif !important;

    font-size: 46px !important;

    font-weight: 700 !important;

    line-height: 1.2 !important;

    letter-spacing: normal !important;

    text-align: center !important;

    text-transform: none !important;

    white-space: normal !important;
}


/* =========================================================
   YELLOW HEADING HIGHLIGHT
========================================================= */

.pillars-section .section-heading h2 span {

    display: inline !important;

    width: auto !important;
    height: auto !important;

    min-width: 0 !important;
    min-height: 0 !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;

    color: #F4C21A !important;

    border: none !important;

    border-radius: 0 !important;

    box-shadow: none !important;

    font-family: inherit !important;

    font-size: inherit !important;

    font-weight: 700 !important;

    line-height: inherit !important;

    letter-spacing: normal !important;

    text-transform: none !important;
}


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

@media (max-width: 768px) {

    .pillars-section .section-heading > span {

        display: inline-block !important;

        width: auto !important;

        height: auto !important;

        min-width: 0 !important;
        min-height: 0 !important;

        max-width: 90% !important;
        max-height: none !important;

        margin: 0 auto 20px !important;

        padding: 9px 20px !important;

        font-size: 12px !important;

        letter-spacing: 0.5px !important;

        line-height: 1.4 !important;

        white-space: nowrap !important;
    }

    .pillars-section .section-heading h2 {

        font-size: 36px !important;

        line-height: 1.25 !important;
    }
}


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

@media (max-width: 480px) {

    .pillars-section .section-heading > span {

        padding: 8px 18px !important;

        font-size: 11px !important;

        margin-bottom: 18px !important;
    }

    .pillars-section .section-heading h2 {

        font-size: 31px !important;

        line-height: 1.25 !important;
    }
}
/* =========================================================
   DIVIDER
========================================================= */

.pillars-section .about-divider {
    position: relative !important;

    display: block !important;

    width: 75px !important;
    height: 4px !important;

    margin: 23px auto 26px !important;
    padding: 0 !important;

    background: #F4C21A !important;

    border: none !important;
    border-radius: 50px !important;
}


.pillars-section .about-divider::before,
.pillars-section .about-divider::after {
    content: "" !important;

    position: absolute !important;

    top: 50% !important;

    width: 7px !important;
    height: 7px !important;

    background: #F4C21A !important;

    border-radius: 50% !important;

    transform: translateY(-50%) !important;
}


.pillars-section .about-divider::before {
    left: -15px !important;
}


.pillars-section .about-divider::after {
    right: -15px !important;
}


/* =========================================================
   HEADING DESCRIPTION
========================================================= */

.pillars-section .section-heading p {
    display: block !important;

    width: 100% !important;
    max-width: 760px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    background: transparent !important;

    color: rgba(255,255,255,0.88) !important;

    font-family: 'Open Sans', sans-serif !important;

    font-size: 16px !important;
    font-weight: 400 !important;

    line-height: 1.85 !important;

    text-align: center !important;
}


/* =========================================================
   IMPORTANT:
   DO NOT STYLE .pillar-card HERE.
   YOUR ORIGINAL CARD CSS REMAINS UNCHANGED.
========================================================= */


/* =========================================================
   MOBILE — BACKGROUND + HEADING ONLY
========================================================= */

@media (max-width:768px) {

    .pillars-section {
        padding: 75px 0 85px !important;

        background:
            linear-gradient(
                145deg,
                #005C65 0%,
                #007985 50%,
                #008C95 100%
            ) !important;
    }


    .pillars-section::before {
        width: 250px !important;
        height: 250px !important;

        top: -125px !important;
        left: -125px !important;
    }


    .pillars-section::after {
        width: 300px !important;
        height: 300px !important;

        right: -150px !important;
        bottom: -150px !important;
    }


    .pillars-section .container {
        width: 92% !important;
    }


    .pillars-section .section-heading {
        max-width: 100% !important;

        margin-bottom: 50px !important;
    }


    .pillars-section .section-heading > span {
        width: 95px !important;
        min-width: 95px !important;
        max-width: 95px !important;

        height: 95px !important;
        min-height: 95px !important;
        max-height: 95px !important;

        margin: 0 auto 20px !important;

        padding: 12px !important;

        font-size: 10px !important;

        letter-spacing: 1.5px !important;
        line-height: 1.4 !important;
    }


    .pillars-section .section-heading h2 {
        font-size: 36px !important;

        line-height: 1.25 !important;

        color: #FFFFFF !important;
    }


    .pillars-section .section-heading p {
        font-size: 15px !important;

        line-height: 1.75 !important;

        color: rgba(255,255,255,0.88) !important;
    }
}


/* =========================================================
   SMALL MOBILE — HEADING ONLY
========================================================= */

@media (max-width:480px) {

    .pillars-section {
        padding: 65px 0 75px !important;
    }


    .pillars-section .section-heading > span {
        width: 85px !important;
        min-width: 85px !important;
        max-width: 85px !important;

        height: 85px !important;
        min-height: 85px !important;
        max-height: 85px !important;

        margin: 0 auto 18px !important;

        padding: 10px !important;

        font-size: 9px !important;

        letter-spacing: 1.2px !important;
    }


    .pillars-section .section-heading h2 {
        font-size: 31px !important;

        line-height: 1.25 !important;
    }


    .pillars-section .about-divider {
        width: 60px !important;
        height: 3px !important;
    }
}
/* =========================================================
   ROLAK FOUNDATION — FOUR PILLARS
   SLIDE-IN ANIMATION ONLY
   DOES NOT CHANGE CARD DESIGN
========================================================= */


/* =========================================================
   CARD DEFAULT STATE
   Cards remain visible before animation is activated
========================================================= */

.pillars-section .pillar-card {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity 0.85s ease,
        transform 0.9s cubic-bezier(.22, 1, .36, 1);
}


/* =========================================================
   SLIDE-IN ACTIVATION
   JavaScript adds .cards-ready to the section
========================================================= */


/* ODD CARDS — COME FROM LEFT */

.pillars-section.cards-ready .pillar-card:nth-child(odd) {
    opacity: 0;
    transform: translateX(-140px);
}


/* EVEN CARDS — COME FROM RIGHT */

.pillars-section.cards-ready .pillar-card:nth-child(even) {
    opacity: 0;
    transform: translateX(140px);
}


/* =========================================================
   VISIBLE STATE
   JavaScript adds .is-visible to each card
========================================================= */

.pillars-section.cards-ready .pillar-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   STAGGER
   Each card enters slightly after the previous one
========================================================= */

.pillars-section.cards-ready .pillar-card:nth-child(1) {
    transition-delay: 0.05s;
}

.pillars-section.cards-ready .pillar-card:nth-child(2) {
    transition-delay: 0.18s;
}

.pillars-section.cards-ready .pillar-card:nth-child(3) {
    transition-delay: 0.31s;
}

.pillars-section.cards-ready .pillar-card:nth-child(4) {
    transition-delay: 0.44s;
}


/* =========================================================
   MOBILE
   Alternating cards still enter from outside
========================================================= */

@media (max-width: 768px) {

    .pillars-section.cards-ready .pillar-card:nth-child(odd) {
        opacity: 0;
        transform: translateX(-80px);
    }

    .pillars-section.cards-ready .pillar-card:nth-child(even) {
        opacity: 0;
        transform: translateX(80px);
    }

    .pillars-section.cards-ready .pillar-card.is-visible {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .pillars-section .pillar-card,
    .pillars-section.cards-ready .pillar-card,
    .pillars-section.cards-ready .pillar-card.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* =========================================================
   STORY • MISSION • VISION
========================================================= */

.smv-section {

    position:
        relative;

    padding:
        110px 0;

    background-image:
        url("../images/our-story.jpg");

    background-size:
        cover;

    background-position:
        center;

    background-repeat:
        no-repeat;

    overflow:
        hidden;
}


.smv-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(31,45,61,.68);
}


.smv-section .container {

    position:
        relative;

    z-index:
        2;
}


.smv-heading {

    text-align:
        center;

    max-width:
        750px;

    margin:
        0 auto 55px;
}


.smv-heading span {

    display:
        block;

    color:
        #F4C21A;

    font-family:
        'Poppins',sans-serif;

    font-size:
        14px;

    font-weight:
        700;

    letter-spacing:
        3px;

    margin-bottom:
        12px;
}


.smv-heading h2 {

    color:
        #fff;

    font-family:
        'Poppins',sans-serif;

    font-size:
        42px;

    font-weight:
        700;

    line-height:
        1.2;

    margin-bottom:
        15px;
}


.smv-heading h2 strong {

    color:
        #F4C21A;
}


.smv-heading p {

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

    font-family:
        'Open Sans',sans-serif;

    font-size:
        16px;
}


.smv-wrapper {

    display:
        grid;

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

    gap:
        25px;
}


.smv-card {

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

    padding:
        35px 30px;

    border-radius:
        20px;

    text-align:
        center;

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

    transition:
        .35s ease;
}


.smv-card:hover {

    transform:
        translateY(-8px);
}


.smv-card-icon {

    width:
        58px;

    height:
        58px;

    margin:
        0 auto 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        #E8F5FB;

    color:
        #1F6E8C;

    font-size:
        22px;
}


.smv-card h3 {

    font-family:
        'Poppins',sans-serif;

    font-size:
        24px;

    color:
        #1F6E8C;

    margin-bottom:
        15px;
}


.smv-card p {

    font-family:
        'Open Sans',sans-serif;

    font-size:
        15px;

    line-height:
        1.7;

    color:
        #5F6B73;
}


.smv-more {

    display:
        none;

    margin-top:
        5px;
}


.smv-more p {

    margin-top:
        10px;
}


.read-more-btn {

    border:
        none;

    background:
        none;

    color:
        #1F6E8C;

    font-family:
        'Poppins',sans-serif;

    font-size:
        13px;

    font-weight:
        700;

    cursor:
        pointer;

    margin-top:
        12px;
}


.read-more-btn i {

    margin-left:
        6px;

    transition:
        .3s ease;
}


.smv-card.expanded
.smv-more {

    display:
        block;
}


.smv-card.expanded
.read-more-btn i {

    transform:
        rotate(180deg);
}


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

@media (max-width:900px) {

    .smv-wrapper {

        grid-template-columns:
            1fr;
    }


    .smv-heading h2 {

        font-size:
            36px;
    }
}


@media (max-width:768px) {

    .smv-section {

        padding:
            75px 0;
    }


    .smv-heading {

        width:
            92%;

        margin:
            0 auto 45px;
    }


    .smv-heading h2 {

        font-size:
            32px;
    }


    .smv-heading p {

        font-size:
            15px;

        line-height:
            1.7;
    }


    .smv-card {

        padding:
            32px 25px;
    }
}


@media (max-width:480px) {

    .smv-section {

        padding:
            65px 0;
    }


    .smv-heading h2 {

        font-size:
            29px;
    }


    .smv-heading span {

        font-size:
            12px;

        letter-spacing:
            2px;
    }


    .smv-card {

        padding:
            30px 22px;

        border-radius:
            18px;
    }


    .smv-card h3 {

        font-size:
            21px;
    }


    .smv-card p {

        font-size:
            14px;
    }
}
/*====================================================
OUR IMPACT SHOWCASE FOR ABOUT US
====================================================*/

.impact-showcase{

    padding:80px 0 0;

    background:#FCFBF8;

    position:relative;

    overflow:visible;



}
/*=========================
IMPACT CONTAINER
==========================*/


.impact-container{

    width:90%;

    max-width:1280px;

    margin:0 auto;

    display:flex;

    align-items:stretch;

    position:relative;

    overflow:visible;

    padding:0;



}

/*=========================
LEFT PANEL
==========================*/

.impact-left{

    width:56%;

    background:#1F6E8C;

    padding:80px 70px;

    border-radius:35px;

    position:relative;

    z-index:3;


}.impact-content{

    position:relative;

    z-index:10;

    width:78%;

    margin:auto;

    text-align:center;

}

.impact-content h2{

    font-size:56px;

    line-height:1.2;

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-weight:700;

    margin-bottom:25px;

}

.impact-line{

    width:90px;

    height:4px;

    background:#F4C21A;

    border-radius:30px;

    margin:25px auto;

}

.impact-content p{

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

    font-size:18px;

    line-height:1.9;

    max-width:520px;

    margin:0 auto 40px;

    text-align:center;

}





/* everything above wave */

.impact-left>*{

    position:relative;

    z-index:5;

}

.impact-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#F4C21A;

    font-weight:700;

    letter-spacing:2px;

    font-size:15px;

    margin-bottom:25px;

    font-family:'Poppins',sans-serif;

}

.impact-tag i{

    color:#F4C21A;

}

.impact-left h2{

    font-size:62px;

    line-height:1.08;

    color:#fff;

    font-family:'Poppins',sans-serif;

    margin-bottom:15px;

}

.impact-left h2 span{

    display:block;

    color:#F4C21A;

    font-size:74px;

    font-family:'Great Vibes',cursive;

    font-weight:400;

    margin-top:10px;

}

.impact-line{

    width:90px;

    height:5px;

    background:#F4C21A;

    border-radius:20px;

    margin:25px 0;

}

.impact-left p{

    max-width:470px;

    line-height:1.9;

    font-size:19px;

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

}

/*=========================
IMPACT BUTTON
==========================*/

.impact-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:15px 20px;

    background:#ffffff;

    color:#1F6E8C;

    border:2px solid #F4C21A;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    transition:.35s ease;

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

}

.impact-btn i{

    transition:.35s ease;

}

.impact-btn:hover{

    background:#F4C21A;

    color:#1F6E8C;

    transform:translateY(-3px);

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

}

.impact-btn:hover i{

    transform:translateX(6px);

}

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

.impact-image{

    width:48%;

    margin-left:-70px;

    position:relative;

    z-index:2;

    overflow:hidden;

    border-radius:35px;

}

.impact-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    border-radius:

    140px 35px 35px 140px;

    transition:.6s;

}
.impact-image::before{

    content:"";

    position:absolute;

    inset:0;

    border:5px solid #F4C21A;

    border-radius:

    140px 35px 35px 140px;

    pointer-events:none;

    z-index:4;

}
.impact-container:hover img{

    transform:scale(1.08);

}

/*=========================
DOTS
==========================*/

.impact-dots{

    position:absolute;

    width:90px;

    height:90px;

    background-image:radial-gradient(#F4C21A 2px, transparent 2px);

    background-size:18px 18px;

    opacity:.9;

}

.dots-top{

    top:45px;

    left:25px;

}

.dots-bottom{

    bottom:35px;

    right:120px;

}

/*=========================
CARDS
==========================*/
/*====================================================
PREMIUM IMPACT CARDS
====================================================*/

.impact-cards{

    width:90%;
    max-width:1280px;
    margin:-140px auto 0;

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

    position:relative;
    z-index:50;

    
}
.impact-cards{
    width:90%;
    max-width:1280px;
    margin:-110px auto 0;

    position:relative;
    left:-20px;   /* Move the whole row left */
}
.impact-card{

    position:relative;
    overflow:visible;

    background:#fff;

    padding:75px 30px 35px;

    border-radius:28px;

    text-align:center;

    transition:.45s ease;

    box-shadow:
        0 20px 45px rgba(0,0,0,.08);

    border-top:6px solid #F4C21A;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

}

.impact-card:hover{

    transform:translateY(-18px);

    box-shadow:
        0 35px 65px rgba(31,110,140,.18);

}

.impact-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:28px;

    border:1px solid rgba(31,110,140,.08);

    pointer-events:none;

}

/* Floating Icon */

.impact-icon{

    position:absolute;

    top:-45px;
    left:50%;

    transform:translateX(-50%);

    width:92px;
    height:92px;

    border-radius:50%;

    background:#fff;

    border:6px solid #F4C21A;

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

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

    transition:.4s;

}

.impact-card:hover .impact-icon{

    transform:translateX(-50%) scale(1.08) rotate(8deg);

}

.impact-icon i{

    font-size:38px;
    color:#1F6E8C;

}

/* Number */

.impact-number{

    font-size:54px;

    font-weight:700;

    color:#1F6E8C;

    margin-bottom:5px;

    font-family:'Poppins',sans-serif;

}

/* Title */

.impact-card h3{

    font-size:25px;

    color:#1F2D3D;

    margin-bottom:18px;

    font-family:'Poppins',sans-serif;

}

/* Gold Line */

.card-line{

    width:70px;
    height:4px;

    background:#F4C21A;

    border-radius:50px;

    margin:0 auto 22px;

}

/* Description */

.impact-card p{

    color:#5F6B73;

    line-height:1.9;

    font-size:16px;

}

/* Button */

.impact-card a{

    margin-top:auto;

    display:inline-flex;

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

    gap:10px;

    text-decoration:none;

    color:#1F6E8C;

    font-weight:600;

    transition:.3s;

}

.impact-card a:hover{

    color:#F4C21A;


}/*====================================================
ROLAK FOUNDATION
IMPACT READ MORE
====================================================*/
/*====================================================
IMPACT READ MORE POSITION
====================================================*/
.impact-readmore{

    position:relative;

    width:100%;

    margin-top:-80px;

    padding:0 0 100px;

    background:#FCFBF8;

    z-index:30;



}
.impact-readmore .container{

    width:90%;

    max-width:1280px;

    margin:0 auto;

    padding:0;

    position:relative;

    display:block;

}


/*=========================
GRID
=========================*/
.impact-rm-grid{

    width:100%;

    display:grid;

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

    gap:28px;

    justify-content:center;

    align-items:start;

}

/*=========================
CARD
=========================*/

.impact-rm-card{

    background:#ffffff;

    border-radius:24px;

    padding:35px 30px;

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

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    position:relative;

    overflow:hidden;

    border-top:5px solid #F4C21A;

}

.impact-rm-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 55px rgba(31,110,140,.15);

}

/*=========================
TOP ANIMATION
=========================*/

.impact-rm-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:5px;

    background:#1F6E8C;

    transition:.45s;

}

.impact-rm-card:hover::before{

    width:100%;

}

/*=========================
ICON
=========================*/

.impact-rm-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#EEF7FA;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 24px;

    transition:.35s;

}

.impact-rm-card:hover .impact-rm-icon{

    transform:scale(1.08);

}

.impact-rm-icon i{

    font-size:38px;

    color:#1F6E8C;

}

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

.impact-rm-card h3{

    font-family:'Poppins',sans-serif;

    font-size:24px;

    color:#1F2D3D;

    text-align:center;

    margin-bottom:15px;

}

/*=========================
LINE
=========================*/

.impact-rm-line{

    width:60px;

    height:4px;

    background:#F4C21A;

    border-radius:30px;

    margin:0 auto 20px;

}

/*=========================
SUMMARY
=========================*/

.impact-rm-summary{

    font-family:'Open Sans',sans-serif;

    color:#5F6B73;

    text-align:center;

    line-height:1.8;

    font-size:16px;

}

/*=========================
DETAILS
=========================*/

.impact-rm-details{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.impact-rm-details p{

    margin-top:22px;

    font-family:'Open Sans',sans-serif;

    color:#5F6B73;

    line-height:1.9;

    font-size:15px;

}

/*=========================
ACTIVE CARD
=========================*/

.impact-rm-card.active .impact-rm-details{

    max-height:260px;

}

/*=========================
BUTTON
=========================*/

.impact-rm-toggle{

    margin-top:auto;

    margin-left:auto;

    margin-right:auto;

    margin-top:10px;

    padding:13px 30px;

    border-radius:40px;

    border:2px solid #F4C21A;

    background:#ffffff;

    color:#1F6E8C;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s;

}

.impact-rm-toggle:hover{

    background:#F4C21A;

    color:#1F2D3D;

}

.impact-rm-toggle i{

    transition:.35s;

}

.impact-rm-card.active .impact-rm-toggle i{

    transform:rotate(180deg);

}

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

@media(max-width:992px){

.impact-rm-grid{

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

}

}

/*=========================
PHONE
=========================*/

@media(max-width:768px){

.impact-rm-grid{

grid-template-columns:1fr;

}

.impact-rm-card{

padding:30px 24px;

}

}
/*=================================
MISSION HIGHLIGHTS
==================================*/

.mission{

margin-top:-70px;

position:relative;

z-index:50;

}

.mission-card{

background:#fff;

padding:45px 35px;

border-radius:28px;

display:grid;

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

gap:25px;

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

}

.mission-item{

text-align:center;

padding:20px;

transition:.35s ease;

border-radius:20px;

}

.mission-item:hover{

transform:translateY(-8px);

background:#F8FBFD;

}

.mission-item i{

width:80px;

height:80px;

display:flex;

align-items:center;

justify-content:center;

margin:auto;

margin-bottom:22px;

border-radius:50%;

font-size:32px;

background:linear-gradient(135deg,var(--primary),var(--secondary));

color:#fff;

box-shadow:0 12px 30px rgba(31,110,140,.25);

}

.mission-item h3{

font-family:'Poppins',sans-serif;

font-size:22px;

font-weight:700;

color:var(--dark);

margin-bottom:12px;

}

.mission-item p{

font-size:16px;

line-height:28px;

color:var(--text);

}

/*=================================
PREMIUM IMPACT SECTION HOME
==================================*/

/*=========================
IMPACT HOME
==========================*/

.impact{

position:relative;

padding:130px 0;

overflow:hidden;

background:linear-gradient(
-45deg,
#087F8C,
#2A7FA3,
#245D6E,
#F4C21A
);

background-size:400% 400%;

animation:gradientMove 18s ease infinite;




}
.impact::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:300%;

height:220px;

background:url("../images/wave.svg") repeat-x;

background-size:900px 220px;

opacity:.18;

animation:waveMove 28s linear infinite;

}

.impact::after{

content:"";

position:absolute;

left:0;

bottom:20px;

width:300%;

height:180px;

background:url("../images/wave.svg") repeat-x;

background-size:700px 180px;

opacity:.08;

animation:waveMoveReverse 40s linear infinite;

}
.impact .container{

position:relative;

z-index:5;

}
/*=========================
ANIMATIONS
==========================*/

@keyframes gradientMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}

@keyframes waveMove{

from{

transform:translateX(0);

}

to{

transform:translateX(-900px);

}

}

@keyframes waveMoveReverse{

from{

transform:translateX(-700px);

}

to{

transform:translateX(0);

}

}
/* Moving Waves */

.impact::before{

content:"";

position:absolute;

left:0;

bottom:0;

width:200%;

height:180px;

background:url("../images/wave.svg") repeat-x;

background-size:1200px 180px;

opacity:.18;

animation:waveMove 18s linear infinite;

}

.impact::after{

content:"";

position:absolute;

left:0;

bottom:25px;

width:200%;

height:150px;

background:url("../images/wave.svg") repeat-x;

background-size:900px 150px;

opacity:.10;

animation:waveMoveReverse 24s linear infinite;

}
.impact .section-title{

position:relative;

z-index:5;

text-align:center;

max-width:760px;

margin:0 auto 80px;

}

.impact .section-title span{

display:inline-block;

padding:12px 26px;

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

backdrop-filter:blur(8px);

border-radius:40px;

font-family:'Poppins';

font-size:14px;

font-weight:700;

letter-spacing:2px;

color:#F4C21A;

margin-bottom:20px;

}

.impact .section-title h2{

font-family:'Poppins';

font-size:54px;

font-weight:800;

color:#fff;

margin-bottom:20px;

}

.impact .section-title p{

font-size:18px;

line-height:34px;

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


}

.impact-grid{

position:relative;

z-index:5;

display:grid;

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

gap:35px;

}

.impact-card{

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

backdrop-filter:blur(18px);

-webkit-backdrop-filter:blur(18px);

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

padding:45px 30px;

border-radius:25px;

text-align:center;

transition:.4s;

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

color:#fff;

}

.impact-card:hover{

transform:translateY(-12px);

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



}
.impact-card .icon{

width:90px;

height:90px;

margin:auto;

margin-bottom:28px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:linear-gradient(
135deg,
#F4C21A,
#F28C28
);

font-size:38px;

color:#fff;

box-shadow:0 20px 35px rgba(244,194,26,.35);

transition:.4s;

}

.impact-card:hover .icon{

transform:rotate(10deg) scale(1.08);

}

.impact-card h3{

font-family:'Poppins';

font-size:50px;

font-weight:800;

color:#fff;

margin-bottom:10px;

}

.impact-card p{

font-size:18px;

font-weight:600;

color:#F5F5F5;

}

@keyframes gradientMove{

0%{

background-position:0% 50%;

}

50%{

background-position:100% 50%;

}

100%{

background-position:0% 50%;

}

}
@keyframes waveMove{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

@keyframes waveMoveReverse{

0%{

transform:translateX(-50%);

}

100%{

transform:translateX(0);

}

}
@media(max-width:991px){

.impact-grid{

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

}

}

@media(max-width:650px){

.impact-grid{

grid-template-columns:1fr;

}

.impact .section-title h2{

font-size:40px;

}

}
@media(max-width:991px){

.impact-grid{

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

}

}

@media(max-width:600px){

.impact-grid{

grid-template-columns:1fr;

}

}

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

header.sticky{

top:0;

background:#fff;

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

}

header.sticky nav{

background:#ffffff;

border:none;

border-radius:0;

height:85px;

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



}

header.sticky nav ul li a{

color:var(--dark);

}

header.sticky .logo img{

width:145px;

}


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

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

@media (max-width:991px){

.hero{

padding:150px 0 80px;

}

.hero-wrapper{

flex-direction:column;

text-align:center;

}

.hero-left,
.hero-right{

width:100%;

}

.hero p{

margin:auto;

margin-bottom:35px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero h1{

font-size:46px;

line-height:56px;

}

.hero-right{

margin-top:40px;

}

.impact-grid{

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

}

.why-wrapper{

flex-direction:column;

}

.program-grid{

grid-template-columns:1fr;

}



}
@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}/* ==========================
WHY WE EXIST
STICKY BACKGROUND IMAGE
========================== */

.why-section{

    position:relative;

    padding:120px 0;

    min-height:700px;

    background-image:
        linear-gradient(
            rgba(31,110,140,.78),
            rgba(31,45,61,.90)
        ),
        url("../images/why-image.jpg");

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    overflow:hidden;

}


/* ==========================
CONTAINER
========================== */

.why-container{

    width:90%;

    max-width:1200px;

    margin:auto;

    position:relative;

    z-index:2;

}


/* ==========================
REMOVE OLD IMAGE COLUMN
========================== */

.why-image{

    display:none;

}


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

.why-content{

    max-width:850px;

    margin:0 auto;

    text-align:center;

}


/* ==========================
BADGE
========================== */

.section-badge{

    display:inline-block;

    padding:10px 25px;

    background:#FFF6DA;

    color:#D39B00;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-weight:600;

    font-size:14px;

    margin-bottom:25px;

}


/* ==========================
HEADING
========================== */

.why-content h2{

    font-family:'Poppins',sans-serif;

    font-size:52px;

    line-height:1.2;

    margin-bottom:25px;

    color:#ffffff;

}


.why-content h2 span{

    display:block;

    color:#F4C21A;

}


/* ==========================
DESCRIPTION
========================== */

.why-content > p{

    font-family:'Open Sans',sans-serif;

    font-size:18px;

    line-height:32px;

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

    max-width:800px;

    margin:0 auto 22px;

}


/* ==========================
WHY LIST
========================== */

.why-list{

    display:flex;

    flex-direction:column;

    gap:22px;

    max-width:750px;

    margin:35px auto;

    text-align:left;

}


/* ==========================
WHY ITEM
========================== */

.why-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}


/* ==========================
ICON
========================== */

.why-item i{

    color:#F4C21A;

    font-size:25px;

    margin-top:5px;

    min-width:28px;

}


/* ==========================
ITEM TITLE
========================== */

.why-item strong{

    font-family:'Poppins',sans-serif;

    font-size:20px;

    color:#ffffff;

    display:block;

    margin-bottom:7px;

}


/* ==========================
ITEM TEXT
========================== */

.why-item p{

    margin:0;

    font-family:'Open Sans',sans-serif;

    font-size:16px;

    line-height:28px;

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

}


/* ==========================
SUBTLE OVERLAY EFFECT
========================== */

.why-section::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244,194,26,.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255,255,255,.08),
            transparent 30%
        );

    pointer-events:none;

}


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

@media(max-width:992px){

    .why-section{

        padding:100px 0;

        background-attachment:scroll;

    }

}


/* ==========================
PHONE
========================== */

@media(max-width:768px){

    .why-section{

        padding:80px 0;

        min-height:auto;

        background-attachment:scroll;

    }


    .why-content h2{

        font-size:36px;

    }


    .why-content > p{

        font-size:16px;

        line-height:28px;

    }


    .why-list{

        gap:20px;

    }


    .why-item strong{

        font-size:18px;

    }

}


/* Decorative background */

.programs{

    position:relative;

    overflow:hidden;

    padding:130px 0;

    background:linear-gradient(
        180deg,
        #FCFBF8 0%,
        #F8FBFD 100%
    );


}
/*==================================
LUXURY FLOATING BUBBLES
==================================*/

.programs::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(36,93,110,.22) 0%,
        rgba(36,93,110,.12) 45%,
        transparent 75%
    );

    top:-260px;

    left:-250px;

    animation:floatBubble1 18s ease-in-out infinite;

}

.programs::after{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(246,197,79,.25) 0%,
        rgba(246,197,79,.15) 45%,
        transparent 75%
    );

    bottom:-180px;

    right:-180px;

    animation:floatBubble2 15s ease-in-out infinite;


}
.program-bubble{

    position:absolute;

    border-radius:50%;

    pointer-events:none;

    animation:floatBubble 12s ease-in-out infinite;

    filter:blur(2px);

}

.bubble-one{

    width:180px;

    height:180px;

    background:rgba(36,93,110,.18);

    top:120px;

    right:8%;

}

.bubble-two{

    width:110px;

    height:110px;

    background:rgba(246,197,79,.25);

    left:6%;

    bottom:140px;

    animation-delay:2s;

}

.bubble-three{

    width:240px;

    height:240px;

    background:rgba(36,93,110,.12);

    right:28%;

    bottom:40px;

    animation-delay:4s;

}

.bubble-four{

    width:140px;

    height:140px;

    background:rgba(246,197,79,.20);

    top:60px;

    left:42%;

    animation-delay:6s;


}
@keyframes floatBubble{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-25px);

    }

    100%{

        transform:translateY(0px);

    }

}

@keyframes floatBubble1{

    0%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(30px,-30px);

    }

    100%{

        transform:translate(0,0);

    }

}

@keyframes floatBubble2{

    0%{

        transform:translate(0,0);

    }

    50%{

        transform:translate(-35px,25px);

    }

    100%{

        transform:translate(0,0);

    }

}
.programs::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(31,110,140,.05);

    bottom:-150px;

    left:-120px;

}

/*=========================
HEADING
=/*=========================================
PROGRAM SECTION HEADING
=========================================*/

.programs .section-title{

    width:100%;

    max-width:900px;

    margin:0 auto 75px;

    padding-top:145px;

    text-align:center;

    position:relative;

    z-index:5;

}


/*=========================================
PROGRAM LABEL
=========================================*/

.program-label{

    display:flex;

    width:max-content;

    align-items:center;

    justify-content:center;

    padding:10px 26px;

    margin:0 auto 22px;

    background:#FFF8E5;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#D69E00;

}


/*=========================================
PROGRAM HEADING
=========================================*/

.programs-heading{

    width:100%;

    text-align:center;

}


.programs-heading h2{

    width:100%;

    margin:0 auto 20px;

    text-align:center;

    font-family:'Poppins',sans-serif;

    font-size:52px;

    font-weight:700;

    line-height:1.18;

    color:#245D6E;

}


.programs-heading h2 span{

    display:block;

    text-align:center;

    color:#F6C54F;

}


/*=========================================
DIVIDER
=========================================*/

.programs-heading .about-divider{

    margin:25px auto;

}


/*=========================================
DESCRIPTION
=========================================*/

.programs-heading p{

    width:100%;

    max-width:760px;

    margin:25px auto 0;

    text-align:center;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:30px;

    color:#5F6B73;

}
/*=========================================
WHITE PANEL
=========================================*/

.program-grid{

    background:#ffffff;

    border-radius:40px;

    padding:60px;

    display:grid;

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

    gap:35px;

    position:relative;

    z-index:5;

    box-shadow:
        0 30px 80px rgba(0,0,0,.08);


}

/*=========================
CARD
==========================*/

.program-card{

    background:linear-gradient(
        160deg,
        #ffffff,
        #F8FBFD
    );

    border-radius:28px;

    padding:50px 40px;

    text-align:center;

    display:flex;

    flex-direction:column;

    align-items:center;

    border:1px solid rgba(31,110,140,.08);

    box-shadow:0 18px 45px rgba(31,110,140,.08);

    transition:.45s ease;

    position:relative;

    overflow:hidden;

}

/* Animated top line */

.program-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:5px;

    background:linear-gradient(
        90deg,
        #1F6E8C,
        #F4C21A
    );

    transition:.45s;

}

.program-card:hover::before{

    width:100%;

}

.program-card:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 65px rgba(31,110,140,.16);

}

/*=========================
ICON
==========================*/

.program-icon{

    width:95px;

    height:95px;

    margin:0 auto 28px;

    border-radius:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #1F6E8C,
        #3A8AAA,
        #F4C21A
    );

    color:#fff;

    font-size:36px;

    box-shadow:0 18px 35px rgba(31,110,140,.20);

    transition:.45s;

}

.program-card:hover .program-icon{

    transform:rotate(8deg) scale(1.08);

}

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

.program-card h3{

    font-family:'Poppins';

    font-size:28px;

    font-weight:700;

    color:#1F2D3D;

    margin-bottom:18px;

    text-align:center;

}

/* Gold divider */

.program-divider{

    width:70px;

    height:4px;

    margin:0 auto 22px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        #F4C21A,
        transparent
    );

}

/*=========================
DESCRIPTION
==========================*/

.program-card p{

    font-family:'Open Sans';

    font-size:16px;

    line-height:30px;

    color:#5F6B73;

    text-align:center;

    margin-bottom:28px;

}

/*=========================
BUTTON
==========================*/

.program-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    margin-top:auto;

    padding:14px 30px;

    border-radius:40px;

    border:2px solid #F4C21A;

    background:#fff;

    color:#1F6E8C;

    font-family:'Poppins';

    font-weight:600;

    transition:.35s;

}

.program-btn:hover{

    background:#F4C21A;

    color:#1F2D3D;

}

.program-btn i{

    transition:.35s;

}

.program-btn:hover i{

    transform:translateX(5px);

}

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

@media(max-width:992px){

.program-grid{

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

}

}

/*=========================
PHONE
==========================*/

@media(max-width:768px){

.program-grid{

grid-template-columns:1fr;

}

.program-card{

padding:40px 28px;

}

.programs .section-heading h2{

font-size:36px;

}

}
/*====================================================
OUR PROMISE
====================================================*/

.our-promise {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    background:
        linear-gradient(
            135deg,
            #f7faf9 0%,
            #ffffff 50%,
            #f3f8f7 100%
        );
    overflow: hidden;
    box-sizing: border-box;
}


/*--------------------------------
SUBTLE DECORATIVE BACKGROUND
--------------------------------*/

.our-promise::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(20, 132, 145, 0.06);
    top: -180px;
    left: -100px;
}

.our-promise::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(244, 194, 26, 0.07);
    bottom: -160px;
    right: -80px;
}


/*--------------------------------
CONTENT
--------------------------------*/

.promise-container {
    position: relative;
    z-index: 2;
    width: min(900px, 92%);
    margin: 0 auto;
    text-align: center;
}


/*--------------------------------
LABEL
--------------------------------*/

.promise-label {
    display: inline-block;
    margin-bottom: 14px;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: #f4c21a;
}


/*--------------------------------
HEADING
--------------------------------*/

.promise-container h2 {
    margin: 0 auto 20px;

    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;

    color: #203047;
}

.promise-container h2 span {
    color: #147f8b;
}


/*--------------------------------
DIVIDER
--------------------------------*/

.promise-divider {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    margin: 20px auto 28px;
}

.promise-divider span {
    display: block;
    width: 65px;
    height: 4px;

    background: #f4c21a;
    border-radius: 10px;
}


/*--------------------------------
TEXT
--------------------------------*/

.promise-container p {
    max-width: 780px;
    margin: 0 auto 16px;

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;

    color: #5d6872;
}


/*--------------------------------
CLOSING STATEMENT
--------------------------------*/

.promise-closing {
    margin-top: 30px;

    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    font-style: italic;

    color: #147f8b;
}

.promise-closing strong {
    display: inline-block;
    margin-left: 5px;

    color: #dcae0c;
    font-weight: 700;
}


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

@media (max-width: 768px) {

    .our-promise {
        padding: 60px 18px;
    }

    .promise-container {
        width: 94%;
    }

    .promise-label {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .promise-container h2 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .promise-divider {
        margin: 18px auto 24px;
    }

    .promise-container p {
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 14px;
    }

    .promise-closing {
        margin-top: 25px;
        font-size: 15px;
        line-height: 1.6;
    }

    .promise-closing strong {
        display: block;
        margin: 3px 0 0;
    }

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

.footer{

background:#087F8C;

color:#fff;

margin-top:120px;

}


.footer-top{

background:linear-gradient(135deg,#087F8C,#087F8C);

padding:60px 0;

}

.footer-cta{

display:flex;

justify-content:space-between;

align-items:center;

gap:50px;

}

.footer-cta h2{

font-family:'Poppins';

font-size:42px;

margin-bottom:15px;

}

.footer-cta p{

font-size:18px;

max-width:600px;

opacity:.9;

}

.footer-buttons{

display:flex;

gap:20px;

}

.footer-grid{

padding:90px 0;

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:60px;

}

.footer-logo{

width:220px;

margin-bottom:25px;

}

.footer-col p{

line-height:30px;

opacity:.9;

margin-bottom:25px;

}

.footer-col h3{

font-family:'Poppins';

font-size:24px;

margin-bottom:25px;

}

.footer-col ul li{

margin-bottom:18px;

}

.footer-col ul li a{

color:#fff;

opacity:.85;

transition:.3s;

}

.footer-col ul li a:hover{

color:#F4C21A;

padding-left:8px;

}

.footer-social{

display:flex;

gap:15px;

}

.footer-social a{

width:45px;

height:45px;

border-radius:50%;

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

display:flex;

align-items:center;

justify-content:center;

color:#fff;

transition:.35s;

}

.footer-social a:hover{

background:#F4C21A;

color:#245D6E;

transform:translateY(-5px);

}

.footer-col input{

width:100%;

padding:16px;

border:none;

border-radius:10px;

margin-bottom:15px;

outline:none;

}

.footer-col button{

width:100%;

padding:16px;

border:none;

border-radius:10px;

background:#F4C21A;

font-family:'Poppins';

font-weight:600;

cursor:pointer;

transition:.35s;

}

.footer-col button:hover{

background:#fff;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.08);

padding:25px 0;

}

.footer-copy{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

}
/* =================================
   OUR LEADERSHIP
================================= */

.leadership {
    position: relative;
    margin-top: 100px;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(31,110,140,.08) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(244,194,26,.10) 0%,
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #F8FBFD,
            #EAF4F7
        );
}

.section-heading {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading h2 {
    font-family: 'Poppins';
    font-size: 42px;
    line-height: 1.3;
    margin: 20px 0;
    color: var(--dark);
}

.section-heading h2 span {
    display: block;
    color: var(--primary);
}

.section-heading p {
    font-size: 18px;
    line-height: 32px;
    color: var(--text);
}
/* ==========================================
   OUR LEADERSHIP
========================================== */

.leadership {
    position: relative;
    margin-top: 100px;
    padding: 120px 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(31,110,140,.08),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(244,194,26,.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #F8FBFD,
            #EAF4F7
        );
}


/* SECTION HEADING */

.leadership .section-heading {
    max-width: 750px;
    margin: 0 auto 70px;
    text-align: center;
}


/* ==========================================
   LARGE FOUNDER PROFILE
========================================== */

.founder-profile {
    width: 650px;
    max-width: 90%;
    margin: 0 auto 70px;

    background: #fff;

    border-radius: 30px;
    overflow: hidden;

    border-top: 7px solid var(--secondary);

    box-shadow:
        0 30px 80px rgba(0,0,0,.14);

    text-align: center;

    position: relative;
}


/* FOUNDER IMAGE */

.founder-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* FOUNDER INFORMATION */

.founder-info {
    padding: 35px 55px 45px;
}

.founder-info h3 {
    font-family: 'Poppins';
    font-size: 34px;
    margin: 0 0 10px;
    color: var(--dark);
}

.founder-info .position {
    display: inline-block;

    background: var(--primary);
    color: #fff;

    padding: 9px 22px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 22px;
}

.founder-info p {
    font-size: 16px;
    line-height: 29px;
    color: var(--text);
    margin: 0;
}


/* ==========================================
   TWO SMALLER LEADERS
========================================== */

.other-leaders {
    width: 700px;
    max-width: 90%;
    margin: 0 auto;

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

    gap: 35px;

    align-items: start;
}


/* SMALL CARD */

.small-leader {
    background: #fff;

    border-radius: 25px;
    overflow: hidden;

    box-shadow:
        0 20px 55px rgba(0,0,0,.09);

    text-align: center;

    transition: .4s;
}

.small-leader:hover {
    transform: translateY(-8px);
}


/* SMALL IMAGE */

.small-leader-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.small-leader-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;
}


/* SMALL INFORMATION */

.small-leader-info {
    padding: 22px 20px 28px;
}

.small-leader-info h3 {
    font-family: 'Poppins';
    font-size: 20px;

    margin: 0 0 8px;

    color: var(--dark);
}

.small-leader-info .position {
    display: inline-block;

    background: var(--primary);
    color: #fff;

    padding: 6px 15px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 600;

    margin-bottom: 15px;
}

.small-leader-info p {
    font-size: 13px;
    line-height: 23px;

    color: var(--text);

    margin: 0;
}
/*==================================
OUR TEAM
===================================*/

.team{

    position:relative;

    padding:130px 0 150px;

    overflow:hidden;

    background:#1F6E8C;

}


/*==================================
TEAM BACKGROUND
===================================*/

.team{

    position:relative;

    padding:130px 0 150px;

    overflow:hidden;

    background:#1F6E8C;

}


/*==================================
STICKY BACKGROUND IMAGE
===================================*/

.team-bg-slider{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:0;

    overflow:hidden;

}


#teamBackgroundImage{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    opacity:1;

    transform:scale(1.03);

    transition:

        opacity 1.3s ease-in-out,

        transform 6s ease;

}


/*==================================
TEAL OVERLAY
===================================*/

.team-bg-overlay{

    position:absolute;

    inset:0;

    z-index:1;

    background:rgba(31,110,140,.72);

    pointer-events:none;

}


/*==================================
TEAM CONTENT
===================================*/

.team .container{

    position:relative;

    z-index:5;

}

/*==================================
TEAM HEADING
===================================*/

.team .section-title{

    text-align:center;

    max-width:850px;

    margin:0 auto 75px;

}


/*==================================
TEAM LABEL
===================================*/

.team .section-title span{

    display:inline-block;

    padding:10px 25px;

    background:#FFF8E5;

    color:#D69E00;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    margin-bottom:22px;

}


/*==================================
TEAM HEADING
===================================*/

.team .section-title h2{

    font-family:'Poppins',sans-serif;

    font-size:52px;

    line-height:1.18;

    color:#ffffff;

    margin:0 0 20px;

}


.team .section-title h2 span{

    display:block;

    padding:0;

    background:none;

    color:#F4C21A;

    border-radius:0;

    margin:0;

    font-size:inherit;

    letter-spacing:normal;

    text-transform:none;

}


/*==================================
TEAM DESCRIPTION
===================================*/

.team .section-title p{

    max-width:760px;

    margin:25px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:31px;

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

}


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

.team-grid{

    display:grid;

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

    gap:35px;

    margin-top:60px;

}


/*==================================
TEAM CARD
===================================*/

.team-card{

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

    border-radius:28px;

    padding:35px;

    text-align:center;

    transition:.4s ease;

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

    border-bottom:5px solid #F6C54F;

}


.team-card:hover{

    transform:translateY(-12px);

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

}


/*==================================
TEAM IMAGE
===================================*/

.team-image{

    width:150px;

    height:150px;

    margin:0 auto 25px;

    border-radius:50%;

    overflow:hidden;

    border:6px solid #F6C54F;

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

}


.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


/*==================================
TEAM NAME
===================================*/

.team-card h3{

    font-family:'Poppins',sans-serif;

    font-size:25px;

    color:#245D6E;

    margin-bottom:10px;

}


/*==================================
TEAM ROLE
===================================*/

.team-role{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:#245D6E;

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}


/*==================================
TEAM DESCRIPTION
===================================*/

.team-card p{

    font-family:'Open Sans',sans-serif;

    font-size:16px;

    line-height:30px;

    color:#5F6B73;

}


/*==================================
SUBTLE BACKGROUND GLOW
===================================*/

.team::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244,194,26,.14),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(255,255,255,.08),
            transparent 30%
        );

    pointer-events:none;

    z-index:1;

}


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

@media(max-width:992px){

    .team{

        background-attachment:scroll;

    }

    .team-grid{

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

    }

}


/*==================================
PHONE
===================================*/

@media(max-width:768px){

    .team{

        padding:90px 0 110px;

        background-attachment:scroll;

    }

    .team-grid{

        grid-template-columns:1fr;

    }

    .team .section-title h2{

        font-size:36px;

    }

}
/*==================================
BRING TEAM CONTENT ABOVE BACKGROUND
===================================*/

.team .container{

    position:relative;

    z-index:10;

}


.team .section-title{

    position:relative;

    z-index:11;

}


.team-grid{

    position:relative;

    z-index:11;

}


.team-card{

    position:relative;

    z-index:12;

}
/*==================================
TEAM FINAL STRUCTURE
===================================*/

.team{

    position:relative;

    isolation:isolate;

    overflow:hidden;

    padding:130px 0 150px;

    background:#1F6E8C;

}


/*==================================
STICKY BACKGROUND
===================================*/

.team-bg-slider{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:-2;

    overflow:hidden;

}


#teamBackgroundImage{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    transition:opacity 1s ease-in-out;

}


/*==================================
TEAL OVERLAY
===================================*/

.team-bg-overlay{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    z-index:-1;

    background:rgba(31,110,140,.72);

    pointer-events:none;

}


/*==================================
TEAM CONTENT
===================================*/

.team-content{

    position:relative;

    z-index:5;

}


.team-content .container{

    position:relative;

    z-index:6;

}


/*==================================
TEAM HEADING
===================================*/

.team-content .section-heading{

    position:relative;

    z-index:7;

    text-align:center;

    max-width:850px;

    margin:0 auto 75px;

}


.team-content .section-heading > span{

    display:inline-block;

    padding:10px 25px;

    background:#FFF8E5;

    color:#D69E00;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:1.5px;

    text-transform:uppercase;

    margin-bottom:22px;

}


.team-content .section-heading h2{

    font-family:'Poppins',sans-serif;

    font-size:52px;

    line-height:1.18;

    color:#fff;

    margin:0 0 20px;

}


.team-content .section-heading h2 span{

    display:block;

    color:#F4C21A;

}


.team-content .section-heading p{

    max-width:760px;

    margin:25px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:31px;

    color:#fff;

}


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

.team-content .team-grid{

    position:relative;

    z-index:7;

    display:grid;

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

    gap:35px;

    margin-top:60px;

}


/*==================================
TEAM CARD
===================================*/

.team-content .team-card{

    position:relative;

    z-index:8;

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

    border-radius:28px;

    padding:35px;

    text-align:center;

    box-shadow:0 25px 55px rgba(0,0,0,.20);

    border-bottom:5px solid #F6C54F;

    transition:.4s ease;

}


.team-content .team-card:hover{

    transform:translateY(-12px);

}


/*==================================
TEAM IMAGE
===================================*/

.team-image{

    width:150px;

    height:150px;

    margin:0 auto 25px;

    border-radius:50%;

    overflow:hidden;

    border:6px solid #F6C54F;

}


.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


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

@media(max-width:992px){

    .team-content .team-grid{

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

    }

}


@media(max-width:768px){

    .team{

        padding:90px 0 110px;

    }

    .team-content .team-grid{

        grid-template-columns:1fr;

    }

    .team-content .section-heading h2{

        font-size:36px;

    }

}
/*====================================================
GALLERY - HOMEPAGE ONLY
====================================================*/

.gallery{

    position:relative;

    padding:70px 0 90px;

    background:#FCFBF8;

    overflow:hidden;

}


/*==================================
GALLERY LABEL
===================================*/

.gallery .section-heading > span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 26px;

    background:#FFF8E5;

    border-radius:50px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    color:#D69E00;

    text-transform:uppercase;

    margin-bottom:22px;

}


/*==================================
HOMEPAGE GALLERY GRID
===================================*/

.gallery .gallery-grid{

    display:grid;

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

    grid-auto-rows:260px;

    gap:25px;

    margin-top:70px;

}


/*==================================
HOMEPAGE GALLERY ITEM
===================================*/

.gallery .gallery-item{

    overflow:hidden;

    border-radius:25px;

    position:relative;

    cursor:pointer;

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

}


/*==================================
HOMEPAGE GALLERY IMAGE
===================================*/

.gallery .gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}


.gallery .gallery-item:hover img{

    transform:scale(1.12);

}


/*==================================
HOMEPAGE GALLERY OVERLAY
===================================*/

.gallery .gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        transparent,
        rgba(36,93,110,.45)
    );

    opacity:0;

    transition:.35s;

}


.gallery .gallery-item:hover::after{

    opacity:1;

}


/*==================================
HOMEPAGE LARGE GALLERY ITEM
===================================*/

.gallery .gallery-item.large{

    grid-column:span 2;

    grid-row:span 2;

}
/*==================================
MOVING GALLERY
===================================*/

.gallery-strip{


    width:100%;

    overflow:hidden;

    white-space:nowrap;

    position:relative;

    margin:70px 0 50px;

}

.gallery-track{

    display:flex;

    flex-wrap:nowrap;

    gap:0;

    width:max-content;

    animation: galleryMove 40s linear infinite;

}

.gallery-track img{

    display:block;

    flex-shrink:0;

    width:240px;

    height:170px;

    object-fit:cover;

    margin:0;

    padding:0;

    border-radius:0;


}

.gallery-track img:hover{

    transform:scale(1.08);

}

.gallery-strip:hover .gallery-track{

    animation-play-state:paused;

}

@keyframes galleryMove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

.gallery-btn{

    text-align:center;

    margin-top:60px;

}

@media(max-width:991px){

.gallery-grid{

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

}

.gallery-item.large{

grid-column:span 2;

}

}

@media(max-width:768px){

.gallery-grid{

grid-template-columns:1fr;

}

.gallery-item.large{

grid-column:span 1;

grid-row:span 1;

}


}
/*==================================
SUCCESS STORIES
===================================*/

.success-stories{

    position:relative;

    margin-top:50px;

    padding:100px 0 80px;

    background:#087F8C;

    overflow:hidden;

}


/*==================================
HEADING
===================================*/

.success-heading{

    max-width:760px;

    margin:0 auto 55px;

    text-align:center;

    position:relative;

    z-index:2;

}

.success-heading > span{

    display:block;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    color:#F4C21A;

    margin-bottom:12px;

}

.success-heading h2{

    font-family:'Poppins',sans-serif;

    font-size:44px;

    line-height:1.2;

    font-weight:700;

    color:#fff;

    margin:0 0 15px;

}

.success-heading h2 strong{

    color:#F4C21A;

}

.success-heading p{

    max-width:650px;

    margin:15px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:16px;

    line-height:28px;

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

}


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

.success-grid{

    display:grid;

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

    gap:45px;

    align-items:start;

    position:relative;

    z-index:2;

}


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

.success-story{

    position:relative;

    text-align:center;

    transition:.4s ease;

}

.success-story:hover{

    transform:translateY(-8px);

}


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

.success-image{

    position:relative;

    width:100%;

    max-width:310px;

    height:330px;

    margin:0 auto;

    overflow:hidden;

    border-radius:28px;

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

}

.success-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s ease;

}

.success-story:hover .success-image img{

    transform:scale(1.06);

}


/*==================================
NUMBER
===================================*/

.story-number{

    position:absolute;

    top:18px;

    left:18px;

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#F4C21A;

    color:#1F6E8C;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:700;

}


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

.success-content{

    position:relative;

    width:90%;

    max-width:290px;

    margin:-5px auto 0;

    padding:25px 20px 0;

    z-index:5;

}


/*==================================
STARS
===================================*/

.story-stars{

    display:flex;

    justify-content:center;

    gap:4px;

    margin-bottom:12px;

}

.story-stars i{

    color:#F4C21A;

    font-size:15px;

}


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

.story-category{

    display:block;

    font-family:'Poppins',sans-serif;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    color:#F4C21A;

    margin-bottom:8px;

}


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

.success-content h3{

    font-family:'Poppins',sans-serif;

    font-size:22px;

    line-height:1.3;

    font-weight:700;

    color:#fff;

    margin:0 0 10px;

}


/*==================================
DESCRIPTION
===================================*/

.success-content p{

    font-family:'Open Sans',sans-serif;

    font-size:14px;

    line-height:25px;

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

    margin:0;

}


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

.featured-story{

    transform:translateY(-20px);

}

.featured-story:hover{

    transform:translateY(-28px);

}


/*==================================
BUTTON
===================================*/

.success-action{

    text-align:center;

    margin-top:55px;

}

.success-action .mission-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    border:1px solid rgba(244,194,26,.7);

}


/*==================================
DECORATIVE BACKGROUND
===================================*/

.success-stories::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(244,194,26,.06);

    top:-230px;

    right:-120px;

}

.success-stories::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    border-radius:50%;

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

    bottom:-180px;

    left:-100px;

}


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

@media(max-width:991px){

    .success-grid{

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

    }

    .featured-story{

        transform:none;

    }

    .featured-story:hover{

        transform:translateY(-8px);

    }

}


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

@media(max-width:650px){

    .success-stories{

        padding:80px 0 70px;

    }

    .success-heading{

        margin-bottom:45px;

    }

    .success-heading h2{

        font-size:34px;

    }

    .success-grid{

        grid-template-columns:1fr;

        gap:55px;

    }

    .success-image{

        max-width:290px;

        height:320px;

    }

    .success-content{

        margin-top:-2px;

    }

}
/*=========================================
SUCCESS STORY PERSON
=========================================*/

.story-person{

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    padding:45px 25px 20px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0)
    );

    color:#fff;

    z-index:2;

}


.story-person strong{

    display:block;

    font-family:'Poppins', sans-serif;

    font-size:18px;

    font-weight:600;

    margin-bottom:3px;

}


.story-person span{

    display:block;

    font-family:'Open Sans', sans-serif;

    font-size:12px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:1px;

    opacity:0.85;

}
/*=========================================
CONTACT PAGE
=========================================*/

.contact-hero{

    position:relative;

    min-height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:
        linear-gradient(
            rgba(31,110,140,.78),
            rgba(36,93,110,.88)
        ),
        url("../images/about-hero.jpg");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}


.contact-hero-content{

    position:relative;

    z-index:5;

    max-width:850px;

    margin:120px auto 0;

}


.contact-hero .section-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(244,194,26,.18);

    border:1px solid rgba(244,194,26,.6);

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}


.contact-hero h1{

    margin:25px 0 15px;

    font-family:'Poppins',sans-serif;

    font-size:55px;

    line-height:1.15;

    color:#fff;

}


.contact-hero h1 span{

    display:block;

    color:#F4C21A;

}


.contact-hero p{

    max-width:720px;

    margin:20px auto;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:31px;

    color:#fff;

}


/*=========================================
CONTACT MAIN
=========================================*/

.contact-section{

    padding:110px 0 120px;

    background:#FCFBF8;

}


.contact-heading{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}


.contact-heading > span{

    display:inline-block;

    padding:9px 22px;

    border-radius:50px;

    background:#FFF8E5;

    color:#D69E00;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}


.contact-heading h2{

    margin:22px 0 18px;

    font-family:'Poppins',sans-serif;

    font-size:46px;

    line-height:1.2;

    color:#245D6E;

}


.contact-heading h2 span{

    color:#F4C21A;

}


.contact-heading p{

    max-width:700px;

    margin:25px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:30px;

    color:#5F6B73;

}


/*=========================================
CONTACT WRAPPER
=========================================*/

.contact-wrapper{

    display:grid;

    grid-template-columns:40% 60%;

    max-width:1150px;

    margin:auto;

    border-radius:35px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(31,110,140,.12);

}


/*=========================================
CONTACT INFO
=========================================*/

.contact-info{

    padding:55px 40px;

    background:#1F6E8C;

}


.contact-info-card{

    display:flex;

    align-items:center;

    gap:20px;

    padding:22px 0;

    border-bottom:1px solid rgba(255,255,255,.15);

}


.contact-info-card:last-child{

    border-bottom:none;

}


.contact-icon{

    min-width:55px;

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:#F4C21A;

    color:#245D6E;

    font-size:20px;

}


.contact-info-card h3{

    margin-bottom:6px;

    font-family:'Poppins',sans-serif;

    font-size:17px;

    color:#fff;

}


.contact-info-card p{

    font-family:'Open Sans',sans-serif;

    font-size:14px;

    line-height:23px;

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

}


/*=========================================
CONTACT FORM
=========================================*/

.contact-form-box{

    padding:55px;

    background:#fff;

}


.contact-form-box h3{

    font-family:'Poppins',sans-serif;

    font-size:28px;

    color:#245D6E;

    margin-bottom:8px;

}


.contact-form-box > p{

    color:#5F6B73;

    margin-bottom:30px;

}


.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}


.form-group{

    margin-bottom:20px;

}


.form-group label{

    display:block;

    margin-bottom:8px;

    font-family:'Poppins',sans-serif;

    font-size:14px;

    font-weight:600;

    color:#245D6E;

}


.form-group input,
.form-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #DDE5E8;

    border-radius:12px;

    outline:none;

    font-family:'Open Sans',sans-serif;

    font-size:15px;

    color:#1F2D3D;

    background:#FCFBF8;

    transition:.3s;

}


.form-group textarea{

    resize:vertical;

}


.form-group input:focus,
.form-group textarea:focus{

    border-color:#1F6E8C;

    box-shadow:0 0 0 3px rgba(31,110,140,.08);

}


.contact-submit{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:15px 30px;

    border:none;

    border-radius:50px;

    background:#1F6E8C;

    color:#fff;

    font-family:'Poppins',sans-serif;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}


.contact-submit:hover{

    background:#F4C21A;

    color:#1F2D3D;

    transform:translateY(-3px);

}


/*=========================================
CONTACT CTA
=========================================*/

.contact-cta{

    padding:100px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244,194,26,.16),
            transparent 30%
        ),
        #1F6E8C;

    text-align:center;

}


.contact-cta-content{

    max-width:800px;

    margin:auto;

}


.contact-cta-content > span{

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

}


.contact-cta h2{

    margin:20px 0;

    font-family:'Poppins',sans-serif;

    font-size:45px;

    line-height:1.2;

    color:#fff;

}


.contact-cta h2 strong{

    color:#F4C21A;

}


.contact-cta p{

    max-width:650px;

    margin:0 auto 30px;

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

    line-height:30px;

}


.contact-cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}
/*====================================================
PROGRAMS PAGE
Premium Editorial Design
====================================================*/


/*==================================
PROGRAM PAGE HERO
===================================*/

.program-page-hero{

    position:relative;

    min-height:560px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    background:
        linear-gradient(
            rgba(31,110,140,.78),
            rgba(36,93,110,.90)
        ),
        url("../images/about-hero.jpg");

    background-size:cover;

    background-position:center;

    overflow:hidden;

}


.program-page-overlay{

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(244,194,26,.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(255,255,255,.08),
            transparent 30%
        );

}
/*=========================================
PROGRAM PAGE HERO CONTENT
=========================================*/

.program-page-hero-content{
    position:relative;
    z-index:10;
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:120px 25px 100px;
    box-sizing:border-box;
    text-align:center;
}


/*=========================================
PROGRAM HERO BADGE
=========================================*/

.program-page-hero .section-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 26px;

    border-radius:50px;

    background:#ffffff;

    border:2px solid #F4C21A;

    color:#D9A900;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:800;

    letter-spacing:2px;

    line-height:1;

    box-shadow:0 8px 25px rgba(0,0,0,.12);
}


/*=========================================
PROGRAM HERO HEADING
=========================================*/

.program-page-hero h1{

    margin:28px auto 0;

    max-width:850px;

    font-family:'Poppins',sans-serif;

    font-size:58px;

    font-weight:800;

    line-height:1.12;

    letter-spacing:-1px;

    color:#ffffff;

    text-shadow:
        0 3px 12px rgba(0,0,0,.25);
}


/*=========================================
YELLOW HEADING TEXT
=========================================*/

.program-page-hero h1 span{

    display:block;

    margin-top:6px;

    color:#F4C21A;

    font-weight:800;

    text-shadow:
        0 3px 12px rgba(0,0,0,.20);
}


/*=========================================
PROGRAM HERO DESCRIPTION
=========================================*/

.program-page-hero p{

    max-width:760px;

    margin:28px auto 0;

    font-family:'Open Sans',sans-serif;

    font-size:18px;

    font-weight:500;

    line-height:1.8;

    color:#ffffff;

    text-shadow:
        0 2px 8px rgba(0,0,0,.35);
}


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

@media(max-width:992px){

    .program-page-hero-content{
        padding:100px 25px 80px;
    }

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

    .program-page-hero p{
        font-size:17px;
    }

}


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

@media(max-width:768px){

    .program-page-hero-content{
        padding:85px 20px 70px;
    }

    .program-page-hero .section-badge{
        padding:9px 20px;
        font-size:11px;
        letter-spacing:1.5px;
    }

    .program-page-hero h1{
        margin-top:22px;
        font-size:36px;
        line-height:1.18;
        letter-spacing:-.5px;
    }

    .program-page-hero h1 span{
        margin-top:4px;
    }

    .program-page-hero p{
        margin-top:22px;
        font-size:15px;
        line-height:1.7;
    }

}


/*=========================================
SMALL PHONES
=========================================*/

@media(max-width:480px){

    .program-page-hero-content{
        padding:75px 18px 60px;
    }

    .program-page-hero h1{
        font-size:31px;
    }

    .program-page-hero p{
        font-size:14px;
        line-height:1.65;
    }

}
/* =====================================================
   PROGRAM INTRO — CLEAN & SHARP
   ===================================================== */

.program-intro{
    position:relative;
    width:100%;
    padding:90px 20px 95px;
    background:#ffffff !important;
    overflow:hidden;
    box-sizing:border-box;
}


/* CONTENT CONTAINER */

.program-intro .container{
    width:100%;
    max-width:1100px;
    margin:0 auto;
}


/* HEADING AREA */

.program-intro-heading{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}


/* SMALL LABEL */

.program-intro-heading > span{
    display:inline-block;
    margin-bottom:18px;

    font-family:'Poppins',sans-serif;
    font-size:13px;
    font-weight:700;
    letter-spacing:2.5px;

    color:#F4C21A;

    text-transform:uppercase;
}


/* MAIN HEADING */

.program-intro-heading h2{
    margin:0;

    font-family:'Poppins',sans-serif;
    font-size:46px;
    font-weight:700;
    line-height:1.2;

    color:#24566A !important;

    text-align:center;
}


/* YELLOW PART OF HEADING */

.program-intro-heading h2 span{
    display:block;

    margin-top:5px;

    color:#F4C21A !important;
}


/* DIVIDER */

.program-intro-heading .about-divider{
    width:70px;
    height:4px;

    margin:25px auto 28px;

    background:#F4C21A !important;

    border-radius:10px;
}


/* DESCRIPTION */

.program-intro-heading p{
    max-width:780px;

    margin:0 auto;

    font-family:'Open Sans',sans-serif;
    font-size:17px;
    font-weight:400;

    line-height:1.8;

    color:#536A73 !important;

    text-align:center;
}


/* =====================================================
   SUBTLE DECORATIVE EFFECT
   ===================================================== */

.program-intro::before{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    left:-110px;
    top:50%;

    transform:translateY(-50%);

    background:rgba(15,130,143,.06);

    border-radius:50%;

    pointer-events:none;
}


.program-intro::after{
    content:"";

    position:absolute;

    width:180px;
    height:180px;

    right:-90px;
    bottom:-70px;

    background:rgba(244,194,26,.07);

    border-radius:50%;

    pointer-events:none;
}


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

@media (max-width:768px){

    .program-intro{
        padding:65px 20px 70px;
    }

    .program-intro-heading{
        max-width:100%;
    }

    .program-intro-heading > span{
        font-size:11px;
        letter-spacing:2px;
        margin-bottom:14px;
    }

    .program-intro-heading h2{
        font-size:32px;
        line-height:1.2;
    }

    .program-intro-heading h2 span{
        margin-top:4px;
    }

    .program-intro-heading .about-divider{
        width:55px;
        height:3px;
        margin:20px auto 22px;
    }

    .program-intro-heading p{
        max-width:100%;
        font-size:15px;
        line-height:1.75;
    }

}

/* =====================================================
   PROGRAM INTRO — TEXT SLIDE-IN ANIMATION
   ===================================================== */

/* Small label */
.program-intro-heading > span{
    opacity:0;
    transform:translateY(25px);
    animation:programSlideUp .8s ease-out forwards;
    animation-delay:.15s;
}


/* Main heading */
.program-intro-heading h2{
    opacity:0;
    transform:translateY(30px);
    animation:programSlideUp .9s ease-out forwards;
    animation-delay:.3s;
}


/* Yellow heading line */
.program-intro-heading h2 span{
    opacity:0;
    transform:translateY(25px);
    animation:programSlideUp .8s ease-out forwards;
    animation-delay:.5s;
}


/* Divider */
.program-intro-heading .about-divider{
    opacity:0;
    transform:scaleX(0);
    transform-origin:center;
    animation:programDivider .7s ease-out forwards;
    animation-delay:.7s;
}


/* Description */
.program-intro-heading p{
    opacity:0;
    transform:translateY(25px);
    animation:programSlideUp .9s ease-out forwards;
    animation-delay:.85s;
}


/* =====================================================
   ANIMATION KEYFRAMES
   ===================================================== */

@keyframes programSlideUp{

    0%{
        opacity:0;
        transform:translateY(30px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}


@keyframes programDivider{

    0%{
        opacity:0;
        transform:scaleX(0);
    }

    100%{
        opacity:1;
        transform:scaleX(1);
    }

}


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

@media (max-width:768px){

    .program-intro-heading > span{
        animation-delay:.1s;
    }

    .program-intro-heading h2{
        animation-delay:.25s;
    }

    .program-intro-heading h2 span{
        animation-delay:.4s;
    }

    .program-intro-heading .about-divider{
        animation-delay:.55s;
    }

    .program-intro-heading p{
        animation-delay:.7s;
    }

}

/*==================================
PROGRAM FEATURE
===================================*/

.program-feature{

    position:relative;

    padding:110px 0;

    background:#fff;

    overflow:hidden;

}


.program-feature:nth-of-type(even){

    background:#FCFBF8;

}


.program-feature-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:90px;

    align-items:center;

}


/*==================================
PROGRAM IMAGE
===================================*/

.program-feature-image{

    position:relative;

    height:500px;

    border-radius:35px;

    overflow:hidden;

    box-shadow:
        0 30px 70px rgba(31,110,140,.15);

}


.program-feature-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(31,45,61,.35)
        );

}


.program-feature-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s ease;

}


.program-feature:hover
.program-feature-image img{

    transform:scale(1.06);

}


/*==================================
PROGRAM NUMBER
===================================*/

.program-number{

    position:absolute;

    z-index:5;

    top:25px;

    left:25px;

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:22px;

    background:#F4C21A;

    color:#1F2D3D;

    font-family:'Poppins',sans-serif;

    font-size:22px;

    font-weight:700;

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

}


/*==================================
PROGRAM CONTENT
===================================*/

.program-feature-content{

    max-width:540px;

}


.program-feature-label{

    display:inline-block;

    margin-bottom:15px;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

    color:#1F6E8C;

}


.program-feature-content h2{

    margin:0 0 15px;

    font-family:'Poppins',sans-serif;

    font-size:48px;

    font-weight:700;

    line-height:1.15;

    color:#1F2D3D;

}


.program-feature-content h2 span{

    display:block;

    color:#1F6E8C;

}


.program-feature-content .about-divider{

    margin:20px 0 25px;

}


.program-feature-content > p{

    margin-bottom:25px;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:31px;

    color:#5F6B73;

}


/*==================================
PROGRAM LIST
===================================*/

.program-feature-content ul{

    list-style:none;

    padding:0;

    margin:0;

}


.program-feature-content li{

    display:flex;

    align-items:center;

    gap:13px;

    margin-bottom:15px;

    font-family:'Open Sans',sans-serif;

    font-size:15px;

    font-weight:600;

    color:#245D6E;

}


.program-feature-content li i{

    width:27px;

    height:27px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#FFF8E5;

    color:#D69E00;

    font-size:12px;

}


/*==================================
REVERSED PROGRAM
===================================*/

.program-feature-reverse
.program-feature-grid{

    direction:rtl;

}


.program-feature-reverse
.program-feature-grid > *{

    direction:ltr;

}



/*==================================
DECORATIVE SHAPES
===================================*/

.program-feature::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(31,110,140,.08),
            transparent 70%
        );

    top:-100px;

    right:-80px;

    pointer-events:none;

}


.program-feature-reverse::before{

    left:-80px;

    right:auto;

    background:
        radial-gradient(
            circle,
            rgba(244,194,26,.10),
            transparent 70%
        );

}



/*==================================
PROGRAM CTA
===================================*/

.program-page-cta{

    position:relative;

    padding:110px 0;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(244,194,26,.18),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(255,255,255,.08),
            transparent 30%
        ),
        #1F6E8C;

    overflow:hidden;

    text-align:center;

}


.program-page-cta-content{

    position:relative;

    z-index:5;

    max-width:820px;

    margin:auto;

}


.program-page-cta-content > span{

    color:#F4C21A;

    font-family:'Poppins',sans-serif;

    font-size:13px;

    font-weight:700;

    letter-spacing:3px;

}


.program-page-cta h2{

    margin:20px 0;

    font-family:'Poppins',sans-serif;

    font-size:48px;

    font-weight:700;

    line-height:1.2;

    color:#fff;

}


.program-page-cta h2 strong{

    display:block;

    color:#F4C21A;

}


.program-page-cta p{

    max-width:650px;

    margin:0 auto 30px;

    font-family:'Open Sans',sans-serif;

    font-size:17px;

    line-height:30px;

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

}


.program-cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}



/*==================================
PROGRAMS PAGE RESPONSIVE
===================================*/

@media(max-width:992px){

    .program-page-hero h1{

        font-size:48px;

    }


    .program-feature-grid{

        grid-template-columns:1fr;

        gap:50px;

    }


    .program-feature-reverse
    .program-feature-grid{

        direction:ltr;

    }


    .program-feature-image{

        height:450px;

    }


    .program-feature-content{

        max-width:700px;

    }

}


@media(max-width:768px){

    .program-page-hero{

        min-height:500px;

    }


    .program-page-hero-content{

        margin-top:80px;

    }


    .program-page-hero h1{

        font-size:38px;

    }


    .program-page-hero p{

        font-size:16px;

        line-height:28px;

    }


    .program-intro{

        padding:75px 0 60px;

    }


    .program-intro-heading h2{

        font-size:34px;

    }


    .program-feature{

        padding:75px 0;

    }


    .program-feature-image{

        height:350px;

        border-radius:25px;

    }


    .program-number{

        width:58px;

        height:58px;

        border-radius:18px;

        font-size:18px;

    }


    .program-feature-content h2{

        font-size:36px;

    }


    .program-feature-content > p{

        font-size:16px;

        line-height:28px;

    }


    .program-page-cta{

        padding:80px 20px;

    }


    .program-page-cta h2{

        font-size:35px;

    }

}
/*==================================
ELEGANT FOOTER SEPARATOR
===================================*/

.footer-top{
    position:relative;
    border-bottom:1px solid rgba(244,194,26,.35);
}

.footer-top::after{
    content:"";
    position:absolute;

    bottom:-6px;
    left:50%;

    width:12px;
    height:12px;

    background:#F4C21A;

    transform:translateX(-50%) rotate(45deg);

    box-shadow:
        0 0 0 5px #1F6E8C;
}
/*====================================================
GALLERY PAGE
====================================================*/

.gallery-section{
    padding:100px 0;
    background:#FCFBF8;
}

.gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    grid-auto-rows:250px;
    gap:18px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.gallery-hero{

    position:relative;

    min-height:520px;

    margin:0;

    padding:180px 0 90px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
        linear-gradient(
            rgba(20,45,60,.70),
            rgba(20,45,60,.74)
        ),
        url("images/gallery1.jpg")
        center center / cover no-repeat;

}

/* ============================================================
   ROLAK FOUNDATION — MOBILE RESPONSIVE FIX
   Added as a final override layer so the existing desktop design
   and sections that already work on mobile remain intact.
   ============================================================ */

html, body{
    max-width:100%;
    overflow-x:hidden;
}

*, *::before, *::after{
    box-sizing:border-box;
}

img, video, iframe{
    max-width:100%;
}

/* ---------- TABLET ---------- */
@media (max-width: 991px){

    .container{
        width:92%;
        max-width:1200px;
    }

    /* Header / navigation */
    .topbar .container{
        min-height:42px;
        gap:10px;
    }

    header{
        top:42px;
    }

    nav{
        min-height:76px;
        height:auto;
        padding:10px 18px;
        gap:12px;
        flex-wrap:wrap;
    }

    .logo{
        padding:7px 12px;
    }

    .logo img,
    header.sticky .logo img{
        width:125px;
        height:auto;
    }

    nav ul{
        order:3;
        width:100%;
        justify-content:center;
        gap:24px;
        padding:5px 0 3px;
        flex-wrap:wrap;
    }

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

    .donate-btn{
        padding:11px 20px;
        font-size:14px;
    }

    /* Hero */
    .hero{
        min-height:auto;
        padding:190px 0 75px;
    }

    .hero-wrapper{
        flex-direction:column;
        text-align:center;
        gap:35px;
    }

    .hero-left,
    .hero-right{
        width:100%;
        max-width:100%;
    }

    .hero h1{
        font-size:46px;
        line-height:1.12;
    }

    .hero h1 span{
        font-size:68px;
        line-height:1.05;
    }

    .hero p{
        max-width:700px;
        margin:0 auto 30px;
        font-size:16px;
        line-height:28px;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        align-items:center;
        flex-wrap:wrap;
        gap:12px;
    }

    /* General section spacing */
    section{
        max-width:100%;
    }

    /* About / story two-column layouts */
    .about-story-wrapper,
    .mission-about,
    .why-wrapper,
    .contact-wrapper{
        grid-template-columns:1fr;
        flex-direction:column;
        gap:40px;
    }

    .about-story-image img{
        height:420px;
    }

    /* Mission cards */
    .mission-card{
        grid-template-columns:repeat(2,1fr);
    }

    /* Impact */
    .impact-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* Why we exist */
    .why-section{
        min-height:auto;
        padding:90px 0;
        background-attachment:scroll;
    }

    .why-content{
        max-width:850px;
    }

    .why-content h2{
        font-size:44px;
    }

    .why-content > p{
        font-size:16px;
        line-height:29px;
    }

    .why-list{
        flex-wrap:wrap;
        justify-content:center;
    }

    /* Leadership / team */
    .leadership-grid,
    .team-grid{
        grid-template-columns:repeat(2,1fr);
    }

    /* Gallery */
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:220px;
    }

    .gallery-item.large{
        grid-column:span 2;
        grid-row:span 1;
    }

    .gallery-track img{
        width:210px;
        height:155px;
    }

    /* Success stories */
    .success-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    /* Programs */
    .program-feature-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .program-feature-image{
        height:430px;
    }

    .program-feature-content{
        max-width:100%;
    }

    /* Contact */
    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:40px 30px;
    }

    .contact-cta h2{
        font-size:40px;
    }

}

/* ---------- PHONE ---------- */
@media (max-width: 768px){

    .container{
        width:92%;
    }

    /* Top bar */
    .topbar{
        height:auto;
    }

    .topbar .container{
        justify-content:center;
        padding:7px 0;
    }

    .topbar .left{
        justify-content:center;
        flex-wrap:wrap;
        gap:5px 14px;
        font-size:11px;
    }

    .topbar .right{
        display:none;
    }

    header{
        top:39px;
    }

    /* Mobile-friendly two-row navigation without changing HTML */
    nav{
        width:100%;
        padding:8px 12px;
        border-radius:12px;
        justify-content:space-between;
    }

    header.sticky nav{
        height:auto;
        min-height:72px;
    }

    .logo{
        padding:6px 9px;
        border-radius:10px;
    }

    .logo img,
    header.sticky .logo img{
        width:105px;
    }

    nav .donate-btn{
        padding:9px 14px;
        font-size:12px;
        border-width:1.5px;
    }

    nav ul{
        display:flex;
        width:100%;
        order:3;
        gap:0;
        justify-content:space-between;
        flex-wrap:nowrap;
        overflow-x:auto;
        overflow-y:hidden;
        scrollbar-width:none;
        -ms-overflow-style:none;
        padding:7px 2px 2px;
    }

    nav ul::-webkit-scrollbar{
        display:none;
    }

    nav ul li{
        flex:0 0 auto;
    }

    nav ul li a{
        display:block;
        padding:5px 7px;
        font-size:12px;
        white-space:nowrap;
    }

    /* Hero */
    .hero{
        padding:205px 0 60px;
    }

    .hero-wrapper{
        gap:25px;
    }

    .hero h1{
        font-size:35px;
        line-height:1.15;
    }

    .hero h1 span{
        font-size:50px;
        line-height:1.05;
    }

    .hero p{
        font-size:15px;
        line-height:26px;
        margin-bottom:25px;
    }

    .hero-buttons,
    .hero-left > .donate-btn{
        width:100%;
    }

    .hero-left > .donate-btn{
        max-width:280px;
        margin:7px auto;
    }

    /* About video */
    .about-video{
        min-height:520px;
    }

    .about-video-card{
        padding:35px 22px;
        width:100%;
    }

    .about-video-card h2{
        font-size:34px;
        line-height:1.18;
    }

    /* Common headings */
    .section-heading h2,
    .section-title h2{
        font-size:34px;
        line-height:1.2;
    }

    .section-heading p,
    .section-title p{
        font-size:15px;
        line-height:26px;
    }

    .section-badge{
        padding:8px 17px;
        font-size:11px;
        letter-spacing:1.5px;
    }

    /* Mission */
    .mission-about,
    .about-story-wrapper,
    .why-wrapper{
        gap:30px;
    }

    .mission-card{
        grid-template-columns:1fr;
        gap:25px;
    }

    .mission-text h2,
    .about-story-content h2{
        font-size:34px;
    }

    .mission-item h3{
        font-size:21px;
    }

    .mission-item p,
    .about-story-content p{
        font-size:15px;
        line-height:26px;
    }

    .about-story-image img{
        height:330px;
        border-radius:18px;
    }

    /* Story / mission / vision */
    .smv-section{
        padding:75px 0;
        background-attachment:scroll;
    }

    /* Impact */
    .impact-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .impact-card h3{
        font-size:42px;
    }

    .impact-card p{
        font-size:15px;
    }

    /* Why */
    .why-section{
        padding:75px 0;
        background-attachment:scroll;
    }

    .why-content h2{
        font-size:34px;
    }

    .why-content > p{
        font-size:15px;
        line-height:26px;
    }

    .why-list{
        display:grid;
        grid-template-columns:1fr;
        gap:12px;
    }

    /* Leadership / Team */
    .leadership-grid,
    .team-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .leadership-card,
    .team-card{
        width:100%;
        max-width:430px;
        margin:0 auto;
    }

    /* Gallery */
    .gallery-section,
    .gallery{
        padding:70px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:240px;
        gap:12px;
    }

    .gallery-item.large{
        grid-column:span 1;
        grid-row:span 1;
    }

    .gallery-track img{
        width:175px;
        height:130px;
    }

    /* Success stories */
    .success-stories{
        padding:75px 0 60px;
    }

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

    .success-heading p{
        font-size:15px;
        line-height:26px;
    }

    .success-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    /* Programs */
    .program-page-hero{
        min-height:520px;
        padding:150px 0 70px;
    }

    .program-page-hero-content{
        margin:70px auto 0;
        width:92%;
    }

    .program-page-hero h1{
        font-size:38px;
    }

    .program-page-hero p{
        font-size:15px;
        line-height:27px;
    }

    .program-intro{
        padding:75px 0 65px;
    }

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

    .program-intro-heading p{
        font-size:15px;
        line-height:27px;
    }

    .program-feature{
        padding:75px 0;
    }

    .program-feature-image{
        height:320px;
        border-radius:22px;
    }

    .program-number{
        width:58px;
        height:58px;
        top:15px;
        left:15px;
        border-radius:16px;
        font-size:18px;
    }

    .program-feature-content h2{
        font-size:34px;
    }

    .program-feature-content > p{
        font-size:15px;
        line-height:27px;
    }

    /* Contact */
    .contact-form-box{
        padding:30px 20px;
    }

    .contact-form-box h3{
        font-size:25px;
    }

    .form-group input,
    .form-group textarea{
        width:100%;
        max-width:100%;
        font-size:14px;
    }

    .contact-submit{
        width:100%;
    }

    .contact-cta{
        padding:75px 20px;
    }

    .contact-cta h2{
        font-size:34px;
    }

    .contact-cta p{
        font-size:15px;
        line-height:26px;
    }

    .contact-cta-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .contact-cta-buttons a,
    .contact-cta-buttons button{
        width:100%;
    }

    /* Footer */
    .footer-top{
        text-align:center;
    }

    .footer-grid,
    .footer-content,
    .footer-columns{
        grid-template-columns:1fr;
        flex-direction:column;
        text-align:center;
    }

    .footer-socials{
        justify-content:center;
    }

}

/* ---------- SMALL PHONES ---------- */
@media (max-width: 480px){

    .container{
        width:94%;
    }

    .topbar .left span{
        font-size:10px;
    }

    nav{
        padding:7px 9px;
    }

    .logo img,
    header.sticky .logo img{
        width:92px;
    }

    nav .donate-btn{
        padding:8px 11px;
        font-size:11px;
    }

    nav ul li a{
        font-size:11px;
        padding:4px 5px;
    }

    .hero{
        padding-top:195px;
    }

    .hero h1{
        font-size:31px;
    }

    .hero h1 span{
        font-size:43px;
    }

    .hero p{
        font-size:14px;
        line-height:24px;
    }

    .hero-left > .donate-btn{
        max-width:100%;
    }

    .about-video-card h2,
    .section-heading h2,
    .section-title h2,
    .mission-text h2,
    .about-story-content h2,
    .why-content h2,
    .success-heading h2,
    .program-intro-heading h2,
    .program-feature-content h2,
    .contact-cta h2{
        font-size:29px;
    }

    .impact-card h3{
        font-size:36px;
    }

    .gallery-grid{
        grid-auto-rows:210px;
    }

    .gallery-track img{
        width:150px;
        height:110px;
    }

    .program-page-hero h1{
        font-size:32px;
    }

    .program-page-hero p{
        font-size:14px;
        line-height:24px;
    }

    .program-feature-image{
        height:280px;
    }

}

/* Prevent long words / URLs from forcing horizontal scrolling. */
body, p, h1, h2, h3, h4, h5, h6, a, li{
    overflow-wrap:break-word;
}

input, textarea, select, button{
    max-width:100%;
}
/* =========================================================
   MOBILE TOPBAR + HEADER + HERO FIX
   ========================================================= */

@media (max-width: 768px) {

    /* =========================
       TOP BAR
       ========================= */

    .topbar {
        position: relative;
        z-index: 1000;
        height: auto;
        padding: 7px 0;
    }

    .topbar .container {
        width: 94%;
        min-height: 26px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .topbar .left {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .topbar .left span {
        font-size: 9px;
        white-space: nowrap;
    }

    .topbar .right {
        display: none;
    }


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

    header {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        z-index: 999;
    }

    header .container {
        width: 94%;
        padding: 8px 0;
    }

    nav {
        height: 62px;
        padding: 0 10px;
        border-radius: 12px;
        gap: 7px;
    }

    .logo {
        flex-shrink: 0;
        padding: 5px 7px;
    }

    .logo img {
        width: 38px;
        height: auto;
    }

    nav ul {
        display: flex;
        flex: 1;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        font-size: 9px;
        white-space: nowrap;
    }

    nav > .donate-btn {
        flex-shrink: 0;
        padding: 8px 10px !important;
        min-height: auto !important;
        font-size: 9px !important;
        white-space: nowrap;
    }


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

    .hero {
        min-height: 570px;
        padding: 75px 0 55px;

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hero-wrapper {
        width: 94%;
        min-height: 440px;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .hero-left {
        width: 72%;
        max-width: 500px;
        text-align: left;
    }

    .hero-left .small-title {
        font-size: 9px;
        padding: 7px 12px;
        margin-bottom: 13px;
        letter-spacing: 1.3px;
    }

    .hero-left h1 {
        font-size: 37px;
        line-height: 1.05;
        margin-bottom: 12px;
    }

    .hero-left h1 span {
        font-size: 51px;
        line-height: .95;
        margin-top: 4px;
    }

    .hero-left p {
        max-width: 400px;
        font-size: 12px;
        line-height: 1.6;
        margin: 0 0 20px;
    }


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

    .hero-left a.donate-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;

        height: 38px !important;
        min-height: 38px !important;

        padding: 8px 11px !important;
        margin: 0 4px 6px 0 !important;

        font-size: 9px !important;
        line-height: 1 !important;

        gap: 5px;
        white-space: nowrap;
        border-radius: 30px;
    }

    .hero-left a.donate-btn i {
        font-size: 9px !important;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .topbar {
        padding: 5px 0;
    }

    .topbar .container {
        width: 96%;
        min-height: 22px;
    }

    .topbar .left {
        gap: 7px;
    }

    .topbar .left span {
        font-size: 7px;
    }

    .topbar .left span i {
        font-size: 7px;
    }


    /* HEADER */

    header .container {
        width: 96%;
        padding: 6px 0;
    }

    nav {
        height: 56px;
        padding: 0 7px;
        gap: 5px;
    }

    .logo {
        padding: 4px 5px;
    }

    .logo img {
        width: 33px;
    }

    nav ul {
        gap: 6px;
    }

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

    nav > .donate-btn {
        padding: 7px 7px !important;
        font-size: 7px !important;
    }


    /* HERO */

    .hero {
        min-height: 510px;
        padding: 55px 0 45px;
    }

    .hero-wrapper {
        width: 96%;
        min-height: 400px;
    }

    .hero-left {
        width: 75%;
    }

    .hero-left .small-title {
        font-size: 7px;
        padding: 6px 9px;
        letter-spacing: .8px;
        margin-bottom: 10px;
    }

    .hero-left h1 {
        font-size: 29px;
        line-height: 1.05;
    }

    .hero-left h1 span {
        font-size: 40px;
    }

    .hero-left p {
        max-width: 300px;
        font-size: 10px;
        line-height: 1.55;
        margin-bottom: 16px;
    }


    /* SMALLER HERO BUTTONS */

    .hero-left a.donate-btn {
        height: 34px !important;
        min-height: 34px !important;
        padding: 7px 9px !important;
        margin-right: 3px !important;
        font-size: 8px !important;
        gap: 4px;
    }

    .hero-left a.donate-btn i {
        font-size: 8px !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 360px) {

    .topbar .left {
        gap: 5px;
    }

    .topbar .left span {
        font-size: 6.5px;
    }

    header .container {
        padding: 5px 0;
    }

    nav {
        height: 52px;
        padding: 0 5px;
    }

    .logo img {
        width: 30px;
    }

    nav ul {
        gap: 4px;
    }

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

    nav > .donate-btn {
        padding: 6px 5px !important;
        font-size: 6.5px !important;
    }


    /* HERO */

    .hero {
        min-height: 480px;
        padding: 45px 0 40px;
    }

    .hero-wrapper {
        min-height: 370px;
    }

    .hero-left {
        width: 78%;
    }

    .hero-left h1 {
        font-size: 26px;
    }

    .hero-left h1 span {
        font-size: 35px;
    }

    .hero-left p {
        font-size: 9px;
        max-width: 250px;
    }

    .hero-left a.donate-btn {
        height: 31px !important;
        min-height: 31px !important;
        padding: 6px 8px !important;
        font-size: 7px !important;
    }

    .hero-left a.donate-btn i {
        font-size: 7px !important;
    }
}
/* Move hero content higher on desktop */
@media (min-width: 769px) {
    .hero-left {
        transform: translateY(-90px);
    }
    
}
/* Move hero content higher on mobile */
@media (max-width: 768px) {
    .hero-left {
        transform: translateY(-80px);
    }
}
@media (max-width: 768px) {
    .hero-left p {
        position: relative;
        top: 70px;
    }
}
/* Move hero TEXT only higher on mobile */
@media (max-width: 768px) {

    .hero-left .small-title,
    .hero-left h1,
    .hero-left p {
        position: relative;
        top: 40px;
    }

}
@media (max-width: 768px) {
    .hero-left .small-title,
    .hero-left h1 {
        position: relative;
        top: -50px;
    }
}
/* Move ONLY hero buttons down on mobile */
@media (max-width: 768px) {
    .hero-left a.donate-btn {
        position: relative;
        top: 180px;
    }
}
/* ==========================================
   SMALLER ABOUT US CARD - MOBILE
   ========================================== */

@media (max-width: 768px) {

    .about-video-card {
        width: 75%;
        max-width: 360px;
        padding: 25px 20px;
        margin: 0 auto;
    }

}
@media (max-width: 768px) {

    .about-video-card .section-badge {
        font-size: 8px;
        padding: 6px 10px;
    }

    .about-video-card h2 {
        font-size: 25px;
        line-height: 1.1;
        margin: 12px 0;
    }

    .about-video-card p {
        font-size: 11px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

}
/* ==========================================
   ROLAK FOUNDATION LEADERSHIP
   FINAL LAYOUT
========================================== */

.leadership {
    width: 100%;
    padding: 100px 0;
    background: #EAF4F7;
}

.leadership .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* SECTION HEADING */

.leadership .section-heading {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.leadership .section-heading h2 {
    font-size: 42px;
    line-height: 1.25;
    margin: 18px 0;
}

.leadership .section-heading h2 span {
    display: block;
    color: var(--primary);
}

.leadership .section-heading p {
    font-size: 17px;
    line-height: 28px;
}


/* ==========================================
   FOUNDER - LARGE
========================================== */

.founder-profile {
    width: 650px !important;
    max-width: 90% !important;
    margin: 0 auto 60px !important;

    background: #ffffff !important;

    border-radius: 30px !important;
    overflow: hidden !important;

    border-top: 7px solid var(--secondary);

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

    text-align: center;
}


/* FOUNDER IMAGE */

.founder-profile .founder-image {
    width: 100% !important;
    height: 550px !important;
    overflow: hidden !important;
}

.founder-profile .founder-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
}


/* FOUNDER TEXT */

.founder-profile .founder-info {
    padding: 30px 50px 40px !important;
}

.founder-profile .founder-info h3 {
    font-size: 32px !important;
    margin: 0 0 10px !important;
}

.founder-profile .founder-info .position {
    display: inline-block;
    padding: 8px 20px;
    margin-bottom: 20px;

    background: var(--primary);
    color: #fff;

    border-radius: 30px;
}

.founder-profile .founder-info p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 27px !important;
}


/* ==========================================
   TWO OTHER LEADERS
========================================== */

.other-leaders {
    width: 700px !important;
    max-width: 90% !important;

    margin: 0 auto !important;

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

    gap: 35px !important;
}


/* SMALL CARDS */

.small-leader {
    width: 100% !important;

    background: #fff !important;

    border-radius: 24px !important;
    overflow: hidden !important;

    box-shadow: 0 18px 50px rgba(0,0,0,.10);

    text-align: center;
}


/* SMALL IMAGES */

.small-leader-image {
    width: 100% !important;
    height: 300px !important;
    overflow: hidden !important;
}

.small-leader-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    display: block !important;
}


/* SMALL TEXT */

.small-leader-info {
    padding: 22px 20px 28px !important;
}

.small-leader-info h3 {
    font-size: 20px !important;
    margin: 0 0 8px !important;
}

.small-leader-info .position {
    display: inline-block;

    background: var(--primary);
    color: #fff;

    padding: 6px 15px;

    border-radius: 30px;

    font-size: 12px;

    margin-bottom: 15px;
}

.small-leader-info p {
    font-size: 13px !important;
    line-height: 22px !important;
    margin: 0 !important;
}


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

@media (max-width: 768px) {

    .leadership {
        padding: 70px 0;
    }

    .leadership .container {
        width: 92%;
    }

    .leadership .section-heading h2 {
        font-size: 29px;
    }

    .leadership .section-heading p {
        font-size: 14px;
        line-height: 23px;
    }


    /* LARGE FOUNDER */

    .founder-profile {
        width: 92% !important;
        max-width: 430px !important;
    }

    .founder-profile .founder-image {
        height: 420px !important;
    }

    .founder-profile .founder-info {
        padding: 25px 20px 30px !important;
    }

    .founder-profile .founder-info h3 {
        font-size: 24px !important;
    }

    .founder-profile .founder-info p {
        font-size: 13px !important;
        line-height: 22px !important;
    }


    /* TWO SMALLER WOMEN */

    .other-leaders {
        width: 92% !important;
        max-width: 430px !important;

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

        gap: 12px !important;
    }

    .small-leader-image {
        height: 210px !important;
    }

    .small-leader-info {
        padding: 15px 8px 20px !important;
    }

    .small-leader-info h3 {
        font-size: 14px !important;
    }

    .small-leader-info p {
        font-size: 10px !important;
        line-height: 17px !important;
    }

}
/* ==========================================
   LEADERSHIP FINAL BACKGROUND
========================================== */

section.leadership {
    width: 100%;
    padding: 100px 0;

    background:
        radial-gradient(
            circle at top left,
            rgba(31,110,140,.08),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(244,194,26,.10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #F8FBFD,
            #EAF4F7
        );
}
/* ==========================================
   LEADERSHIP - TEAL BACKGROUND + SPACING
========================================== */

section.leadership {
    margin-top: 30px !important;
    padding-top: 55px !important;
    padding-bottom: 100px !important;

    position: relative;
    overflow: hidden;

    background: #087F8C !important;
}


/* TEAL STICKY BACKGROUND */

section.leadership::before {
    content: "";

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

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            rgba(5, 111, 123, .88),
            rgba(8, 127, 140, .94)
        ),
        url("images/founder.jpg");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    z-index: 0;
}


/* CONTENT ABOVE BACKGROUND */

section.leadership .container {
    position: relative;
    z-index: 2;
}


/* MAKE THE HEADING WORK WITH TEAL */

section.leadership .section-heading h2 {
    color: #ffffff !important;
}

section.leadership .section-heading h2 span {
    color: #F4C21A !important;
}

section.leadership .section-heading p {
    color: rgba(255,255,255,.90) !important;
}

section.leadership .section-badge {
    color: #ffffff !important;
}
/* ==========================================
   LEADERSHIP STICKY BACKGROUND
========================================== */

section.leadership {
    position: relative !important;
    overflow: hidden !important;
    background: #087F8C !important;
}


/* FIXED FOUNDER IMAGE */

section.leadership::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: url("images/founder.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    /* THIS creates the fixed/sticky effect */
    background-attachment: fixed;

    opacity: .20;

    z-index: 0;
}


/* TEAL OVERLAY */

section.leadership::after {
    content: "";
    position: absolute;

    inset: 0;

    background: rgba(0, 112, 125, .78);

    z-index: 1;
}


/* CONTENT ABOVE BOTH LAYERS */

section.leadership .container {
    position: relative !important;
    z-index: 2 !important;
}
/* Leadership badge text */
section.leadership .section-badge {
    color: #087F8C !important;
    background: #ffffff !important;
}
/* Leadership badge - yellow text */
section.leadership .section-badge {
    color: #F4C21A !important;
    background: #ffffff !important;
}
/* ==========================================
   ROLAK IMPACT SECTION BACKGROUND
========================================== */

.impact {
    background-image:
        linear-gradient(
            rgba(8, 127, 140, 0.35),
            rgba(8, 127, 140, 0.45)
        ),
        url("../images/rolak-impact-section.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    animation: none;
}
/* ==========================================
   STORY • MISSION • VISION
   MOBILE RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .smv-section {
        padding: 75px 0 70px;
        background-position: center center;
    }

    .smv-section .container {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Heading */
    .smv-heading {
        max-width: 100%;
        margin: 0 auto 40px;
        padding: 0 5px;
    }

    .smv-heading span {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .smv-heading h2 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .smv-heading p {
        font-size: 15px;
        line-height: 1.7;
        margin: 0;
    }

    /* Cards become one column */
    .smv-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    /* Cards */
    .smv-card {
        width: 100%;
        box-sizing: border-box;
        padding: 32px 24px;
        border-radius: 18px;
    }

    /* Prevent hover movement on mobile */
    .smv-card:hover {
        transform: none;
    }

    /* Icons */
    .smv-card-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 17px;
        font-size: 21px;
    }

    /* Card titles */
    .smv-card h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    /* Card text */
    .smv-card p {
        font-size: 15px;
        line-height: 1.75;
    }

    /* Read more */
    .read-more-btn {
        font-size: 13px;
        margin-top: 14px;
        padding: 5px 10px;
    }

    /* Expanded content */
    .smv-more {
        margin-top: 5px;
    }

    .smv-more p {
        margin-top: 12px;
        line-height: 1.75;
    }
}


/* ==========================================
   SMALL PHONES
========================================== */

@media (max-width: 480px) {

    .smv-section {
        padding: 65px 0 60px;
    }

    .smv-section .container {
        width: 92%;
    }

    .smv-heading {
        margin-bottom: 32px;
    }

    .smv-heading h2 {
        font-size: 27px;
    }

    .smv-heading p {
        font-size: 14px;
        line-height: 1.65;
    }

    .smv-wrapper {
        gap: 18px;
    }

    .smv-card {
        padding: 28px 20px;
        border-radius: 17px;
    }

    .smv-card h3 {
        font-size: 21px;
    }

    .smv-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}
/*====================================================
OUR IMPACT AREAS — MOBILE RESPONSIVE
====================================================*/

@media (max-width: 768px){

    /*--------------------------------
    MAIN IMPACT SHOWCASE
    --------------------------------*/

    .impact-showcase{
        padding:50px 0 0;
        overflow:hidden;
    }

    .impact-container{
        width:92%;
        display:flex;
        flex-direction:column;
        margin:0 auto;
    }


    /*--------------------------------
    BLUE CONTENT PANEL
    --------------------------------*/

    .impact-left{
        width:100%;
        padding:55px 25px 60px;
        border-radius:28px 28px 0 0;
        box-sizing:border-box;
    }

    .impact-content{
        width:100%;
        margin:0 auto;
    }

    .impact-tag{
        font-size:12px;
        letter-spacing:1.5px;
        margin-bottom:18px;
    }

    .impact-left h2{
        font-size:38px;
        line-height:1.15;
        margin-bottom:15px;
    }

    .impact-left h2 span{
        font-size:52px;
        line-height:1.15;
        margin-top:6px;
    }

    .impact-line{
        width:65px;
        height:4px;
        margin:20px auto;
    }

    .impact-left p{
        max-width:100%;
        font-size:16px;
        line-height:1.75;
        text-align:center;
        margin-bottom:30px;
    }

    .impact-btn{
        font-size:14px;
        padding:13px 18px;
    }


    /*--------------------------------
    DECORATIVE DOTS
    --------------------------------*/

    .dots-top{
        top:20px;
        left:12px;
        width:60px;
        height:60px;
        background-size:14px 14px;
    }

    .dots-bottom{
        bottom:20px;
        right:15px;
        width:60px;
        height:60px;
        background-size:14px 14px;
    }


    /*--------------------------------
    IMAGE
    --------------------------------*/

    .impact-image{
        width:100%;
        height:300px;
        margin-left:0;
        border-radius:0 0 28px 28px;
    }

    .impact-image img{
        width:100%;
        height:100%;
        object-fit:cover;
        border-radius:0 0 28px 28px;
    }

    .impact-image::before{
        border:4px solid #F4C21A;
        border-radius:0 0 28px 28px;
    }


    /*--------------------------------
    IMPACT READ MORE SECTION
    --------------------------------*/

    .impact-readmore{
        margin-top:0;
        padding:45px 0 70px;
    }

    .impact-readmore .container{
        width:92%;
    }

    .impact-rm-grid{
        width:100%;
        grid-template-columns:1fr;
        gap:22px;
    }


    /*--------------------------------
    IMPACT CARD
    --------------------------------*/

    .impact-rm-card{
        width:100%;
        box-sizing:border-box;
        padding:30px 22px;
        border-radius:22px;
    }

    .impact-rm-icon{
        width:75px;
        height:75px;
        margin-bottom:18px;
    }

    .impact-rm-icon i{
        font-size:30px;
    }

    .impact-rm-card h3{
        font-size:21px;
        margin-bottom:12px;
    }

    .impact-rm-summary{
        font-size:15px;
        line-height:1.75;
    }

    .impact-rm-details p{
        font-size:14px;
        line-height:1.75;
    }

    .impact-rm-toggle{
        font-size:13px;
        padding:11px 24px;
    }

}/* =========================================================
   ROLAK FOUNDATION
   CORE FOCUS SECTION
   ========================================================= */

.core-focus {
    position: relative;

    width: 100%;

    min-height: 680px;

    padding: 100px 0;

    overflow: hidden;

    isolation: isolate;

    background: #174e58;
}

/* =========================================================
   VIDEO BACKGROUND — 16:9 LANDSCAPE
   ========================================================= */

.core-focus-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    z-index: -3;

    background: #174e58;
}


/* =========================================================
   16:9 VIDEO
   ========================================================= */
.core-focus-video video {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: auto;

    transform: translate(-50%, -50%);

    display: block;

    filter: none;

    object-fit: contain;
}

/* =========================================================
   VIDEO OVERLAY
   ========================================================= */

.core-focus-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: transparent;
}

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

.core-focus-content {
    position: relative;

    z-index: 2;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.core-focus-heading {
    max-width: 850px;

    margin: 0 auto 50px;

    text-align: center;
}


/* SMALL TITLE */

.core-focus-heading .section-badge {
    display: inline-block;

    margin-bottom: 15px;

    color: #e2bd3d;
}


/* MAIN TITLE */

.core-focus-heading h2 {
    margin: 0;

    font-family: 'Poppins', sans-serif;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}


/* GOLD TITLE */

.core-focus-heading h2 span {
    color: #e2bd3d;
}


/* DESCRIPTION */

.core-focus-heading p {
    max-width: 800px;

    margin: 20px auto 0;

    font-family: 'Open Sans', sans-serif;

    font-size: 16px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.94);
}


/* DIVIDER */

.core-focus-heading .about-divider {
    margin: 20px auto;
}


/* =========================================================
   FOCUS CARDS
   ========================================================= */

.focus-content {
    max-width: 1050px;

    margin: 0 auto;

    display: grid;

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

    gap: 25px;
}


/* =========================================================
   INDIVIDUAL CARD
   ========================================================= */

.focus-item {
    padding: 35px 28px;

    background:
        rgba(255, 255, 255, 0.95);

    border-radius: 18px;

    text-align: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.55);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* CARD HOVER */

.focus-item:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.25);
}


/* =========================================================
   ICON
   ========================================================= */

.focus-icon {
    width: 68px;
    height: 68px;

    margin:
        0 auto 20px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #287b86,
            #d8b83f
        );

    box-shadow:
        0 8px 20px
        rgba(40, 123, 134, 0.25);
}


/* ICON */

.focus-icon i {
    color: #ffffff;

    font-size: 25px;
}


/* =========================================================
   CARD TITLE
   ========================================================= */

.focus-text h3 {
    margin:
        0 0 10px;

    font-family:
        'Poppins',
        sans-serif;

    font-size: 20px;

    font-weight: 600;

    color: #285b68;
}


/* =========================================================
   CARD DESCRIPTION
   ========================================================= */

.focus-text p {
    margin: 0;

    font-family:
        'Open Sans',
        sans-serif;

    font-size: 15px;

    line-height: 1.7;

    color: #5f6c72;
}


/* =========================================================
   COMMITMENT
   ========================================================= */

.focus-commitment {
    max-width: 900px;

    margin:
        30px auto 0;

    padding:
        18px 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    background:
        rgba(255, 255, 255, 0.94);

    border-radius: 12px;

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


/* COMMITMENT ICON */

.focus-commitment i {
    flex-shrink: 0;

    font-size: 22px;

    color: #d8b83f;
}


/* COMMITMENT TEXT */

.focus-commitment p {
    margin: 0;

    font-family:
        'Open Sans',
        sans-serif;

    font-size: 15px;

    line-height: 1.6;

    color: #53636b;
}


/* COMMITMENT BOLD */

.focus-commitment strong {
    color: #285b68;
}


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

@media (max-width: 900px) {

    .core-focus {

        min-height: auto;

        padding:
            80px 20px;
    }


    .core-focus-heading h2 {

        font-size: 34px;
    }


    .core-focus-heading p {

        font-size: 15px;
    }


    .focus-content {

        grid-template-columns:
            1fr;

        max-width: 600px;

        gap: 20px;
    }

}


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

@media (max-width: 600px) {

    .core-focus {

        padding:
            65px 15px;

        min-height: auto;
    }


    /*
       MOBILE USES THE NATURAL VERTICAL
       VIDEO FORMAT.
    */

    .core-focus-video video {

        width: 100%;

        height: 100%;

        object-fit: cover;

        object-position:
            center center;

        transform:
            translate(-50%, -50%);
    }


    /*
       Stronger overlay on mobile so
       text remains readable.
    */

    .core-focus-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(20, 72, 80, 0.62),
                rgba(20, 72, 80, 0.52),
                rgba(0, 0, 0, 0.50)
            );
    }


}
/*====================================================
IMPACT SECTION — CLEAR IMAGE / REMOVE COLOR OVERLAY
====================================================*/

/* Main impact section */
.impact-showcase {
    position: relative;
    overflow: hidden;
}

/* Make sure the image is visible */
.impact-image {
    position: relative;
    overflow: hidden;
}

/* Image itself */
.impact-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    position: relative;
    z-index: 1;
}

/* REMOVE ANY COLOUR OVERLAY */
.impact-image::after,
.impact-image::before {
    background: transparent !important;
}

/* If an overlay element exists */
.impact-overlay,
.impact-image-overlay,
.impact-bg-overlay {
    background: transparent !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Keep image above background layers */
.impact-image img {
    opacity: 1 !important;
    filter: none !important;
}

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

@media (max-width: 768px) {

    .impact-image {
        width: 100%;
        height: 300px;
        margin-left: 0;
        border-radius: 0 0 28px 28px;
        overflow: hidden;
    }

    .impact-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        border-radius: 0 0 28px 28px;
    }

    /* Remove mobile overlay too */
    .impact-image::before,
    .impact-image::after {
        background: transparent !important;
        opacity: 0 !important;
    }

    .impact-overlay,
    .impact-image-overlay,
    .impact-bg-overlay {
        display: none !important;
    }
}
/*====================================================
LEADERSHIP — FOUNDER + CO-DIRECTORS
====================================================*/

.leadership {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}


/*==================================
FOUNDER PROFILE
===================================*/

.founder-profile {
    max-width: 1100px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: stretch;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0,0,0,0.10);
}


.founder-image {
    min-height: 560px;
    overflow: hidden;
}


.founder-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}


.founder-info {
    padding: 55px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.founder-info .position {
    display: inline-block;
    color: #F4C21A;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}


.founder-info h3 {
    font-family: "Poppins", sans-serif;
    font-size: 38px;
    line-height: 1.2;
    margin: 0;
    color: #123F45;
}


.founder-divider {
    width: 65px;
    height: 4px;
    background: #F4C21A;
    margin: 20px 0 25px;
}


.founder-info p {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 15px;
}


/* =========================================================
   ROLAK FOUNDATION — CO-DIRECTORS
   FINAL RESPONSIVE VERSION
   ---------------------------------------------------------
   Tablet / iPad:
   - Image is completely separated from text
   - Image appears FIRST
   - Text card appears BELOW image
   - No overlap
   - No negative margins
   - No absolute positioning
   ========================================================= */

/* =========================================================
   ROLAK FOUNDATION
   CO-DIRECTORS SECTION
   COMPLETE RESPONSIVE SYSTEM
   ========================================================= */


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

.codirectors-section {

    position: relative;

    width: 100%;

    padding: 90px 0;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.codirectors-section .container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding-left: 20px;
    padding-right: 20px;

    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.codirectors-heading {

    width: 100%;

    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}


.codirectors-heading .section-badge {

    display: inline-block;

    margin-bottom: 12px;
}


.codirectors-heading h2 {

    margin: 0;

    padding: 0;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 700;
}


.codirectors-heading h2 span {

    color: #008c95;
}


.codirectors-heading .about-divider {

    margin: 18px auto 22px;
}


.codirectors-heading > p {

    width: 100%;

    max-width: 800px;

    margin: 0 auto;

    padding: 0;

    font-size: 17px;

    line-height: 1.8;

    color: #666666;
}


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

.codirectors-grid {

    width: 100%;

    display: grid;

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

    gap: 35px;

    align-items: start;

    box-sizing: border-box;
}


/* =========================================================
   DIRECTOR CARD
   ========================================================= */

.director-card {

    width: 100%;

    min-width: 0;

    display: flex;

    flex-direction: column;

    margin: 0;

    padding: 0;

    background: #ffffff;

    border-radius: 22px;

    overflow: hidden;

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

    box-sizing: border-box;
}


/* =========================================================
   DIRECTOR IMAGE AREA
   ========================================================= */

.director-card-image {

    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    margin: 0;

    padding: 0;

    overflow: hidden;

    background: #f2f2f2;

    flex-shrink: 0;

    box-sizing: border-box;
}


/* =========================================================
   DIRECTOR IMAGE
   ========================================================= */

.director-card-image img {

    display: block;

    position: static;

    width: 100%;

    height: 100%;

    max-width: none;

    margin: 0;

    padding: 0;

    border: 0;

    object-fit: cover;

    object-position: center center;

    transform: none;

    box-sizing: border-box;
}


/* =========================================================
   DIRECTOR INFORMATION
   ========================================================= */

.director-card-content {

    position: static;

    width: 100%;

    margin: 0;

    padding: 32px;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   DIRECTOR NAME
   ========================================================= */

.director-card-content h3 {

    margin: 0 0 8px;

    padding: 0;

    font-size: 30px;

    line-height: 1.25;

    font-weight: 700;

    color: #073b4c;
}


/* =========================================================
   DIRECTOR ROLE
   ========================================================= */

.director-card-role {

    display: block;

    margin: 0 0 22px;

    padding: 0;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #008c95;
}


/* =========================================================
   BIOGRAPHY
   ========================================================= */

.director-card-bio {

    width: 100%;

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


.director-card-bio > p {

    margin: 0 0 18px;

    padding: 0;

    font-size: 16px;

    line-height: 1.85;

    color: #666666;
}


/* =========================================================
   ADDITIONAL BIOGRAPHY
   ========================================================= */

.director-card-more {

    display: none;

    width: 100%;

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


.director-card-more p {

    margin: 0 0 18px;

    padding: 0;

    font-size: 16px;

    line-height: 1.85;

    color: #666666;
}


/* =========================================================
   EXPANDED BIO
   ========================================================= */

.director-card-bio.expanded
.director-card-more {

    display: block;
}


/* =========================================================
   READ MORE BUTTON
   ========================================================= */

.director-card-button {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin: 3px 0 0;

    padding: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color: #073b4c;

    font-family: inherit;

    font-size: 15px;

    line-height: 1.4;

    font-weight: 700;

    cursor: pointer;

    appearance: none;

    transition:
        color 0.3s ease;
}


.director-card-button:hover {

    color: #008c95;
}


/* =========================================================
   READ MORE / READ LESS
   ========================================================= */

.director-read-more {

    display: inline;
}


.director-read-less {

    display: none;
}


.director-card-bio.expanded
.director-read-more {

    display: none;
}


.director-card-bio.expanded
.director-read-less {

    display: inline;
}


/* =========================================================
   ARROW
   ========================================================= */

.director-button-arrow {

    display: inline-block;

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.director-card-bio.expanded
.director-button-arrow {

    transform: rotate(180deg);
}


/* =========================================================
   TABLET / IPAD
   1100px and below
   ========================================================= */

@media screen and (max-width: 1100px) {


    /* -----------------------------------------------------
       SECTION
       ----------------------------------------------------- */

    .codirectors-section {

        padding: 75px 0;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .codirectors-heading {

        margin-bottom: 45px;
    }


    .codirectors-heading h2 {

        font-size: 36px;
    }


    /* -----------------------------------------------------
       ONE CARD PER ROW
       ----------------------------------------------------- */

    .codirectors-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* -----------------------------------------------------
       CARD
       ----------------------------------------------------- */

    .director-card {

        width: 100%;

        max-width: 760px;

        margin-left: auto;
        margin-right: auto;

        display: flex;

        flex-direction: column;

        border-radius: 22px;

        overflow: hidden;
    }


    /* -----------------------------------------------------
       IMAGE
       ----------------------------------------------------- */

    .director-card-image {

        width: 100%;

        aspect-ratio: 4 / 3;

        flex-shrink: 0;
    }


    .director-card-image img {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

        object-position: center center;

        position: static;

        transform: none;
    }


    /* -----------------------------------------------------
       CONTENT
       ----------------------------------------------------- */

    .director-card-content {

        position: static;

        width: 100%;

        margin: 0;

        padding: 30px;

        transform: none;

        box-sizing: border-box;
    }


    /* -----------------------------------------------------
       NAME
       ----------------------------------------------------- */

    .director-card-content h3 {

        font-size: 30px;
    }


    /* -----------------------------------------------------
       BIO
       ----------------------------------------------------- */

    .director-card-bio {

        position: static;

        width: 100%;

        margin: 0;

        padding: 0;
    }


    .director-card-bio > p,
    .director-card-more p {

        font-size: 16px;

        line-height: 1.8;
    }
}


/* =========================================================
   MOBILE
   600px AND BELOW
   ========================================================= */

@media screen and (max-width: 600px) {


    /* -----------------------------------------------------
       SECTION
       ----------------------------------------------------- */

    .codirectors-section {

        padding: 60px 0;
    }


    /* -----------------------------------------------------
       CONTAINER
       ----------------------------------------------------- */

    .codirectors-section .container {

        padding-left: 16px;

        padding-right: 16px;
    }


    /* -----------------------------------------------------
       HEADING
       ----------------------------------------------------- */

    .codirectors-heading {

        margin-bottom: 35px;
    }


    .codirectors-heading h2 {

        font-size: 31px;
    }


    .codirectors-heading > p {

        font-size: 15px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       GRID
       ----------------------------------------------------- */

    .codirectors-grid {

        grid-template-columns: 1fr;

        gap: 28px;
    }


    /* -----------------------------------------------------
       CARD
       ----------------------------------------------------- */

    .director-card {

        width: 100%;

        max-width: 100%;

        border-radius: 18px;
    }


    /* -----------------------------------------------------
       IMAGE
       ----------------------------------------------------- */

    .director-card-image {

        width: 100%;

        aspect-ratio: 4 / 3;
    }


    .director-card-image img {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

        object-position: center center;
    }


    /* -----------------------------------------------------
       CONTENT
       ----------------------------------------------------- */

    .director-card-content {

        width: 100%;

        padding: 25px 22px 26px;
    }


    /* -----------------------------------------------------
       NAME
       ----------------------------------------------------- */

    .director-card-content h3 {

        font-size: 26px;

        line-height: 1.25;
    }


    /* -----------------------------------------------------
       ROLE
       ----------------------------------------------------- */

    .director-card-role {

        margin-bottom: 18px;

        font-size: 13px;
    }


    /* -----------------------------------------------------
       BIO
       ----------------------------------------------------- */

    .director-card-bio > p,
    .director-card-more p {

        font-size: 15px;

        line-height: 1.75;
    }


    /* -----------------------------------------------------
       BUTTON
       ----------------------------------------------------- */

    .director-card-button {

        font-size: 15px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media screen and (max-width: 400px) {


    .director-card-content {

        padding: 22px 18px 24px;
    }


    .director-card-content h3 {

        font-size: 24px;
    }


    .director-card-role {

        font-size: 12px;

        letter-spacing: 1.7px;
    }
}
/*====================================================
ROLak FOUNDATION LEADERSHIP
FOUNDER STORY + CO-DIRECTORS
====================================================*/

.leadership {
    position: relative;
    padding: 100px 0;
    background: #f8faf9;
    overflow: hidden;
}


/*==================================
FOUNDER FULL SECTION
===================================*/

.founder-story-section {
    max-width: 1100px;
    margin: 60px auto 0;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
}


/*==================================
FOUNDER INTRO — TOP
===================================*/

.founder-intro {
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 520px;
}


.founder-intro-image {
    position: relative;
    overflow: hidden;
}


.founder-intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}


.founder-intro-content {
    padding: 65px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.founder-label {
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    color: #F4C21A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
}


.founder-intro-content h3 {
    font-family: "Poppins", sans-serif;
    color: #123F45;
    font-size: 40px;
    line-height: 1.2;
    margin: 0;
}


.founder-line {
    width: 65px;
    height: 4px;
    background: #F4C21A;
    margin: 22px 0 25px;
}


.founder-intro-content p {
    font-family: "Open Sans", sans-serif;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 15px;
}


.founder-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: 15px;
    padding: 13px 23px;
    background: #123F45;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}


.founder-read-btn:hover {
    background: #F4C21A;
    color: #123F45;
    transform: translateY(-2px);
}


/*==================================
FOUNDER STORY — LOWER SECTION
===================================*/

.founder-story {
    position: relative;
    padding: 75px 85px 80px;
    background: #ffffff;
    border-top: 1px solid rgba(18, 63, 69, 0.08);
}


.founder-story-heading {
    text-align: center;
    margin-bottom: 45px;
}


.founder-story-heading > span {
    display: block;
    font-family: "Open Sans", sans-serif;
    color: #F4C21A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.founder-story-heading h3 {
    font-family: "Poppins", sans-serif;
    color: #123F45;
    font-size: 38px;
    line-height: 1.2;
    margin: 0;
}


.founder-story-heading h3 strong {
    color: #F4C21A;
    font-weight: 700;
}


.founder-story-divider {
    width: 65px;
    height: 4px;
    background: #F4C21A;
    margin: 20px auto 0;
}


.founder-story-content {
    max-width: 900px;
    margin: 0 auto;
}


.founder-story-content > p {
    font-family: "Open Sans", sans-serif;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 22px;
}


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

.founder-quote {
    position: relative;
    margin: 45px 0;
    padding: 30px 35px;
    text-align: center;
    border-left: 4px solid #F4C21A;
    border-right: 4px solid #F4C21A;
    background: #f8faf9;
}


.founder-quote p {
    font-family: "Poppins", sans-serif;
    color: #123F45;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}


.founder-quote strong {
    color: #F4C21A;
}


/*==================================
FOUNDER SIGNATURE
===================================*/

.founder-signature {
    text-align: right;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(18, 63, 69, 0.12);
}


.founder-signature strong {
    display: block;
    font-family: "Poppins", sans-serif;
    color: #123F45;
    font-size: 18px;
}


.founder-signature span {
    display: block;
    font-family: "Open Sans", sans-serif;
    color: #F4C21A;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}


.founder-signature small {
    display: block;
    font-family: "Open Sans", sans-serif;
    color: #777;
    font-size: 12px;
    margin-top: 3px;
}


/* =========================================================
   ROLAK FOUNDATION
   DIRECTORS / PROFILE CARDS
   ========================================================= */

.codirectors-section {

    padding: 100px 0;

    background: #f7f9f8;

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.codirectors-heading {

    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;

}


.codirectors-heading h2 {

    margin: 15px 0 20px;

    font-size: 42px;

    line-height: 1.2;

}


.codirectors-heading h2 span {

    color: #174e58;

}


.codirectors-heading p {

    max-width: 700px;

    margin: 0 auto;

    color: #555;

    font-size: 16px;

    line-height: 1.8;

}


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

.codirectors-grid {

    display: grid;

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

    gap: 35px;

    align-items: start;

}


/* =========================================================
   PROFILE CARD
   ========================================================= */

.director-profile-card {

    overflow: hidden;

    background: #ffffff;

    border-radius: 18px;

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

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


.director-profile-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.12);

}


/* =========================================================
   PHOTO
   ========================================================= */

.director-profile-image {

    width: 100%;

    height: 430px;

    overflow: hidden;

}


.director-profile-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 0.5s ease;

}


.director-profile-card:hover
.director-profile-image img {

    transform: scale(1.03);

}


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

.director-profile-content {

    padding: 32px 35px 35px;

}


.director-profile-content h3 {

    margin: 0 0 7px;

    font-size: 28px;

    line-height: 1.2;

    color: #174e58;

}


.director-profile-role {

    display: block;

    margin-bottom: 22px;

    color: #286f78;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   BIO
   ========================================================= */

.director-profile-bio p {

    margin: 0 0 17px;

    color: #555;

    font-size: 15px;

    line-height: 1.85;

}


/* =========================================================
   HIDDEN BIO
   ========================================================= */

.director-profile-more {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease;

}


.director-profile-bio.expanded
.director-profile-more {

    max-height: 1000px;

    opacity: 1;

}


/* =========================================================
   READ MORE BUTTON
   ========================================================= */

.director-profile-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 3px;

    padding: 8px 0;

    border: none;

    background: transparent;

    color: #174e58;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

}


.director-profile-button:hover {

    color: #286f78;

}


/* =========================================================
   READ MORE / READ LESS
   ========================================================= */

.director-read-less {

    display: none;

}


.director-profile-bio.expanded
.director-read-more {

    display: none;

}


.director-profile-bio.expanded
.director-read-less {

    display: inline;

}


/* =========================================================
   ARROW
   ========================================================= */

.director-button-arrow {

    transition:
        transform 0.35s ease;

}


.director-profile-bio.expanded
.director-button-arrow {

    transform: rotate(180deg);

}


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

@media screen and (max-width: 900px) {

    .codirectors-grid {

        grid-template-columns: 1fr;

        max-width: 650px;

        margin: 0 auto;

    }

}


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

@media screen and (max-width: 600px) {

    .codirectors-section {

        padding: 70px 0;

    }


    .codirectors-heading {

        margin-bottom: 40px;

    }


    .codirectors-heading h2 {

        font-size: 32px;

    }


    .director-profile-image {

        height: 350px;

    }


    .director-profile-content {

        padding: 27px 23px 28px;

    }


    .director-profile-content h3 {

        font-size: 24px;

    }


    .director-profile-bio p {

        font-size: 14px;

        line-height: 1.75;

    }

}

/*====================================================
======================================================
        ROLAK FOUNDATION — OUR FOUR PILLARS
======================================================
====================================================*/

:root {
    --rolak-teal: #008C95;
    --rolak-teal-dark: #006F78;
    --rolak-yellow: #F4C21A;
    --rolak-dark: #173B3F;
    --rolak-text: #555555;
    --rolak-light: #F7FBFB;
    --rolak-white: #FFFFFF;
}


/*====================================================
MAIN SECTION
====================================================*/

.pillars-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 95px 0 100px;
    overflow: hidden;
}


/*====================================================
CONTAINER
====================================================*/

.pillars-section .container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


/*====================================================
SECTION HEADING
====================================================*/

.pillars-section .section-heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 58px;
    padding: 0;
    text-align: center;
}


/* Small heading */

.pillars-section .section-heading > span {
    display: block;
    margin: 0 0 13px;

    color: var(--rolak-teal);

    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    line-height: 1.4;

    text-transform: uppercase;
    text-align: center;
}


/* Main heading */

.pillars-section .section-heading h2 {
    margin: 0 auto 18px;

    color: var(--rolak-dark);

    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
    text-align: center;
}


/* Heading highlighted portion */

.pillars-section .section-heading h2 span {
    display: inline;

    color: var(--rolak-teal);

    font-family: inherit;
    font-size: inherit;
    font-weight: 700;

    letter-spacing: normal;
    text-transform: none;
}


/* Heading paragraph */

.pillars-section .section-heading p {
    width: 100%;
    max-width: 750px;

    margin: 0 auto;

    color: var(--rolak-text);

    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.85;
    text-align: center;
}


/*====================================================
DECORATIVE HEADING LINE
====================================================*/

.pillars-section .about-divider {
    position: relative;

    width: 70px;
    height: 4px;

    margin: 22px auto 24px;

    background: var(--rolak-yellow);

    border-radius: 10px;
}

.pillars-section .about-divider::before,
.pillars-section .about-divider::after {
    content: "";

    position: absolute;
    top: 50%;

    width: 6px;
    height: 6px;

    background: var(--rolak-yellow);

    border-radius: 50%;

    transform: translateY(-50%);
}

.pillars-section .about-divider::before {
    left: -13px;
}

.pillars-section .about-divider::after {
    right: -13px;
}


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

.pillars-grid {
    width: 100%;

    display: grid;

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

    gap: 30px;

    margin: 0 auto;
}


/*====================================================
PILLAR CARD
====================================================*/

.pillar-card {
    position: relative;

    width: 100%;
    min-height: 100%;

    box-sizing: border-box;

    padding: 40px 38px 38px;

    background: var(--rolak-white);

    border: 1px solid rgba(0, 140, 149, 0.15);

    border-radius: 22px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Yellow top border */

.pillar-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: var(--rolak-yellow);
}


/* Subtle teal background decoration */

.pillar-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -85px;
    bottom: -85px;

    border: 1px solid rgba(0, 140, 149, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


/* Hover */

.pillar-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 140, 149, 0.35);

    box-shadow:
        0 18px 45px rgba(0, 140, 149, 0.13);
}


/*====================================================
PILLAR ICON
====================================================*/

.pillar-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;

    margin: 0 0 25px;

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

    background: var(--rolak-teal);

    border-radius: 50%;

    box-shadow:
        0 8px 22px rgba(0, 140, 149, 0.20);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.pillar-card:hover .pillar-icon {
    background: var(--rolak-teal-dark);

    transform: scale(1.05);
}


.pillar-icon i {
    color: var(--rolak-yellow);

    font-size: 29px;

    line-height: 1;
}


/*====================================================
PILLAR NUMBER
====================================================*/

.pillar-number {
    position: absolute;

    top: 28px;
    right: 30px;

    z-index: 1;

    color: rgba(0, 140, 149, 0.08);

    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;

    line-height: 1;
}


/*====================================================
PILLAR TITLE
====================================================*/

.pillar-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: var(--rolak-teal);

    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;

    line-height: 1.35;
}


/*====================================================
PILLAR DESCRIPTION
====================================================*/

.pillar-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--rolak-text);

    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;

    line-height: 1.8;
}


/*====================================================
BOTTOM CONCLUSION
====================================================*/

.pillars-conclusion {
    position: relative;

    width: 100%;
    max-width: 1000px;

    margin: 60px auto 0;

    padding: 42px 65px;

    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            var(--rolak-teal),
            var(--rolak-teal-dark)
        );

    border-radius: 22px;

    text-align: center;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0, 140, 149, 0.16);
}


/* Yellow top accent */

.pillars-conclusion::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 90px;
    height: 5px;

    background: var(--rolak-yellow);

    border-radius: 0 0 8px 8px;

    transform: translateX(-50%);
}


/* Decorative circle */

.pillars-conclusion::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -75px;
    top: -85px;

    border: 2px solid rgba(244, 194, 26, 0.18);

    border-radius: 50%;

    pointer-events: none;
}


/* Conclusion text */

.pillars-conclusion p {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    color: #ffffff;

    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.9;

    text-align: center;
}


/* Yellow highlighted words */

.pillars-conclusion strong {
    color: var(--rolak-yellow);

    font-weight: 700;
}


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

@media (max-width: 992px) {

    .pillars-section {
        padding: 80px 0 85px;
    }

    .pillars-section .container {
        width: 92%;
    }

    .pillars-section .section-heading {
        max-width: 750px;
        margin-bottom: 48px;
    }

    .pillars-section .section-heading h2 {
        font-size: 36px;
    }

    .pillars-grid {
        gap: 24px;
    }

    .pillar-card {
        padding: 35px 30px;
    }

    .pillar-card h3 {
        font-size: 21px;
    }

    .pillar-card p {
        font-size: 14px;
    }

    .pillars-conclusion {
        padding: 38px 45px;
    }
}


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

@media (max-width: 768px) {

    .pillars-section {
        padding: 65px 0 70px;
    }


    /* Container */

    .pillars-section .container {
        width: 92%;
        margin: 0 auto;
    }


    /* Heading */

    .pillars-section .section-heading {
        width: 100%;
        max-width: 100%;

        margin: 0 auto 40px;

        padding: 0;

        text-align: center;
    }


    .pillars-section .section-heading > span {
        margin-bottom: 10px;

        font-size: 11px;

        letter-spacing: 1.5px;

        text-align: center;
    }


    .pillars-section .section-heading h2 {
        width: 100%;

        margin: 0 auto 16px;

        font-size: 30px;

        line-height: 1.25;

        text-align: center;
    }


    .pillars-section .section-heading h2 span {
        display: inline;

        font-size: inherit;
    }


    .pillars-section .section-heading p {
        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        font-size: 14px;

        line-height: 1.8;

        text-align: center;
    }


    /* Divider */

    .pillars-section .about-divider {
        width: 55px;
        height: 3px;

        margin: 18px auto 20px;
    }


    /* Grid */

    .pillars-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 20px;

        margin: 0 auto;
    }


    /* Cards */

    .pillar-card {
        width: 100%;

        min-height: auto;

        padding: 32px 25px 30px;

        border-radius: 18px;
    }


    /* Icon */

    .pillar-icon {
        width: 60px;
        height: 60px;

        margin-bottom: 20px;
    }


    .pillar-icon i {
        font-size: 24px;
    }


    /* Number */

    .pillar-number {
        top: 25px;
        right: 22px;

        font-size: 38px;
    }


    /* Title */

    .pillar-card h3 {
        margin-bottom: 11px;

        font-size: 20px;

        line-height: 1.35;
    }


    /* Description */

    .pillar-card p {
        font-size: 14px;

        line-height: 1.8;
    }


    /* Conclusion */

    .pillars-conclusion {
        width: 100%;

        max-width: 100%;

        margin: 40px auto 0;

        padding: 34px 24px;

        border-radius: 18px;
    }


    .pillars-conclusion::before {
        width: 65px;
        height: 4px;
    }


    .pillars-conclusion p {
        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        font-size: 14px;

        line-height: 1.85;

        text-align: center;
    }


    .pillars-conclusion::after {
        width: 120px;
        height: 120px;

        right: -60px;
        top: -60px;
    }

}


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

@media (max-width: 480px) {

    .pillars-section {
        padding: 55px 0 60px;
    }


    .pillars-section .container {
        width: 91%;
    }


    .pillars-section .section-heading {
        margin-bottom: 34px;
    }


    .pillars-section .section-heading > span {
        font-size: 10px;

        letter-spacing: 1.3px;
    }


    .pillars-section .section-heading h2 {
        font-size: 27px;

        line-height: 1.3;
    }


    .pillars-section .section-heading p {
        font-size: 13.5px;

        line-height: 1.75;
    }


    .pillars-grid {
        gap: 17px;
    }


    .pillar-card {
        padding: 28px 22px;

        border-radius: 16px;
    }


    .pillar-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 18px;
    }


    .pillar-icon i {
        font-size: 22px;
    }


    .pillar-number {
        top: 22px;
        right: 18px;

        font-size: 34px;
    }


    .pillar-card h3 {
        font-size: 19px;
    }


    .pillar-card p {
        font-size: 13.5px;

        line-height: 1.8;
    }


    .pillars-conclusion {
        margin-top: 32px;

        padding: 30px 20px;

        border-radius: 16px;
    }


    .pillars-conclusion p {
        font-size: 13.5px;

        line-height: 1.8;
    }

}
/*====================================================
   ROLAK FOUNDATION — PROGRAM BRAND COLORS
   TEAL BLUE + YELLOW
====================================================*/

/* Main program headings */
.program-feature-content h2 {
    color: #147F8C !important;
}

/* Highlighted part of headings */
.program-feature-content h2 span {
    color: #F4C21A !important;
}

/* Program labels */
.program-feature-label {
    color: #F4C21A !important;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Program description text */
.program-feature-content p {
    color: #285F68 !important;
}

/* Program list text */
.program-feature-content ul li {
    color: #285F68 !important;
}

/* Check icons */
.program-feature-content ul li i {
    color: #F4C21A !important;
}

/* Program numbers */
.program-number {
    background: #F4C21A !important;
    color: #147F8C !important;
}

/* Divider */
.program-feature-content .about-divider {
    background: #F4C21A !important;
}

/* Four Pillars heading */
.programs-pillars-intro .section-heading h2 {
    color: #147F8C !important;
}

/* Four Pillars highlighted heading */
.programs-pillars-intro .section-heading h2 span {
    color: #F4C21A !important;
}

/* Four Pillars small heading */
.programs-pillars-intro .section-heading > span {
    color: #F4C21A !important;
}

/* Four Pillars paragraph */
.programs-pillars-intro .section-heading p {
    color: #285F68 !important;
}


/*====================================================
   CONCLUSION SECTION
====================================================*/

.programs-conclusion-content > span {
    color: #F4C21A !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.programs-conclusion-content h2 {
    color: #147F8C !important;
}

.programs-conclusion-content h2 strong {
    color: #F4C21A !important;
}

.programs-conclusion-content p {
    color: #285F68 !important;
}

.programs-conclusion-content .about-divider {
    background: #F4C21A !important;
}


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

@media (max-width: 768px) {

    .program-feature-content h2 {
        color: #147F8C !important;
    }

    .program-feature-content h2 span {
        color: #F4C21A !important;
    }

    .program-feature-content p,
    .program-feature-content ul li {
        color: #285F68 !important;
    }

}

/* =====================================================
   PROGRAMS PAGE — FOUR PILLARS INTRO
   ===================================================== */

.programs-pillars-intro {
    width: 100%;
    background: #FFFFFF !important;
    padding: 70px 20px 75px;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}


/* =====================================================
   TEAL BLUE CONTENT PANEL
   ===================================================== */

.programs-pillars-intro .container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 75px 55px 78px;

    box-sizing: border-box;

    background: #008C95;

    border-radius: 32px;

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(0, 140, 149, 0.12);
}


/* =====================================================
   HEADING WRAPPER
   ===================================================== */

.programs-pillars-intro .section-heading {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 0;

    text-align: center;
}


/* =====================================================
   OUR FOUR PILLARS
   ===================================================== */

.programs-pillars-intro .section-heading > span {
    display: block;

    margin: 0 0 14px;

    color: #F4C21A !important;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    line-height: 1.4;

    text-transform: uppercase;
    text-align: center;
}


/* =====================================================
   MAIN HEADING
   ===================================================== */

.programs-pillars-intro .section-heading h2 {
    margin: 0 auto 18px;

    color: #FFFFFF !important;

    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;

    text-align: center;
}


/* =====================================================
   YELLOW HIGHLIGHTED HEADING
   ===================================================== */

.programs-pillars-intro .section-heading h2 span {
    display: inline;

    color: #F4C21A !important;

    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
}


/* =====================================================
   DIVIDER
   ===================================================== */

.programs-pillars-intro .about-divider {
    width: 70px;
    height: 4px;

    margin: 22px auto 25px;

    background: #F4C21A !important;

    border-radius: 10px;
}


/* =====================================================
   DESCRIPTION
   ===================================================== */

.programs-pillars-intro .section-heading p {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;

    color: #FFFFFF !important;

    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.85;

    text-align: center;
}


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

@media (max-width: 768px) {

    .programs-pillars-intro {
        padding: 45px 15px 50px;
    }


    .programs-pillars-intro .container {
        width: 100%;

        padding: 55px 25px 58px;

        border-radius: 24px;
    }


    .programs-pillars-intro .section-heading {
        max-width: 100%;
    }


    .programs-pillars-intro .section-heading > span {
        font-size: 11px;

        letter-spacing: 1.8px;

        margin-bottom: 12px;
    }


    .programs-pillars-intro .section-heading h2 {
        font-size: 32px;

        line-height: 1.2;
    }


    .programs-pillars-intro .section-heading h2 span {
        display: block;

        margin-top: 5px;
    }


    .programs-pillars-intro .section-heading p {
        font-size: 15px;

        line-height: 1.75;
    }


    .programs-pillars-intro .about-divider {
        width: 55px;
        height: 3px;

        margin: 20px auto 22px;
    }

}
/* =========================================
   PROGRAMS CONCLUSION
   TEAL CARD / YELLOW + WHITE TYPOGRAPHY
========================================= */

.programs-conclusion {
    padding: 100px 20px;
    background: #f3fafb;
}

.programs-conclusion .container {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   CARD
========================================= */

.programs-conclusion-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 75px 80px;

    background: #087f8c !important;

    text-align: center;

    border-radius: 24px;

    box-shadow:
        0 20px 55px rgba(8, 127, 140, 0.18);

    position: relative;
    overflow: hidden;
}


/* =========================================
   TOP YELLOW ACCENT
========================================= */

.programs-conclusion-content::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 80px;
    height: 4px;

    background: #f4c430;

    border-radius: 0 0 8px 8px;
}


/* =========================================
   SMALL THINGS. MEANINGFUL IMPACT.
   = YELLOW
========================================= */

.programs-conclusion-content > span {
    display: block;

    margin-bottom: 20px;

    color: #f4c430 !important;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


/* =========================================
   HEADING
========================================= */

/*
   Default heading = WHITE
   Strong/emphasized heading = YELLOW
*/

.programs-conclusion-content h2 {
    max-width: 700px;

    margin: 0 auto;

    color: #ffffff !important;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    font-weight: 400;

    letter-spacing: -1.5px;
}


/* =========================================
   YELLOW HEADING EMPHASIS
========================================= */

.programs-conclusion-content h2 strong {
    color: #f4c430 !important;

    font-weight: 700 !important;
}


/* =========================================
   DIVIDER
========================================= */

.programs-conclusion-content .about-divider {
    width: 55px;
    height: 3px;

    margin: 30px auto;

    background: #f4c430 !important;

    border: none;

    border-radius: 10px;
}


/* =========================================
   PARAGRAPH
========================================= */

/*
   Normal paragraph = WHITE
   Important words = YELLOW
*/

.programs-conclusion-content p {
    max-width: 700px;

    margin: 0 auto;

    color: #ffffff !important;

    font-size: 17px;
    line-height: 1.9;

    font-weight: 400;
}


/* =========================================
   IMPORTANT WORDS IN PARAGRAPH
========================================= */

.programs-conclusion-content p strong {
    color: #f4c430 !important;

    font-weight: 700 !important;
}


/* =========================================
   OPTIONAL: LINKS
========================================= */

.programs-conclusion-content a {
    color: #f4c430 !important;
}

.programs-conclusion-content a:hover {
    color: #ffffff !important;
}


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

@media (max-width: 768px) {

    .programs-conclusion {
        padding: 70px 18px;
    }

    .programs-conclusion-content {
        padding: 55px 35px;
        border-radius: 20px;
    }

    .programs-conclusion-content h2 {
        font-size: 36px;
    }

    .programs-conclusion-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}


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

@media (max-width: 480px) {

    .programs-conclusion {
        padding: 50px 14px;
    }

    .programs-conclusion-content {
        padding: 45px 22px;
        border-radius: 18px;
    }

    .programs-conclusion-content h2 {
        font-size: 30px;
    }

    .programs-conclusion-content p {
        font-size: 15px;
        line-height: 1.75;
    }
}
/* =========================================================
   CORE FOCUS - VIDEO BACKGROUND FIX ONLY
   Do not change pillar card design
   ========================================================= */

.core-focus {
    position: relative;
    overflow: hidden;
    background: transparent !important;
}


/* Keep the actual video visible */

.core-focus-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    overflow: hidden;
    z-index: 0 !important;
}


.core-focus-video video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    transform: translate(-50%, -50%) !important;

    display: block !important;
}


/* Remove the solid teal/blue covering layer */

.core-focus-overlay {
    position: absolute !important;
    inset: 0 !important;

    background: rgba(0, 0, 0, 0.25) !important;

    z-index: 1 !important;
}


/* Keep ALL existing content/card styling */

.core-focus-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MOBILE
   Keep video background visible
   ========================================================= */

@media screen and (max-width: 768px) {

    .core-focus {
        background: transparent !important;
    }

    .core-focus-video {
        display: block !important;
    }

    .core-focus-video video {
        display: block !important;
    }

    .core-focus-overlay {
        display: block !important;
        background: rgba(0, 0, 0, 0.28) !important;
    }

}
/* =========================================================
   CORE FOCUS - PILLAR CARD SLIDE-IN ANIMATION
   Restores the original pillar card entrance effect
   ========================================================= */

.core-focus .pillar-card {

    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


/* Activate animation only after JS is ready */

.core-focus.cards-ready .pillar-card {

    opacity: 0;

    transform: translateY(60px);

}


/* Card becomes visible */

.core-focus.cards-ready .pillar-card.is-visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   STAGGERED SLIDE-IN
   ========================================================= */

.core-focus.cards-ready .pillar-card:nth-child(1) {

    transition-delay: 0.1s;

}


.core-focus.cards-ready .pillar-card:nth-child(2) {

    transition-delay: 0.25s;

}


.core-focus.cards-ready .pillar-card:nth-child(3) {

    transition-delay: 0.4s;

}


.core-focus.cards-ready .pillar-card:nth-child(4) {

    transition-delay: 0.55s;

}
/* ==================================================
   FOUNDER SECTION - MOBILE FIX
   ================================================== */

@media (max-width: 768px) {

    /* Main leadership section */
    .leadership {
        padding: 60px 0 50px;
        overflow: hidden;
    }

    .leadership .container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Section heading */
    .leadership .section-heading {
        text-align: center;
        margin-bottom: 35px;
    }

    .leadership .section-heading h2 {
        font-size: 30px;
        line-height: 1.25;
        margin: 12px 0;
    }

    .leadership .section-heading p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto;
    }


    /* Founder entire wrapper */
    .founder-story-section {
        width: 100%;
        margin: 0 auto;
    }


    /* Founder introduction */
    .founder-intro {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 18px;
        overflow: hidden;
    }


    /* Founder image */
    .founder-intro-image {
        width: 100%;
        height: 470px;
        min-height: 470px;
        overflow: hidden;
    }

    .founder-intro-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
    }


    /* Founder text */
    .founder-intro-content {
        width: 100%;
        padding: 30px 22px 32px;
        box-sizing: border-box;
    }


    /* Founder label */
    .founder-label {
        font-size: 11px;
        letter-spacing: 1.5px;
        line-height: 1.5;
    }


    /* Founder name */
    .founder-intro-content h3 {
        font-size: 25px;
        line-height: 1.3;
        margin: 10px 0 14px;
    }


    /* Founder divider */
    .founder-line {
        margin: 0 0 20px;
    }


    /* Founder introduction paragraphs */
    .founder-intro-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 16px;
    }


    /* Read story button */
    .founder-read-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 8px;
        padding: 12px 20px;
        font-size: 13px;
    }


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

    .founder-story {
        width: 100%;
        margin-top: 25px;
        padding: 30px 20px;
        box-sizing: border-box;
        border-radius: 18px;
    }


    /* Story heading */
    .founder-story-heading {
        text-align: center;
        margin-bottom: 28px;
    }

    .founder-story-heading span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .founder-story-heading h3 {
        font-size: 28px;
        line-height: 1.25;
        margin: 10px 0 15px;
    }


    /* Story content */
    .founder-story-content {
        width: 100%;
    }


    .founder-story-content p {
        font-size: 14px;
        line-height: 1.85;
        margin-bottom: 18px;
        text-align: left;
    }


    /* Quote */
    .founder-quote {
        margin: 28px 0;
        padding: 22px 18px;
        text-align: center;
    }

    .founder-quote p {
        font-size: 17px;
        line-height: 1.7;
        text-align: center;
        margin: 0;
    }


    /* Signature */
    .founder-signature {
        text-align: center;
        margin-top: 28px;
    }

    .founder-signature strong {
        display: block;
        font-size: 17px;
    }

    .founder-signature span,
    .founder-signature small {
        display: block;
        font-size: 12px;
        line-height: 1.6;
    }

}


/* ==================================================
   SMALLER PHONES
   ================================================== */

@media (max-width: 480px) {

    .leadership {
        padding-top: 50px;
    }

    .leadership .container {
        padding-left: 14px;
        padding-right: 14px;
    }


    .leadership .section-heading h2 {
        font-size: 27px;
    }


    .founder-intro-image {
        height: 430px;
        min-height: 430px;
    }


    .founder-intro-content {
        padding: 26px 18px 28px;
    }


    .founder-intro-content h3 {
        font-size: 23px;
    }


    .founder-intro-content p {
        font-size: 13.5px;
        line-height: 1.8;
    }


    .founder-story {
        padding: 26px 17px;
    }


    .founder-story-heading h3 {
        font-size: 25px;
    }


    .founder-story-content p {
        font-size: 13.5px;
        line-height: 1.85;
    }


    .founder-quote {
        padding: 20px 14px;
    }

}
/* ==================================================
   CO-DIRECTORS - TABLET IMAGE FIX
   ================================================== */

@media (min-width: 769px) and (max-width: 1024px) {

    .codirectors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .codirector-card {
        overflow: hidden;
    }

    .codirector-image {
        width: 100%;
        height: 430px;
        overflow: hidden;
    }

    .codirector-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
    }

}
@media (min-width: 769px) and (max-width: 1024px) {

    .codirector-image img {
        object-position: center 25%;
    }

}
/* =========================================================
   CORE FOCUS - VIDEO BACKGROUND
   ========================================================= */

.core-focus {
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

.core-focus-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    overflow: hidden;
    z-index: 0 !important;
}

.core-focus-video video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
}

.core-focus-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    z-index: 1 !important;
}

.core-focus-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   CORE FOCUS - PILLAR CARD SLIDE-IN
   ========================================================= */

/* Starting positions */

.core-focus .pillar-card {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


/* Odd cards come from the LEFT */

.core-focus .pillar-card:nth-child(odd) {
    transform: translateX(-80px);
}


/* Even cards come from the RIGHT */

.core-focus .pillar-card:nth-child(even) {
    transform: translateX(80px);
}


/* Visible state */

.core-focus .pillar-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   STAGGERED ANIMATION
   ========================================================= */

.core-focus .pillar-card:nth-child(1) {
    transition-delay: 0.1s;
}

.core-focus .pillar-card:nth-child(2) {
    transition-delay: 0.25s;
}

.core-focus .pillar-card:nth-child(3) {
    transition-delay: 0.4s;
}

.core-focus .pillar-card:nth-child(4) {
    transition-delay: 0.55s;
}


/* =========================================================
   MOBILE
   Keep the same side-to-side animation
   ========================================================= */

@media screen and (max-width: 768px) {

    .core-focus {
        background: transparent !important;
    }

    .core-focus-video {
        display: block !important;
    }

    .core-focus-video video {
        display: block !important;
    }

    .core-focus-overlay {
        display: block !important;
        background: rgba(0, 0, 0, 0.28) !important;
    }


    /* Keep animation on mobile */

    .core-focus .pillar-card:nth-child(odd) {
        transform: translateX(-70px);
    }

    .core-focus .pillar-card:nth-child(even) {
        transform: translateX(70px);
    }

    .core-focus .pillar-card.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

}
/*=========================================
ABOUT INTRO / CORE VALUES SECTION
=========================================*/

.about-intro{
    padding:80px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.section-tag{
    display:inline-block;
    color:var(--primary);
    font-size:.9rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.about-content h2{
    font-size:2.5rem;
    color:var(--dark);
    line-height:1.2;
    margin-bottom:24px;
}

.core-values-list{
    list-style:none;
    padding:0;
    margin:0;
}

.core-values-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:22px;
    font-size:1.05rem;
    line-height:1.8;
    color:#4d6470;
}

.core-values-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:12px;
    width:10px;
    height:10px;
    background:var(--secondary);
    border-radius:50%;
}

.core-values-list strong{
    color:var(--dark);
}

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

@media(max-width:768px){

    .about-intro{
        padding:60px 0;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .about-content h2{
        font-size:2rem;
    }

    .core-values-list li{
        font-size:1rem;
        line-height:1.7;
    }
}
/*=========================================
ABOUT PAGE SPACING FIXES
=========================================*/

/* Hero → About Card */
.about-hero{
    margin-bottom: 0;
}

.about-intro:first-of-type{
    padding: 40px 0 25px;
}

/* About Card → Core Values */
.about-intro + .about-intro{
    padding-top: 20px;
}

/* Core Values → What Drives Us */
.about-grid{
    margin-bottom: 0;
}

/* Mobile spacing */
@media(max-width:768px){

    .about-intro:first-of-type{
        padding:30px 0 15px;
    }

    .about-intro + .about-intro{
        padding-top:15px;
    }
}
/*==================================================
ABOUT INTRO + WHO WE ARE
===================================================*/

.about-who-section {
    position: relative;
    padding: 70px 0 90px;
    background-image: url("../images/about-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* BACKGROUND OVERLAY */

.about-who-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 127, 140, 0.82);
    z-index: 0;
}


/* KEEP CONTENT ABOVE OVERLAY */

.about-who-section .container {
    position: relative;
    z-index: 1;
}


/*==================================================
ABOUT INTRO CARD
===================================================*/

.about-who-section .about-card {
    max-width: 900px;
    margin: 0 auto 45px;
    padding: 45px 55px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


/* CARD TEXT */

.about-who-section .about-card p {
    margin: 0;
    color: #245D6E;
    font-size: 16px;
    line-height: 1.8;
}


/* CARD DIVIDER */

.about-who-section .card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px auto;
}

.about-who-section .card-divider span {
    width: 80px;
    height: 1px;
    background: #F6C54F;
}

.about-who-section .card-divider i {
    color: #F6C54F;
    font-size: 14px;
}


/*==================================================
WHO WE ARE CONTENT
===================================================*/

.about-who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}


/* IMAGE */

.about-who-content .about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.20);
}

.about-who-content .about-image img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}


/* CONTENT */

.about-who-content .about-content {
    padding: 10px 0;
}


/* WHO WE ARE LABEL */

.about-who-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #F6C54F;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* HEADING */

.about-who-content .about-content h2 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
}


/* CORE VALUES */

.about-who-content .core-values-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-who-content .core-values-list li {
    position: relative;
    margin-bottom: 17px;
    padding-left: 25px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
}

.about-who-content .core-values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #F6C54F;
    font-size: 24px;
    line-height: 1;
}

.about-who-content .core-values-list strong {
    color: #F6C54F;
}


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

@media (max-width: 768px) {

    .about-who-section {
        padding: 50px 0 60px;
    }

    .about-who-section .about-card {
        padding: 35px 25px;
        margin-bottom: 40px;
    }

    .about-who-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-who-content .about-image img {
        height: 300px;
    }

    .about-who-content .about-content {
        text-align: center;
    }

    .about-who-content .section-tag {
        margin-bottom: 10px;
    }

    .about-who-content .about-content h2 {
        font-size: 30px;
    }

    .about-who-content .core-values-list {
        text-align: left;
    }

}
/*==================================
CONTACT FORM ENHANCEMENT ONLY
(Add at the bottom of style.css)
===================================*/

/* Keep existing layout, only polish it */

.contact-wrapper{
    align-items: start;
    gap: 45px;
}

/* CONTACT INFO CARDS */

.contact-info-card{
    background:#fff;
    border:1px solid rgba(8,127,140,.08);
    border-radius:18px;
    padding:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s ease;
}

.contact-info-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* Keep your yellow icons */

.contact-icon{
    background:rgba(246,197,79,.18);
    color:#F6C54F;
}

/* FORM CARD */

.contact-form-box{
    background:#fff;
    border-radius:22px;
    padding:40px;
    border:1px solid rgba(8,127,140,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

/* Decorative gold corner */

.contact-form-box::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:70px;
    height:70px;
    border-top:3px solid #F6C54F;
    border-right:3px solid #F6C54F;
    border-top-right-radius:22px;
}

/* FORM TEXT */

.contact-form-box h3{
    color:#245D6E;
    margin-bottom:8px;
}

.contact-form-box>p{
    color:#666;
    margin-bottom:30px;
    line-height:1.7;
}

/* INPUTS */

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#245D6E;
    font-weight:600;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:14px 16px;
    border:1px solid #d7e3e5;
    border-radius:10px;
    background:#fafcfc;
    font-family:'Open Sans',sans-serif;
    font-size:15px;
    transition:.25s ease;
    box-sizing:border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#9aa4a8;
}

.form-group textarea{
    resize:vertical;
    min-height:160px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#087F8C;
    background:#fff;
    box-shadow:0 0 0 3px rgba(8,127,140,.08);
    outline:none;
}

/* BUTTON */

.contact-submit{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#087F8C;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:600;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:.3s ease;
}

.contact-submit i{
    color:#F6C54F;
}

.contact-submit:hover{
    background:#245D6E;
    transform:translateY(-2px);
}

/* SUCCESS MESSAGE PLACEHOLDER */

.form-status{
    margin-top:16px;
    text-align:center;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .contact-form-box{
        padding:28px 22px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .contact-wrapper{
        gap:30px;
    }
}
/*==================================
PREMIUM CONTACT SPLIT PANEL
===================================*/

.contact-wrapper{
    display:grid;
    grid-template-columns:430px 1fr;
    gap:35px;
    align-items:stretch;
}

/* LEFT PANEL */

.contact-panel{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:url("../images/contact-panel.jpg") center/cover no-repeat;
    min-height:760px;
    display:flex;
}

.contact-panel-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(8,127,140,.86),
        rgba(36,93,110,.96)
    );
}

.contact-panel-content{
    position:relative;
    z-index:2;
    padding:45px 35px;
    display:flex;
    flex-direction:column;
    color:#fff;
}

.panel-tag{
    color:#F6C54F;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:14px;
}

.contact-panel-content h3{
    color:#fff;
    font-size:34px;
    line-height:1.2;
    margin:0 0 18px;
}

.contact-panel-content>p{
    color:rgba(255,255,255,.88);
    line-height:1.8;
}

.panel-divider{
    width:70px;
    height:3px;
    background:#F6C54F;
    border-radius:50px;
    margin:28px 0 35px;
}

/* CONTACT ITEMS */

.panel-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.12);
}

.panel-item:first-of-type{
    border-top:none;
}

.panel-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(246,197,79,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#F6C54F;
    font-size:18px;
    flex-shrink:0;
}

.panel-item h4{
    margin:0 0 6px;
    color:#fff;
    font-size:17px;
}

.panel-item p{
    margin:3px 0;
    color:rgba(255,255,255,.82);
}

/* FORM CARD */

.contact-form-box{
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 22px 60px rgba(0,0,0,.08);
    border-top:4px solid #F6C54F;
}

.form-header{
    text-align:center;
    margin-bottom:35px;
}

.form-header span{
    color:#F6C54F;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.form-header h3{
    margin:10px 0;
    color:#245D6E;
    font-size:30px;
}

.form-header p{
    color:#666;
    line-height:1.7;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-group{
    margin-bottom:20px;
    position:relative;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#245D6E;
    font-weight:600;
}

.icon-input i{
    position:absolute;
    left:16px;
    top:44px;
    color:#F6C54F;
}

.icon-input input,
.icon-input textarea,
.icon-input select{
    width:100%;
    padding:15px 16px 15px 46px;
    border:1px solid #d9e4e6;
    border-radius:12px;
    background:#fafcfc;
    font-size:15px;
    box-sizing:border-box;
    transition:.3s;
}

.icon-input textarea{
    resize:vertical;
    min-height:170px;
}

.icon-input input:focus,
.icon-input textarea:focus,
.icon-input select:focus{
    outline:none;
    border-color:#087F8C;
    background:#fff;
    box-shadow:0 0 0 3px rgba(8,127,140,.08);
}

.contact-submit{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#087F8C;
    color:#fff;
    font-size:16px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    transition:.3s;
}

.contact-submit i{
    color:#F6C54F;
}

.contact-submit:hover{
    background:#245D6E;
    transform:translateY(-2px);
}

.form-status{
    margin-top:15px;
    text-align:center;
    font-size:14px;
}

/* MOBILE */

@media(max-width:900px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-panel{
        min-height:auto;
    }

    .contact-panel-content{
        padding:35px 25px;
    }

    .contact-panel-content h3{
        font-size:28px;
    }

    .contact-form-box{
        padding:30px 22px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

}

/* =========================================================
   ROLAK FOUNDATION — FOUNDER SECTION
   FINAL RESPONSIVE VERSION
   ---------------------------------------------------------
   BRAND COLORS:
   TEAL BLUE = #008c95
   YELLOW    = #d4af37

   IMPORTANT:
   This is the ONLY Founder CSS block that should remain.
   ========================================================= */


/* =========================================================
   FOUNDER BRAND VARIABLES
   ========================================================= */

:root {
    --rolak-teal: #008c95;
    --rolak-yellow: #d4af37;
    --rolak-white: #ffffff;
    --rolak-text: #555555;
}


/* =========================================================
   MAIN FOUNDER SECTION
   ========================================================= */

.rolak-leadership {
    width: 100%;
    position: relative;
    padding: 100px 0;
    background: var(--rolak-teal);
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
   ---------------------------------------------------------
   IMPORTANT:
   Any heading that was previously teal/green is now WHITE
   so that it does not disappear into the teal background.
   ========================================================= */

.rolak-leadership .section-heading {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

.rolak-leadership .section-heading .section-badge {
    color: var(--rolak-yellow);
}

.rolak-leadership .section-heading h2 {
    margin: 15px 0 20px;
    color: var(--rolak-white);
}

.rolak-leadership .section-heading h2 span {
    display: block;
    color: var(--rolak-yellow);
}

.rolak-leadership .section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.8;
}


/* =========================================================
   FOUNDER WRAPPER
   ========================================================= */

.rolak-founder-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   FOUNDER INTRODUCTION
   DESKTOP
   ========================================================= */

.rolak-founder-introduction {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 55px;
    align-items: center;
    width: 100%;
}


/* =========================================================
   FOUNDER IMAGE
   ---------------------------------------------------------
   NO ABSOLUTE POSITIONING
   NO NEGATIVE MARGIN
   NO OVERLAP
   ========================================================= */

.rolak-founder-image {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--rolak-white);
    border: 4px solid var(--rolak-yellow);
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   FOUNDER IMAGE
   ========================================================= */

.rolak-founder-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
}


/* =========================================================
   OPTIONAL IMAGE CAPTION
   ========================================================= */

.rolak-founder-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px 25px 22px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0)
    );

    color: var(--rolak-white);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    min-height: 130px;
}

.rolak-founder-image-caption strong {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1.3;
    color: var(--rolak-white);
}

.rolak-founder-image-caption span {
    margin-top: 5px;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rolak-white);
}


/* =========================================================
   FOUNDER INFORMATION CARD
   ========================================================= */

.rolak-founder-information {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 50px;

    background: var(--rolak-white);

    border: 1px solid rgba(0, 140, 149, 0.15);
    border-radius: 8px;

    box-sizing: border-box;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   FOUNDER POSITION
   ========================================================= */

.rolak-founder-position {
    display: inline-block;
    margin-bottom: 14px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--rolak-yellow);
}


/* =========================================================
   FOUNDER NAME
   ========================================================= */

.rolak-founder-information h3 {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
    font-weight: 700;

    color: var(--rolak-teal);
}


/* =========================================================
   GOLD DIVIDER
   ========================================================= */

.rolak-founder-line {
    width: 70px;
    height: 3px;
    margin: 22px 0 25px;

    background: var(--rolak-yellow);
}


/* =========================================================
   FOUNDER INFORMATION TEXT
   ========================================================= */

.rolak-founder-information p {
    margin: 0 0 20px;

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.85;

    color: var(--rolak-text);
}


/* =========================================================
   READ STORY BUTTON
   ========================================================= */

.rolak-founder-story-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 12px;
    padding: 14px 24px;

    background: var(--rolak-teal);
    color: var(--rolak-white);

    text-decoration: none;

    border-radius: 4px;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.rolak-founder-story-button:hover {
    background: var(--rolak-yellow);
    color: var(--rolak-teal);

    transform: translateY(-2px);

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

.rolak-founder-story-button i {
    transition: transform 0.3s ease;
}

.rolak-founder-story-button:hover i {
    transform: translateY(3px);
}


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

.rolak-founder-story {
    width: 100%;
    max-width: 1000px;

    margin: 80px auto 0;
    padding: 70px;

    background: var(--rolak-white);

    border-top: 4px solid var(--rolak-yellow);

    box-sizing: border-box;

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


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

.rolak-founder-story-heading {
    text-align: center;
    margin-bottom: 45px;
}

.rolak-founder-story-heading > span {
    display: block;
    margin-bottom: 12px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--rolak-yellow);
}

.rolak-founder-story-heading h3 {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;

    color: var(--rolak-teal);
}

.rolak-founder-story-heading h3 strong {
    display: block;
    color: var(--rolak-yellow);
}


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

.rolak-founder-story-divider {
    width: 70px;
    height: 2px;

    margin: 22px auto 0;

    background: var(--rolak-yellow);
}


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

.rolak-founder-story-content {
    width: 100%;
}

.rolak-founder-story-content > p {
    margin: 0 0 25px;

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.9;

    color: var(--rolak-text);
}


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

.rolak-founder-quote {
    margin: 45px 0;
    padding: 30px;

    text-align: center;

    background: var(--rolak-teal);

    border-left: 4px solid var(--rolak-yellow);
}

.rolak-founder-quote p {
    margin: 0;

    font-family: "Great Vibes", cursive;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.5;

    color: var(--rolak-white);
}

.rolak-founder-quote strong {
    color: var(--rolak-yellow);
}


/* =========================================================
   SIGNATURE
   ========================================================= */

.rolak-founder-signature {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    margin-top: 45px;
}

.rolak-founder-signature strong {
    font-family: "Great Vibes", cursive;
    font-size: 34px;
    font-weight: 400;

    color: var(--rolak-teal);
}

.rolak-founder-signature span {
    margin-top: 5px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--rolak-teal);
}

.rolak-founder-signature small {
    margin-top: 4px;

    font-family: "Open Sans", sans-serif;
    font-size: 12px;

    color: #777777;
}


/* =========================================================
   LARGE TABLETS
   769px — 1100px
   ---------------------------------------------------------
   IMAGE FIRST
   INFORMATION SECOND
   NO OVERLAP
   ========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    .rolak-leadership {
        padding: 80px 0;
    }

    .rolak-founder-wrapper {
        width: 92%;
        max-width: 1000px;
    }

    .rolak-founder-introduction {
        display: flex;
        flex-direction: column;
        gap: 35px;

        width: 100%;
    }

    .rolak-founder-image {
        width: 100%;
        max-width: 850px;

        margin: 0 auto;

        height: auto;
        min-height: 0;

        overflow: hidden;
    }

    .rolak-founder-image img {
        position: relative;

        display: block;

        width: 100%;
        height: auto;

        min-height: 0;
        max-height: none;

        object-fit: contain;
        object-position: center center;
    }

    .rolak-founder-information {
        width: 100%;

        padding: 42px 55px 48px;

        box-sizing: border-box;
    }

    .rolak-founder-information h3 {
        font-size: 34px;
    }

    .rolak-founder-information p {
        font-size: 15px;
        line-height: 1.8;
    }

    .rolak-founder-story {
        width: 100%;
        margin-top: 60px;
        padding: 55px;
    }
}


/* =========================================================
   TABLETS / LARGE PHONES
   601px — 768px
   ---------------------------------------------------------
   THIS BREAKPOINT WAS MISSING IN YOUR OLD CSS.
   ========================================================= */

@media (min-width: 601px) and (max-width: 768px) {

    .rolak-leadership {
        padding: 70px 0;
    }

    .rolak-founder-wrapper {
        width: 92%;
    }

    .rolak-founder-introduction {
        display: flex;
        flex-direction: column;

        gap: 28px;
        width: 100%;
    }

    .rolak-founder-image {
        width: 100%;
        margin: 0 auto;

        height: auto;
        min-height: 0;
    }

    .rolak-founder-image img {
        display: block;

        width: 100%;
        height: auto;

        min-height: 0;
        max-height: none;

        object-fit: contain;
    }

    .rolak-founder-information {
        width: 100%;
        padding: 35px 30px;
    }

    .rolak-founder-information h3 {
        font-size: 30px;
    }

    .rolak-founder-information p {
        font-size: 15px;
        line-height: 1.8;
    }

    .rolak-founder-story {
        width: 100%;
        margin-top: 45px;
        padding: 45px 30px;
    }

    .rolak-founder-story-heading h3 {
        font-size: 38px;
    }
}


/* =========================================================
   MOBILE
   600px AND BELOW
   ========================================================= */

@media (max-width: 600px) {

    .rolak-leadership {
        padding: 60px 0;
    }

    .rolak-leadership .section-heading {
        width: 92%;
        margin: 0 auto 40px;
    }

    .rolak-founder-wrapper {
        width: 92%;
        margin: 0 auto;
    }

    .rolak-founder-introduction {
        display: flex;
        flex-direction: column;

        gap: 25px;

        width: 100%;
    }


    /* -------------------------
       IMAGE
       ------------------------- */

    .rolak-founder-image {
        width: 100%;

        margin: 0;

        border-width: 3px;
        border-radius: 5px;

        height: auto;
        min-height: 0;

        overflow: hidden;
    }

    .rolak-founder-image img {
        position: relative;

        display: block;

        width: 100%;
        height: auto;

        min-height: 0;
        max-height: none;

        object-fit: contain;
        object-position: center center;
    }


    /* -------------------------
       IMAGE CAPTION
       ------------------------- */

    .rolak-founder-image-caption {
        padding: 20px;
        min-height: 110px;
    }

    .rolak-founder-image-caption strong {
        font-size: 17px;
    }

    .rolak-founder-image-caption span {
        font-size: 10px;
        letter-spacing: 1px;
    }


    /* -------------------------
       INFORMATION CARD
       ------------------------- */

    .rolak-founder-information {
        width: 100%;

        padding: 30px 24px;

        border-radius: 5px;

        box-sizing: border-box;
    }

    .rolak-founder-position {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .rolak-founder-information h3 {
        font-size: 27px;
        line-height: 1.2;
    }

    .rolak-founder-information p {
        font-size: 15px;
        line-height: 1.75;
    }

    .rolak-founder-story-button {
        padding: 13px 20px;
        font-size: 12px;
    }


    /* -------------------------
       STORY
       ------------------------- */

    .rolak-founder-story {
        width: 100%;

        margin-top: 45px;

        padding: 40px 24px;

        box-sizing: border-box;
    }

    .rolak-founder-story-heading {
        margin-bottom: 35px;
    }

    .rolak-founder-story-heading h3 {
        font-size: 32px;
    }

    .rolak-founder-story-content > p {
        font-size: 15px;
        line-height: 1.8;
    }


    /* -------------------------
       QUOTE
       ------------------------- */

    .rolak-founder-quote {
        margin: 35px 0;
        padding: 25px 18px;
    }

    .rolak-founder-quote p {
        font-size: 25px;
    }


    /* -------------------------
       SIGNATURE
       ------------------------- */

    .rolak-founder-signature {
        margin-top: 35px;
    }

    .rolak-founder-signature strong {
        font-size: 29px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   380px AND BELOW
   ========================================================= */

@media (max-width: 380px) {

    .rolak-leadership {
        padding: 50px 0;
    }

    .rolak-founder-wrapper {
        width: 94%;
    }

    .rolak-founder-information {
        padding: 25px 20px;
    }

    .rolak-founder-information h3 {
        font-size: 24px;
    }

    .rolak-founder-story {
        padding: 35px 20px;
    }

    .rolak-founder-story-heading h3 {
        font-size: 29px;
    }

    .rolak-founder-quote p {
        font-size: 22px;
    }

}
/*====================================================
ROLak FOUNDATION LEADERSHIP
FOUNDER STORY + CO-DIRECTORS
====================================================*/

.leadership {
    position: relative;
    padding: 100px 0;
    background: #f8faf9;
    overflow: hidden;
}


/*==================================
FOUNDER FULL SECTION
===================================*/

.founder-story-section {
    max-width: 1100px;
    margin: 60px auto 0;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
}


/*==================================
FOUNDER INTRO — TOP
===================================*/

.founder-intro {
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 520px;
}


.founder-intro-image {
    position: relative;
    overflow: hidden;
}


.founder-intro-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}


.founder-intro-content {
    padding: 65px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.founder-label {
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    color: #F4C21A;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
}


.founder-intro-content h3 {
    font-family: "Poppins", sans-serif;
    color: #123F45;
    font-size: 40px;
    line-height: 1.2;
    margin: 0;
}


.founder-line {
    width: 65px;
    height: 4px;
    background: #F4C21A;
    margin: 22px 0 25px;
}


.founder-intro-content p {
    font-family: "Open Sans", sans-serif;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 15px;
}


.founder-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: 15px;
    padding: 13px 23px;
    background: #123F45;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}


.founder-read-btn:hover {
    background: #F4C21A;
    color: #123F45;
    transform: translateY(-2px);
}


/*==================================
FOUNDER STORY — LOWER SECTION
===================================*/

.founder-story {
    position: relative;
    padding: 75px 85px 80px;
    background: #ffffff;
    border-top: 1px solid rgba(18, 63, 69, 0.08);
}


.founder-story-heading {
    text-align: center;
    margin-bottom: 45px;
}


.founder-story-heading > span {
    display: block;
    font-family: "Open Sans", sans-serif;
    color: #F4C21A;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.founder-story-heading h3 {
    font-family: "Poppins", sans-serif;
    color: #123F45;
    font-size: 38px;
    line-height: 1.2;
    margin: 0;
}


.founder-story-heading h3 strong {
    color: #F4C21A;
    font-weight: 700;
}


.founder-story-divider {
    width: 65px;
    height: 4px;
    background: #F4C21A;
    margin: 20px auto 0;
}


.founder-story-content {
    max-width: 900px;
    margin: 0 auto;
}


.founder-story-content > p {
    font-family: "Open Sans", sans-serif;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin: 0 0 22px;
}


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

.founder-quote {
    position: relative;
    margin: 45px 0;
    padding: 30px 35px;
    text-align: center;
    border-left: 4px solid #F4C21A;
    border-right: 4px solid #F4C21A;
    background: #f8faf9;
}


.founder-quote p {
    font-family: "Poppins", sans-serif;
    color: #123F45;
    font-size: 22px;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}


.founder-quote strong {
    color: #F4C21A;
}


/*==================================
FOUNDER SIGNATURE
===================================*/

.founder-signature {
    text-align: right;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(18, 63, 69, 0.12);
}


.founder-signature strong {
    display: block;
    font-family: "Poppins", sans-serif;
    color: #123F45;
    font-size: 18px;
}


.founder-signature span {
    display: block;
    font-family: "Open Sans", sans-serif;
    color: #F4C21A;
    font-size: 13px;
    font-weight: 700;
    margin-top: 4px;
}


.founder-signature small {
    display: block;
    font-family: "Open Sans", sans-serif;
    color: #777;
    font-size: 12px;
    margin-top: 3px;
}


/* =========================================================
   ROLAK FOUNDATION
   DIRECTORS / PROFILE CARDS
   ========================================================= */

.codirectors-section {

    padding: 100px 0;

    background: #f7f9f8;

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.codirectors-heading {

    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;

}


.codirectors-heading h2 {

    margin: 15px 0 20px;

    font-size: 42px;

    line-height: 1.2;

}


.codirectors-heading h2 span {

    color: #174e58;

}


.codirectors-heading p {

    max-width: 700px;

    margin: 0 auto;

    color: #555;

    font-size: 16px;

    line-height: 1.8;

}


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

.codirectors-grid {

    display: grid;

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

    gap: 35px;

    align-items: start;

}


/* =========================================================
   PROFILE CARD
   ========================================================= */

.director-profile-card {

    overflow: hidden;

    background: #ffffff;

    border-radius: 18px;

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

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


.director-profile-card:hover {

    transform: translateY(-6px);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.12);

}


/* =========================================================
   PHOTO
   ========================================================= */

.director-profile-image {

    width: 100%;

    height: 430px;

    overflow: hidden;

}


.director-profile-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center top;

    transition:
        transform 0.5s ease;

}


.director-profile-card:hover
.director-profile-image img {

    transform: scale(1.03);

}


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

.director-profile-content {

    padding: 32px 35px 35px;

}


.director-profile-content h3 {

    margin: 0 0 7px;

    font-size: 28px;

    line-height: 1.2;

    color: #174e58;

}


.director-profile-role {

    display: block;

    margin-bottom: 22px;

    color: #286f78;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   BIO
   ========================================================= */

.director-profile-bio p {

    margin: 0 0 17px;

    color: #555;

    font-size: 15px;

    line-height: 1.85;

}


/* =========================================================
   HIDDEN BIO
   ========================================================= */

.director-profile-more {

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.6s ease,
        opacity 0.4s ease;

}


.director-profile-bio.expanded
.director-profile-more {

    max-height: 1000px;

    opacity: 1;

}


/* =========================================================
   READ MORE BUTTON
   ========================================================= */

.director-profile-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 3px;

    padding: 8px 0;

    border: none;

    background: transparent;

    color: #174e58;

    font-family: inherit;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

}


.director-profile-button:hover {

    color: #286f78;

}


/* =========================================================
   READ MORE / READ LESS
   ========================================================= */

.director-read-less {

    display: none;

}


.director-profile-bio.expanded
.director-read-more {

    display: none;

}


.director-profile-bio.expanded
.director-read-less {

    display: inline;

}


/* =========================================================
   ARROW
   ========================================================= */

.director-button-arrow {

    transition:
        transform 0.35s ease;

}


.director-profile-bio.expanded
.director-button-arrow {

    transform: rotate(180deg);

}


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

@media screen and (max-width: 900px) {

    .codirectors-grid {

        grid-template-columns: 1fr;

        max-width: 650px;

        margin: 0 auto;

    }

}


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

@media screen and (max-width: 600px) {

    .codirectors-section {

        padding: 70px 0;

    }


    .codirectors-heading {

        margin-bottom: 40px;

    }


    .codirectors-heading h2 {

        font-size: 32px;

    }


    .director-profile-image {

        height: 350px;

    }


    .director-profile-content {

        padding: 27px 23px 28px;

    }


    .director-profile-content h3 {

        font-size: 24px;

    }


    .director-profile-bio p {

        font-size: 14px;

        line-height: 1.75;

    }

}

/*====================================================
======================================================
        ROLAK FOUNDATION — OUR FOUR PILLARS
======================================================
====================================================*/

:root {
    --rolak-teal: #008C95;
    --rolak-teal-dark: #006F78;
    --rolak-yellow: #F4C21A;
    --rolak-dark: #173B3F;
    --rolak-text: #555555;
    --rolak-light: #F7FBFB;
    --rolak-white: #FFFFFF;
}


/*====================================================
MAIN SECTION
====================================================*/

.pillars-section {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 95px 0 100px;
    overflow: hidden;
}


/*====================================================
CONTAINER
====================================================*/

.pillars-section .container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}


/*====================================================
SECTION HEADING
====================================================*/

.pillars-section .section-heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 58px;
    padding: 0;
    text-align: center;
}


/* Small heading */

.pillars-section .section-heading > span {
    display: block;
    margin: 0 0 13px;

    color: var(--rolak-teal);

    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    line-height: 1.4;

    text-transform: uppercase;
    text-align: center;
}


/* Main heading */

.pillars-section .section-heading h2 {
    margin: 0 auto 18px;

    color: var(--rolak-dark);

    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;
    text-align: center;
}


/* Heading highlighted portion */

.pillars-section .section-heading h2 span {
    display: inline;

    color: var(--rolak-teal);

    font-family: inherit;
    font-size: inherit;
    font-weight: 700;

    letter-spacing: normal;
    text-transform: none;
}


/* Heading paragraph */

.pillars-section .section-heading p {
    width: 100%;
    max-width: 750px;

    margin: 0 auto;

    color: var(--rolak-text);

    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.85;
    text-align: center;
}


/*====================================================
DECORATIVE HEADING LINE
====================================================*/

.pillars-section .about-divider {
    position: relative;

    width: 70px;
    height: 4px;

    margin: 22px auto 24px;

    background: var(--rolak-yellow);

    border-radius: 10px;
}

.pillars-section .about-divider::before,
.pillars-section .about-divider::after {
    content: "";

    position: absolute;
    top: 50%;

    width: 6px;
    height: 6px;

    background: var(--rolak-yellow);

    border-radius: 50%;

    transform: translateY(-50%);
}

.pillars-section .about-divider::before {
    left: -13px;
}

.pillars-section .about-divider::after {
    right: -13px;
}


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

.pillars-grid {
    width: 100%;

    display: grid;

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

    gap: 30px;

    margin: 0 auto;
}


/*====================================================
PILLAR CARD
====================================================*/

.pillar-card {
    position: relative;

    width: 100%;
    min-height: 100%;

    box-sizing: border-box;

    padding: 40px 38px 38px;

    background: var(--rolak-white);

    border: 1px solid rgba(0, 140, 149, 0.15);

    border-radius: 22px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* Yellow top border */

.pillar-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: var(--rolak-yellow);
}


/* Subtle teal background decoration */

.pillar-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -85px;
    bottom: -85px;

    border: 1px solid rgba(0, 140, 149, 0.08);

    border-radius: 50%;

    pointer-events: none;
}


/* Hover */

.pillar-card:hover {
    transform: translateY(-8px);

    border-color: rgba(0, 140, 149, 0.35);

    box-shadow:
        0 18px 45px rgba(0, 140, 149, 0.13);
}


/*====================================================
PILLAR ICON
====================================================*/

.pillar-icon {
    position: relative;
    z-index: 2;

    width: 70px;
    height: 70px;

    margin: 0 0 25px;

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

    background: var(--rolak-teal);

    border-radius: 50%;

    box-shadow:
        0 8px 22px rgba(0, 140, 149, 0.20);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.pillar-card:hover .pillar-icon {
    background: var(--rolak-teal-dark);

    transform: scale(1.05);
}


.pillar-icon i {
    color: var(--rolak-yellow);

    font-size: 29px;

    line-height: 1;
}


/*====================================================
PILLAR NUMBER
====================================================*/

.pillar-number {
    position: absolute;

    top: 28px;
    right: 30px;

    z-index: 1;

    color: rgba(0, 140, 149, 0.08);

    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;

    line-height: 1;
}


/*====================================================
PILLAR TITLE
====================================================*/

.pillar-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 14px;

    color: var(--rolak-teal);

    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;

    line-height: 1.35;
}


/*====================================================
PILLAR DESCRIPTION
====================================================*/

.pillar-card p {
    position: relative;
    z-index: 2;

    margin: 0;

    color: var(--rolak-text);

    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;

    line-height: 1.8;
}


/*====================================================
BOTTOM CONCLUSION
====================================================*/

.pillars-conclusion {
    position: relative;

    width: 100%;
    max-width: 1000px;

    margin: 60px auto 0;

    padding: 42px 65px;

    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            var(--rolak-teal),
            var(--rolak-teal-dark)
        );

    border-radius: 22px;

    text-align: center;

    overflow: hidden;

    box-shadow:
        0 15px 40px rgba(0, 140, 149, 0.16);
}


/* Yellow top accent */

.pillars-conclusion::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 90px;
    height: 5px;

    background: var(--rolak-yellow);

    border-radius: 0 0 8px 8px;

    transform: translateX(-50%);
}


/* Decorative circle */

.pillars-conclusion::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -75px;
    top: -85px;

    border: 2px solid rgba(244, 194, 26, 0.18);

    border-radius: 50%;

    pointer-events: none;
}


/* Conclusion text */

.pillars-conclusion p {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    margin: 0 auto;

    color: #ffffff;

    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.9;

    text-align: center;
}


/* Yellow highlighted words */

.pillars-conclusion strong {
    color: var(--rolak-yellow);

    font-weight: 700;
}


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

@media (max-width: 992px) {

    .pillars-section {
        padding: 80px 0 85px;
    }

    .pillars-section .container {
        width: 92%;
    }

    .pillars-section .section-heading {
        max-width: 750px;
        margin-bottom: 48px;
    }

    .pillars-section .section-heading h2 {
        font-size: 36px;
    }

    .pillars-grid {
        gap: 24px;
    }

    .pillar-card {
        padding: 35px 30px;
    }

    .pillar-card h3 {
        font-size: 21px;
    }

    .pillar-card p {
        font-size: 14px;
    }

    .pillars-conclusion {
        padding: 38px 45px;
    }
}


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

@media (max-width: 768px) {

    .pillars-section {
        padding: 65px 0 70px;
    }


    /* Container */

    .pillars-section .container {
        width: 92%;
        margin: 0 auto;
    }


    /* Heading */

    .pillars-section .section-heading {
        width: 100%;
        max-width: 100%;

        margin: 0 auto 40px;

        padding: 0;

        text-align: center;
    }


    .pillars-section .section-heading > span {
        margin-bottom: 10px;

        font-size: 11px;

        letter-spacing: 1.5px;

        text-align: center;
    }


    .pillars-section .section-heading h2 {
        width: 100%;

        margin: 0 auto 16px;

        font-size: 30px;

        line-height: 1.25;

        text-align: center;
    }


    .pillars-section .section-heading h2 span {
        display: inline;

        font-size: inherit;
    }


    .pillars-section .section-heading p {
        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        font-size: 14px;

        line-height: 1.8;

        text-align: center;
    }


    /* Divider */

    .pillars-section .about-divider {
        width: 55px;
        height: 3px;

        margin: 18px auto 20px;
    }


    /* Grid */

    .pillars-grid {
        width: 100%;

        grid-template-columns: 1fr;

        gap: 20px;

        margin: 0 auto;
    }


    /* Cards */

    .pillar-card {
        width: 100%;

        min-height: auto;

        padding: 32px 25px 30px;

        border-radius: 18px;
    }


    /* Icon */

    .pillar-icon {
        width: 60px;
        height: 60px;

        margin-bottom: 20px;
    }


    .pillar-icon i {
        font-size: 24px;
    }


    /* Number */

    .pillar-number {
        top: 25px;
        right: 22px;

        font-size: 38px;
    }


    /* Title */

    .pillar-card h3 {
        margin-bottom: 11px;

        font-size: 20px;

        line-height: 1.35;
    }


    /* Description */

    .pillar-card p {
        font-size: 14px;

        line-height: 1.8;
    }


    /* Conclusion */

    .pillars-conclusion {
        width: 100%;

        max-width: 100%;

        margin: 40px auto 0;

        padding: 34px 24px;

        border-radius: 18px;
    }


    .pillars-conclusion::before {
        width: 65px;
        height: 4px;
    }


    .pillars-conclusion p {
        width: 100%;

        max-width: 100%;

        margin: 0 auto;

        font-size: 14px;

        line-height: 1.85;

        text-align: center;
    }


    .pillars-conclusion::after {
        width: 120px;
        height: 120px;

        right: -60px;
        top: -60px;
    }

}


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

@media (max-width: 480px) {

    .pillars-section {
        padding: 55px 0 60px;
    }


    .pillars-section .container {
        width: 91%;
    }


    .pillars-section .section-heading {
        margin-bottom: 34px;
    }


    .pillars-section .section-heading > span {
        font-size: 10px;

        letter-spacing: 1.3px;
    }


    .pillars-section .section-heading h2 {
        font-size: 27px;

        line-height: 1.3;
    }


    .pillars-section .section-heading p {
        font-size: 13.5px;

        line-height: 1.75;
    }


    .pillars-grid {
        gap: 17px;
    }


    .pillar-card {
        padding: 28px 22px;

        border-radius: 16px;
    }


    .pillar-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 18px;
    }


    .pillar-icon i {
        font-size: 22px;
    }


    .pillar-number {
        top: 22px;
        right: 18px;

        font-size: 34px;
    }


    .pillar-card h3 {
        font-size: 19px;
    }


    .pillar-card p {
        font-size: 13.5px;

        line-height: 1.8;
    }


    .pillars-conclusion {
        margin-top: 32px;

        padding: 30px 20px;

        border-radius: 16px;
    }


    .pillars-conclusion p {
        font-size: 13.5px;

        line-height: 1.8;
    }

}
/*====================================================
   ROLAK FOUNDATION — PROGRAM BRAND COLORS
   TEAL BLUE + YELLOW
====================================================*/

/* Main program headings */
.program-feature-content h2 {
    color: #147F8C !important;
}

/* Highlighted part of headings */
.program-feature-content h2 span {
    color: #F4C21A !important;
}

/* Program labels */
.program-feature-label {
    color: #F4C21A !important;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Program description text */
.program-feature-content p {
    color: #285F68 !important;
}

/* Program list text */
.program-feature-content ul li {
    color: #285F68 !important;
}

/* Check icons */
.program-feature-content ul li i {
    color: #F4C21A !important;
}

/* Program numbers */
.program-number {
    background: #F4C21A !important;
    color: #147F8C !important;
}

/* Divider */
.program-feature-content .about-divider {
    background: #F4C21A !important;
}

/* Four Pillars heading */
.programs-pillars-intro .section-heading h2 {
    color: #147F8C !important;
}

/* Four Pillars highlighted heading */
.programs-pillars-intro .section-heading h2 span {
    color: #F4C21A !important;
}

/* Four Pillars small heading */
.programs-pillars-intro .section-heading > span {
    color: #F4C21A !important;
}

/* Four Pillars paragraph */
.programs-pillars-intro .section-heading p {
    color: #285F68 !important;
}


/*====================================================
   CONCLUSION SECTION
====================================================*/

.programs-conclusion-content > span {
    color: #F4C21A !important;
    font-weight: 700;
    letter-spacing: 2px;
}

.programs-conclusion-content h2 {
    color: #147F8C !important;
}

.programs-conclusion-content h2 strong {
    color: #F4C21A !important;
}

.programs-conclusion-content p {
    color: #285F68 !important;
}

.programs-conclusion-content .about-divider {
    background: #F4C21A !important;
}


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

@media (max-width: 768px) {

    .program-feature-content h2 {
        color: #147F8C !important;
    }

    .program-feature-content h2 span {
        color: #F4C21A !important;
    }

    .program-feature-content p,
    .program-feature-content ul li {
        color: #285F68 !important;
    }

}

/* =====================================================
   PROGRAMS PAGE — FOUR PILLARS INTRO
   ===================================================== */

.programs-pillars-intro {
    width: 100%;
    background: #FFFFFF !important;
    padding: 70px 20px 75px;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
}


/* =====================================================
   TEAL BLUE CONTENT PANEL
   ===================================================== */

.programs-pillars-intro .container {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding: 75px 55px 78px;

    box-sizing: border-box;

    background: #008C95;

    border-radius: 32px;

    overflow: hidden;

    box-shadow:
        0 18px 45px rgba(0, 140, 149, 0.12);
}


/* =====================================================
   HEADING WRAPPER
   ===================================================== */

.programs-pillars-intro .section-heading {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;
    padding: 0;

    text-align: center;
}


/* =====================================================
   OUR FOUR PILLARS
   ===================================================== */

.programs-pillars-intro .section-heading > span {
    display: block;

    margin: 0 0 14px;

    color: #F4C21A !important;

    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    line-height: 1.4;

    text-transform: uppercase;
    text-align: center;
}


/* =====================================================
   MAIN HEADING
   ===================================================== */

.programs-pillars-intro .section-heading h2 {
    margin: 0 auto 18px;

    color: #FFFFFF !important;

    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;

    line-height: 1.2;

    text-align: center;
}


/* =====================================================
   YELLOW HIGHLIGHTED HEADING
   ===================================================== */

.programs-pillars-intro .section-heading h2 span {
    display: inline;

    color: #F4C21A !important;

    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
}


/* =====================================================
   DIVIDER
   ===================================================== */

.programs-pillars-intro .about-divider {
    width: 70px;
    height: 4px;

    margin: 22px auto 25px;

    background: #F4C21A !important;

    border-radius: 10px;
}


/* =====================================================
   DESCRIPTION
   ===================================================== */

.programs-pillars-intro .section-heading p {
    width: 100%;
    max-width: 800px;

    margin: 0 auto;

    color: #FFFFFF !important;

    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;

    line-height: 1.85;

    text-align: center;
}


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

@media (max-width: 768px) {

    .programs-pillars-intro {
        padding: 45px 15px 50px;
    }


    .programs-pillars-intro .container {
        width: 100%;

        padding: 55px 25px 58px;

        border-radius: 24px;
    }


    .programs-pillars-intro .section-heading {
        max-width: 100%;
    }


    .programs-pillars-intro .section-heading > span {
        font-size: 11px;

        letter-spacing: 1.8px;

        margin-bottom: 12px;
    }


    .programs-pillars-intro .section-heading h2 {
        font-size: 32px;

        line-height: 1.2;
    }


    .programs-pillars-intro .section-heading h2 span {
        display: block;

        margin-top: 5px;
    }


    .programs-pillars-intro .section-heading p {
        font-size: 15px;

        line-height: 1.75;
    }


    .programs-pillars-intro .about-divider {
        width: 55px;
        height: 3px;

        margin: 20px auto 22px;
    }

}
/* =========================================
   PROGRAMS CONCLUSION
   TEAL CARD / YELLOW + WHITE TYPOGRAPHY
========================================= */

.programs-conclusion {
    padding: 100px 20px;
    background: #f3fafb;
}

.programs-conclusion .container {
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   CARD
========================================= */

.programs-conclusion-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 75px 80px;

    background: #087f8c !important;

    text-align: center;

    border-radius: 24px;

    box-shadow:
        0 20px 55px rgba(8, 127, 140, 0.18);

    position: relative;
    overflow: hidden;
}


/* =========================================
   TOP YELLOW ACCENT
========================================= */

.programs-conclusion-content::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 80px;
    height: 4px;

    background: #f4c430;

    border-radius: 0 0 8px 8px;
}


/* =========================================
   SMALL THINGS. MEANINGFUL IMPACT.
   = YELLOW
========================================= */

.programs-conclusion-content > span {
    display: block;

    margin-bottom: 20px;

    color: #f4c430 !important;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}


/* =========================================
   HEADING
========================================= */

/*
   Default heading = WHITE
   Strong/emphasized heading = YELLOW
*/

.programs-conclusion-content h2 {
    max-width: 700px;

    margin: 0 auto;

    color: #ffffff !important;

    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    font-weight: 400;

    letter-spacing: -1.5px;
}


/* =========================================
   YELLOW HEADING EMPHASIS
========================================= */

.programs-conclusion-content h2 strong {
    color: #f4c430 !important;

    font-weight: 700 !important;
}


/* =========================================
   DIVIDER
========================================= */

.programs-conclusion-content .about-divider {
    width: 55px;
    height: 3px;

    margin: 30px auto;

    background: #f4c430 !important;

    border: none;

    border-radius: 10px;
}


/* =========================================
   PARAGRAPH
========================================= */

/*
   Normal paragraph = WHITE
   Important words = YELLOW
*/

.programs-conclusion-content p {
    max-width: 700px;

    margin: 0 auto;

    color: #ffffff !important;

    font-size: 17px;
    line-height: 1.9;

    font-weight: 400;
}


/* =========================================
   IMPORTANT WORDS IN PARAGRAPH
========================================= */

.programs-conclusion-content p strong {
    color: #f4c430 !important;

    font-weight: 700 !important;
}


/* =========================================
   OPTIONAL: LINKS
========================================= */

.programs-conclusion-content a {
    color: #f4c430 !important;
}

.programs-conclusion-content a:hover {
    color: #ffffff !important;
}


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

@media (max-width: 768px) {

    .programs-conclusion {
        padding: 70px 18px;
    }

    .programs-conclusion-content {
        padding: 55px 35px;
        border-radius: 20px;
    }

    .programs-conclusion-content h2 {
        font-size: 36px;
    }

    .programs-conclusion-content p {
        font-size: 16px;
        line-height: 1.8;
    }
}


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

@media (max-width: 480px) {

    .programs-conclusion {
        padding: 50px 14px;
    }

    .programs-conclusion-content {
        padding: 45px 22px;
        border-radius: 18px;
    }

    .programs-conclusion-content h2 {
        font-size: 30px;
    }

    .programs-conclusion-content p {
        font-size: 15px;
        line-height: 1.75;
    }
}
/* =========================================================
   CORE FOCUS - VIDEO BACKGROUND FIX ONLY
   Do not change pillar card design
   ========================================================= */

.core-focus {
    position: relative;
    overflow: hidden;
    background: transparent !important;
}


/* Keep the actual video visible */

.core-focus-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    overflow: hidden;
    z-index: 0 !important;
}


.core-focus-video video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    transform: translate(-50%, -50%) !important;

    display: block !important;
}


/* Remove the solid teal/blue covering layer */

.core-focus-overlay {
    position: absolute !important;
    inset: 0 !important;

    background: rgba(0, 0, 0, 0.25) !important;

    z-index: 1 !important;
}


/* Keep ALL existing content/card styling */

.core-focus-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   MOBILE
   Keep video background visible
   ========================================================= */

@media screen and (max-width: 768px) {

    .core-focus {
        background: transparent !important;
    }

    .core-focus-video {
        display: block !important;
    }

    .core-focus-video video {
        display: block !important;
    }

    .core-focus-overlay {
        display: block !important;
        background: rgba(0, 0, 0, 0.28) !important;
    }

}
/* =========================================================
   CORE FOCUS - PILLAR CARD SLIDE-IN ANIMATION
   Restores the original pillar card entrance effect
   ========================================================= */

.core-focus .pillar-card {

    opacity: 0;

    transform: translateY(60px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


/* Activate animation only after JS is ready */

.core-focus.cards-ready .pillar-card {

    opacity: 0;

    transform: translateY(60px);

}


/* Card becomes visible */

.core-focus.cards-ready .pillar-card.is-visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   STAGGERED SLIDE-IN
   ========================================================= */

.core-focus.cards-ready .pillar-card:nth-child(1) {

    transition-delay: 0.1s;

}


.core-focus.cards-ready .pillar-card:nth-child(2) {

    transition-delay: 0.25s;

}


.core-focus.cards-ready .pillar-card:nth-child(3) {

    transition-delay: 0.4s;

}


.core-focus.cards-ready .pillar-card:nth-child(4) {

    transition-delay: 0.55s;

}
/* ==================================================
   FOUNDER SECTION - MOBILE FIX
   ================================================== */

@media (max-width: 768px) {

    /* Main leadership section */
    .leadership {
        padding: 60px 0 50px;
        overflow: hidden;
    }

    .leadership .container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Section heading */
    .leadership .section-heading {
        text-align: center;
        margin-bottom: 35px;
    }

    .leadership .section-heading h2 {
        font-size: 30px;
        line-height: 1.25;
        margin: 12px 0;
    }

    .leadership .section-heading p {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto;
    }


    /* Founder entire wrapper */
    .founder-story-section {
        width: 100%;
        margin: 0 auto;
    }


    /* Founder introduction */
    .founder-intro {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        border-radius: 18px;
        overflow: hidden;
    }


    /* Founder image */
    .founder-intro-image {
        width: 100%;
        height: 470px;
        min-height: 470px;
        overflow: hidden;
    }

    .founder-intro-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
    }


    /* Founder text */
    .founder-intro-content {
        width: 100%;
        padding: 30px 22px 32px;
        box-sizing: border-box;
    }


    /* Founder label */
    .founder-label {
        font-size: 11px;
        letter-spacing: 1.5px;
        line-height: 1.5;
    }


    /* Founder name */
    .founder-intro-content h3 {
        font-size: 25px;
        line-height: 1.3;
        margin: 10px 0 14px;
    }


    /* Founder divider */
    .founder-line {
        margin: 0 0 20px;
    }


    /* Founder introduction paragraphs */
    .founder-intro-content p {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 16px;
    }


    /* Read story button */
    .founder-read-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 8px;
        padding: 12px 20px;
        font-size: 13px;
    }


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

    .founder-story {
        width: 100%;
        margin-top: 25px;
        padding: 30px 20px;
        box-sizing: border-box;
        border-radius: 18px;
    }


    /* Story heading */
    .founder-story-heading {
        text-align: center;
        margin-bottom: 28px;
    }

    .founder-story-heading span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .founder-story-heading h3 {
        font-size: 28px;
        line-height: 1.25;
        margin: 10px 0 15px;
    }


    /* Story content */
    .founder-story-content {
        width: 100%;
    }


    .founder-story-content p {
        font-size: 14px;
        line-height: 1.85;
        margin-bottom: 18px;
        text-align: left;
    }


    /* Quote */
    .founder-quote {
        margin: 28px 0;
        padding: 22px 18px;
        text-align: center;
    }

    .founder-quote p {
        font-size: 17px;
        line-height: 1.7;
        text-align: center;
        margin: 0;
    }


    /* Signature */
    .founder-signature {
        text-align: center;
        margin-top: 28px;
    }

    .founder-signature strong {
        display: block;
        font-size: 17px;
    }

    .founder-signature span,
    .founder-signature small {
        display: block;
        font-size: 12px;
        line-height: 1.6;
    }

}


/* ==================================================
   SMALLER PHONES
   ================================================== */

@media (max-width: 480px) {

    .leadership {
        padding-top: 50px;
    }

    .leadership .container {
        padding-left: 14px;
        padding-right: 14px;
    }


    .leadership .section-heading h2 {
        font-size: 27px;
    }


    .founder-intro-image {
        height: 430px;
        min-height: 430px;
    }


    .founder-intro-content {
        padding: 26px 18px 28px;
    }


    .founder-intro-content h3 {
        font-size: 23px;
    }


    .founder-intro-content p {
        font-size: 13.5px;
        line-height: 1.8;
    }


    .founder-story {
        padding: 26px 17px;
    }


    .founder-story-heading h3 {
        font-size: 25px;
    }


    .founder-story-content p {
        font-size: 13.5px;
        line-height: 1.85;
    }


    .founder-quote {
        padding: 20px 14px;
    }

}
/* ==================================================
   CO-DIRECTORS - TABLET IMAGE FIX
   ================================================== */

@media (min-width: 769px) and (max-width: 1024px) {

    .codirectors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .codirector-card {
        overflow: hidden;
    }

    .codirector-image {
        width: 100%;
        height: 430px;
        overflow: hidden;
    }

    .codirector-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
    }

}
@media (min-width: 769px) and (max-width: 1024px) {

    .codirector-image img {
        object-position: center 25%;
    }

}
/* =========================================================
   CORE FOCUS - VIDEO BACKGROUND
   ========================================================= */

.core-focus {
    position: relative;
    overflow: hidden;
    background: transparent !important;
}

.core-focus-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    overflow: hidden;
    z-index: 0 !important;
}

.core-focus-video video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: translate(-50%, -50%) !important;
    display: block !important;
}

.core-focus-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.25) !important;
    z-index: 1 !important;
}

.core-focus-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   CORE FOCUS - PILLAR CARD SLIDE-IN
   ========================================================= */

/* Starting positions */

.core-focus .pillar-card {
    opacity: 0;
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


/* Odd cards come from the LEFT */

.core-focus .pillar-card:nth-child(odd) {
    transform: translateX(-80px);
}


/* Even cards come from the RIGHT */

.core-focus .pillar-card:nth-child(even) {
    transform: translateX(80px);
}


/* Visible state */

.core-focus .pillar-card.is-visible {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   STAGGERED ANIMATION
   ========================================================= */

.core-focus .pillar-card:nth-child(1) {
    transition-delay: 0.1s;
}

.core-focus .pillar-card:nth-child(2) {
    transition-delay: 0.25s;
}

.core-focus .pillar-card:nth-child(3) {
    transition-delay: 0.4s;
}

.core-focus .pillar-card:nth-child(4) {
    transition-delay: 0.55s;
}


/* =========================================================
   MOBILE
   Keep the same side-to-side animation
   ========================================================= */

@media screen and (max-width: 768px) {

    .core-focus {
        background: transparent !important;
    }

    .core-focus-video {
        display: block !important;
    }

    .core-focus-video video {
        display: block !important;
    }

    .core-focus-overlay {
        display: block !important;
        background: rgba(0, 0, 0, 0.28) !important;
    }


    /* Keep animation on mobile */

    .core-focus .pillar-card:nth-child(odd) {
        transform: translateX(-70px);
    }

    .core-focus .pillar-card:nth-child(even) {
        transform: translateX(70px);
    }

    .core-focus .pillar-card.is-visible {
        opacity: 1;
        transform: translateX(0);
    }

}
/*=========================================
ABOUT INTRO / CORE VALUES SECTION
=========================================*/

.about-intro{
    padding:80px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    display:block;
    border-radius:18px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.section-tag{
    display:inline-block;
    color:var(--primary);
    font-size:.9rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.about-content h2{
    font-size:2.5rem;
    color:var(--dark);
    line-height:1.2;
    margin-bottom:24px;
}

.core-values-list{
    list-style:none;
    padding:0;
    margin:0;
}

.core-values-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:22px;
    font-size:1.05rem;
    line-height:1.8;
    color:#4d6470;
}

.core-values-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:12px;
    width:10px;
    height:10px;
    background:var(--secondary);
    border-radius:50%;
}

.core-values-list strong{
    color:var(--dark);
}

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

@media(max-width:768px){

    .about-intro{
        padding:60px 0;
    }

    .about-grid{
        grid-template-columns:1fr;
        gap:35px;
    }

    .about-content h2{
        font-size:2rem;
    }

    .core-values-list li{
        font-size:1rem;
        line-height:1.7;
    }
}
/*=========================================
ABOUT PAGE SPACING FIXES
=========================================*/

/* Hero → About Card */
.about-hero{
    margin-bottom: 0;
}

.about-intro:first-of-type{
    padding: 40px 0 25px;
}

/* About Card → Core Values */
.about-intro + .about-intro{
    padding-top: 20px;
}

/* Core Values → What Drives Us */
.about-grid{
    margin-bottom: 0;
}

/* Mobile spacing */
@media(max-width:768px){

    .about-intro:first-of-type{
        padding:30px 0 15px;
    }

    .about-intro + .about-intro{
        padding-top:15px;
    }
}
/*==================================================
ABOUT INTRO + WHO WE ARE
===================================================*/

.about-who-section {
    position: relative;
    padding: 70px 0 90px;
    background-image: url("../images/about-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


/* BACKGROUND OVERLAY */

.about-who-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 127, 140, 0.82);
    z-index: 0;
}


/* KEEP CONTENT ABOVE OVERLAY */

.about-who-section .container {
    position: relative;
    z-index: 1;
}


/*==================================================
ABOUT INTRO CARD
===================================================*/

.about-who-section .about-card {
    max-width: 900px;
    margin: 0 auto 45px;
    padding: 45px 55px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


/* CARD TEXT */

.about-who-section .about-card p {
    margin: 0;
    color: #245D6E;
    font-size: 16px;
    line-height: 1.8;
}


/* CARD DIVIDER */

.about-who-section .card-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px auto;
}

.about-who-section .card-divider span {
    width: 80px;
    height: 1px;
    background: #F6C54F;
}

.about-who-section .card-divider i {
    color: #F6C54F;
    font-size: 14px;
}


/*==================================================
WHO WE ARE CONTENT
===================================================*/

.about-who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}


/* IMAGE */

.about-who-content .about-image {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.20);
}

.about-who-content .about-image img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
}


/* CONTENT */

.about-who-content .about-content {
    padding: 10px 0;
}


/* WHO WE ARE LABEL */

.about-who-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #F6C54F;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* HEADING */

.about-who-content .about-content h2 {
    margin: 0 0 25px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.2;
}


/* CORE VALUES */

.about-who-content .core-values-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-who-content .core-values-list li {
    position: relative;
    margin-bottom: 17px;
    padding-left: 25px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.7;
}

.about-who-content .core-values-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #F6C54F;
    font-size: 24px;
    line-height: 1;
}

.about-who-content .core-values-list strong {
    color: #F6C54F;
}


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

@media (max-width: 768px) {

    .about-who-section {
        padding: 50px 0 60px;
    }

    .about-who-section .about-card {
        padding: 35px 25px;
        margin-bottom: 40px;
    }

    .about-who-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-who-content .about-image img {
        height: 300px;
    }

    .about-who-content .about-content {
        text-align: center;
    }

    .about-who-content .section-tag {
        margin-bottom: 10px;
    }

    .about-who-content .about-content h2 {
        font-size: 30px;
    }

    .about-who-content .core-values-list {
        text-align: left;
    }

}
/*==================================
CONTACT FORM ENHANCEMENT ONLY
(Add at the bottom of style.css)
===================================*/

/* Keep existing layout, only polish it */

.contact-wrapper{
    align-items: start;
    gap: 45px;
}

/* CONTACT INFO CARDS */

.contact-info-card{
    background:#fff;
    border:1px solid rgba(8,127,140,.08);
    border-radius:18px;
    padding:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s ease;
}

.contact-info-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}

/* Keep your yellow icons */

.contact-icon{
    background:rgba(246,197,79,.18);
    color:#F6C54F;
}

/* FORM CARD */

.contact-form-box{
    background:#fff;
    border-radius:22px;
    padding:40px;
    border:1px solid rgba(8,127,140,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

/* Decorative gold corner */

.contact-form-box::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:70px;
    height:70px;
    border-top:3px solid #F6C54F;
    border-right:3px solid #F6C54F;
    border-top-right-radius:22px;
}

/* FORM TEXT */

.contact-form-box h3{
    color:#245D6E;
    margin-bottom:8px;
}

.contact-form-box>p{
    color:#666;
    margin-bottom:30px;
    line-height:1.7;
}

/* INPUTS */

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#245D6E;
    font-weight:600;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:14px 16px;
    border:1px solid #d7e3e5;
    border-radius:10px;
    background:#fafcfc;
    font-family:'Open Sans',sans-serif;
    font-size:15px;
    transition:.25s ease;
    box-sizing:border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#9aa4a8;
}

.form-group textarea{
    resize:vertical;
    min-height:160px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
    border-color:#087F8C;
    background:#fff;
    box-shadow:0 0 0 3px rgba(8,127,140,.08);
    outline:none;
}

/* BUTTON */

.contact-submit{
    width:100%;
    padding:15px;
    border:none;
    border-radius:10px;
    background:#087F8C;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:600;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:.3s ease;
}

.contact-submit i{
    color:#F6C54F;
}

.contact-submit:hover{
    background:#245D6E;
    transform:translateY(-2px);
}

/* SUCCESS MESSAGE PLACEHOLDER */

.form-status{
    margin-top:16px;
    text-align:center;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

    .contact-form-box{
        padding:28px 22px;
    }

    .form-row{
        grid-template-columns:1fr;
        gap:0;
    }

    .contact-wrapper{
        gap:30px;
    }
}
/*==================================
PREMIUM CONTACT SPLIT PANEL
===================================*/

.contact-wrapper{
    display:grid;
    grid-template-columns:430px 1fr;
    gap:35px;
    align-items:stretch;
}

/* LEFT PANEL */

.contact-panel{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    background:url("../images/contact-panel.jpg") center/cover no-repeat;
    min-height:760px;
    display:flex;
}

.contact-panel-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(8,127,140,.86),
        rgba(36,93,110,.96)
    );
}

.contact-panel-content{
    position:relative;
    z-index:2;
    padding:45px 35px;
    display:flex;
    flex-direction:column;
    color:#fff;
}

.panel-tag{
    color:#F6C54F;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:14px;
}

.contact-panel-content h3{
    color:#fff;
    font-size:34px;
    line-height:1.2;
    margin:0 0 18px;
}

.contact-panel-content>p{
    color:rgba(255,255,255,.88);
    line-height:1.8;
}

.panel-divider{
    width:70px;
    height:3px;
    background:#F6C54F;
    border-radius:50px;
    margin:28px 0 35px;
}

/* CONTACT ITEMS */

.panel-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.12);
}

.panel-item:first-of-type{
    border-top:none;
}

.panel-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(246,197,79,.18);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#F6C54F;
    font-size:18px;
    flex-shrink:0;
}

.panel-item h4{
    margin:0 0 6px;
    color:#fff;
    font-size:17px;
}

.panel-item p{
    margin:3px 0;
    color:rgba(255,255,255,.82);
}

/* FORM CARD */

.contact-form-box{
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 22px 60px rgba(0,0,0,.08);
    border-top:4px solid #F6C54F;
}

.form-header{
    text-align:center;
    margin-bottom:35px;
}

.form-header span{
    color:#F6C54F;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.form-header h3{
    margin:10px 0;
    color:#245D6E;
    font-size:30px;
}

.form-header p{
    color:#666;
    line-height:1.7;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.form-group{
    margin-bottom:20px;
    position:relative;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    color:#245D6E;
    font-weight:600;
}

.icon-input i{
    position:absolute;
    left:16px;
    top:44px;
    color:#F6C54F;
}

.icon-input input,
.icon-input textarea,
.icon-input select{
    width:100%;
    padding:15px 16px 15px 46px;
    border:1px solid #d9e4e6;
    border-radius:12px;
    background:#fafcfc;
    font-size:15px;
    box-sizing:border-box;
    transition:.3s;
}

.icon-input textarea{
    resize:vertical;
    min-height:170px;
}

.icon-input input:focus,
.icon-input textarea:focus,
.icon-input select:focus{
    outline:none;
    border-color:#087F8C;
    background:#fff;
    box-shadow:0 0 0 3px rgba(8,127,140,.08);
}

.contact-submit{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#087F8C;
    color:#fff;
    font-size:16px;
    font-weight:600;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    cursor:pointer;
    transition:.3s;
}

.contact-submit i{
    color:#F6C54F;
}

.contact-submit:hover{
    background:#245D6E;
    transform:translateY(-2px);
}

.form-status{
    margin-top:15px;
    text-align:center;
    font-size:14px;
}

/* MOBILE */

@media(max-width:900px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-panel{
        min-height:auto;
    }

    .contact-panel-content{
        padding:35px 25px;
    }

    .contact-panel-content h3{
        font-size:28px;
    }

    .contact-form-box{
        padding:30px 22px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

}

/* =========================================================
   ROLAK FOUNDATION — FOUNDER SECTION
   FINAL RESPONSIVE VERSION
   ---------------------------------------------------------
   BRAND COLORS:
   TEAL BLUE = #008c95
   YELLOW    = #d4af37

   IMPORTANT:
   This is the ONLY Founder CSS block that should remain.
   ========================================================= */


/* =========================================================
   FOUNDER BRAND VARIABLES
   ========================================================= */

:root {
    --rolak-teal: #008c95;
    --rolak-yellow: #d4af37;
    --rolak-white: #ffffff;
    --rolak-text: #555555;
}


/* =========================================================
   MAIN FOUNDER SECTION
   ========================================================= */

.rolak-leadership {
    width: 100%;
    position: relative;
    padding: 100px 0;
    background: var(--rolak-teal);
    overflow: hidden;
}


/* =========================================================
   SECTION HEADING
   ---------------------------------------------------------
   IMPORTANT:
   Any heading that was previously teal/green is now WHITE
   so that it does not disappear into the teal background.
   ========================================================= */

.rolak-leadership .section-heading {
    max-width: 850px;
    margin: 0 auto 65px;
    text-align: center;
}

.rolak-leadership .section-heading .section-badge {
    color: var(--rolak-yellow);
}

.rolak-leadership .section-heading h2 {
    margin: 15px 0 20px;
    color: var(--rolak-white);
}

.rolak-leadership .section-heading h2 span {
    display: block;
    color: var(--rolak-yellow);
}

.rolak-leadership .section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.8;
}


/* =========================================================
   FOUNDER WRAPPER
   ========================================================= */

.rolak-founder-wrapper {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   FOUNDER INTRODUCTION
   DESKTOP
   ========================================================= */

.rolak-founder-introduction {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 55px;
    align-items: center;
    width: 100%;
}


/* =========================================================
   FOUNDER IMAGE
   ---------------------------------------------------------
   NO ABSOLUTE POSITIONING
   NO NEGATIVE MARGIN
   NO OVERLAP
   ========================================================= */

.rolak-founder-image {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--rolak-white);
    border: 4px solid var(--rolak-yellow);
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}


/* =========================================================
   FOUNDER IMAGE
   ========================================================= */

.rolak-founder-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
}


/* =========================================================
   OPTIONAL IMAGE CAPTION
   ========================================================= */

.rolak-founder-image-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 25px 25px 22px;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0)
    );

    color: var(--rolak-white);

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    min-height: 130px;
}

.rolak-founder-image-caption strong {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    line-height: 1.3;
    color: var(--rolak-white);
}

.rolak-founder-image-caption span {
    margin-top: 5px;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--rolak-white);
}


/* =========================================================
   FOUNDER INFORMATION CARD
   ========================================================= */

.rolak-founder-information {
    position: relative;
    width: 100%;
    min-width: 0;
    padding: 50px;

    background: var(--rolak-white);

    border: 1px solid rgba(0, 140, 149, 0.15);
    border-radius: 8px;

    box-sizing: border-box;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}


/* =========================================================
   FOUNDER POSITION
   ========================================================= */

.rolak-founder-position {
    display: inline-block;
    margin-bottom: 14px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--rolak-yellow);
}


/* =========================================================
   FOUNDER NAME
   ========================================================= */

.rolak-founder-information h3 {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.2;
    font-weight: 700;

    color: var(--rolak-teal);
}


/* =========================================================
   GOLD DIVIDER
   ========================================================= */

.rolak-founder-line {
    width: 70px;
    height: 3px;
    margin: 22px 0 25px;

    background: var(--rolak-yellow);
}


/* =========================================================
   FOUNDER INFORMATION TEXT
   ========================================================= */

.rolak-founder-information p {
    margin: 0 0 20px;

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.85;

    color: var(--rolak-text);
}


/* =========================================================
   READ STORY BUTTON
   ========================================================= */

.rolak-founder-story-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 12px;
    padding: 14px 24px;

    background: var(--rolak-teal);
    color: var(--rolak-white);

    text-decoration: none;

    border-radius: 4px;

    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.rolak-founder-story-button:hover {
    background: var(--rolak-yellow);
    color: var(--rolak-teal);

    transform: translateY(-2px);

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

.rolak-founder-story-button i {
    transition: transform 0.3s ease;
}

.rolak-founder-story-button:hover i {
    transform: translateY(3px);
}


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

.rolak-founder-story {
    width: 100%;
    max-width: 1000px;

    margin: 80px auto 0;
    padding: 70px;

    background: var(--rolak-white);

    border-top: 4px solid var(--rolak-yellow);

    box-sizing: border-box;

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


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

.rolak-founder-story-heading {
    text-align: center;
    margin-bottom: 45px;
}

.rolak-founder-story-heading > span {
    display: block;
    margin-bottom: 12px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--rolak-yellow);
}

.rolak-founder-story-heading h3 {
    margin: 0;

    font-family: "Poppins", sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.15;

    color: var(--rolak-teal);
}

.rolak-founder-story-heading h3 strong {
    display: block;
    color: var(--rolak-yellow);
}


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

.rolak-founder-story-divider {
    width: 70px;
    height: 2px;

    margin: 22px auto 0;

    background: var(--rolak-yellow);
}


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

.rolak-founder-story-content {
    width: 100%;
}

.rolak-founder-story-content > p {
    margin: 0 0 25px;

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 1.9;

    color: var(--rolak-text);
}


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

.rolak-founder-quote {
    margin: 45px 0;
    padding: 30px;

    text-align: center;

    background: var(--rolak-teal);

    border-left: 4px solid var(--rolak-yellow);
}

.rolak-founder-quote p {
    margin: 0;

    font-family: "Great Vibes", cursive;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.5;

    color: var(--rolak-white);
}

.rolak-founder-quote strong {
    color: var(--rolak-yellow);
}


/* =========================================================
   SIGNATURE
   ========================================================= */

.rolak-founder-signature {
    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    margin-top: 45px;
}

.rolak-founder-signature strong {
    font-family: "Great Vibes", cursive;
    font-size: 34px;
    font-weight: 400;

    color: var(--rolak-teal);
}

.rolak-founder-signature span {
    margin-top: 5px;

    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: var(--rolak-teal);
}

.rolak-founder-signature small {
    margin-top: 4px;

    font-family: "Open Sans", sans-serif;
    font-size: 12px;

    color: #777777;
}


/* =========================================================
   LARGE TABLETS
   769px — 1100px
   ---------------------------------------------------------
   IMAGE FIRST
   INFORMATION SECOND
   NO OVERLAP
   ========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {

    .rolak-leadership {
        padding: 80px 0;
    }

    .rolak-founder-wrapper {
        width: 92%;
        max-width: 1000px;
    }

    .rolak-founder-introduction {
        display: flex;
        flex-direction: column;
        gap: 35px;

        width: 100%;
    }

    .rolak-founder-image {
        width: 100%;
        max-width: 850px;

        margin: 0 auto;

        height: auto;
        min-height: 0;

        overflow: hidden;
    }

    .rolak-founder-image img {
        position: relative;

        display: block;

        width: 100%;
        height: auto;

        min-height: 0;
        max-height: none;

        object-fit: contain;
        object-position: center center;
    }

    .rolak-founder-information {
        width: 100%;

        padding: 42px 55px 48px;

        box-sizing: border-box;
    }

    .rolak-founder-information h3 {
        font-size: 34px;
    }

    .rolak-founder-information p {
        font-size: 15px;
        line-height: 1.8;
    }

    .rolak-founder-story {
        width: 100%;
        margin-top: 60px;
        padding: 55px;
    }
}


/* =========================================================
   TABLETS / LARGE PHONES
   601px — 768px
   ---------------------------------------------------------
   THIS BREAKPOINT WAS MISSING IN YOUR OLD CSS.
   ========================================================= */

@media (min-width: 601px) and (max-width: 768px) {

    .rolak-leadership {
        padding: 70px 0;
    }

    .rolak-founder-wrapper {
        width: 92%;
    }

    .rolak-founder-introduction {
        display: flex;
        flex-direction: column;

        gap: 28px;
        width: 100%;
    }

    .rolak-founder-image {
        width: 100%;
        margin: 0 auto;

        height: auto;
        min-height: 0;
    }

    .rolak-founder-image img {
        display: block;

        width: 100%;
        height: auto;

        min-height: 0;
        max-height: none;

        object-fit: contain;
    }

    .rolak-founder-information {
        width: 100%;
        padding: 35px 30px;
    }

    .rolak-founder-information h3 {
        font-size: 30px;
    }

    .rolak-founder-information p {
        font-size: 15px;
        line-height: 1.8;
    }

    .rolak-founder-story {
        width: 100%;
        margin-top: 45px;
        padding: 45px 30px;
    }

    .rolak-founder-story-heading h3 {
        font-size: 38px;
    }
}


/* =========================================================
   MOBILE
   600px AND BELOW
   ========================================================= */

@media (max-width: 600px) {

    .rolak-leadership {
        padding: 60px 0;
    }

    .rolak-leadership .section-heading {
        width: 92%;
        margin: 0 auto 40px;
    }

    .rolak-founder-wrapper {
        width: 92%;
        margin: 0 auto;
    }

    .rolak-founder-introduction {
        display: flex;
        flex-direction: column;

        gap: 25px;

        width: 100%;
    }


    /* -------------------------
       IMAGE
       ------------------------- */

    .rolak-founder-image {
        width: 100%;

        margin: 0;

        border-width: 3px;
        border-radius: 5px;

        height: auto;
        min-height: 0;

        overflow: hidden;
    }

    .rolak-founder-image img {
        position: relative;

        display: block;

        width: 100%;
        height: auto;

        min-height: 0;
        max-height: none;

        object-fit: contain;
        object-position: center center;
    }


    /* -------------------------
       IMAGE CAPTION
       ------------------------- */

    .rolak-founder-image-caption {
        padding: 20px;
        min-height: 110px;
    }

    .rolak-founder-image-caption strong {
        font-size: 17px;
    }

    .rolak-founder-image-caption span {
        font-size: 10px;
        letter-spacing: 1px;
    }


    /* -------------------------
       INFORMATION CARD
       ------------------------- */

    .rolak-founder-information {
        width: 100%;

        padding: 30px 24px;

        border-radius: 5px;

        box-sizing: border-box;
    }

    .rolak-founder-position {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .rolak-founder-information h3 {
        font-size: 27px;
        line-height: 1.2;
    }

    .rolak-founder-information p {
        font-size: 15px;
        line-height: 1.75;
    }

    .rolak-founder-story-button {
        padding: 13px 20px;
        font-size: 12px;
    }


    /* -------------------------
       STORY
       ------------------------- */

    .rolak-founder-story {
        width: 100%;

        margin-top: 45px;

        padding: 40px 24px;

        box-sizing: border-box;
    }

    .rolak-founder-story-heading {
        margin-bottom: 35px;
    }

    .rolak-founder-story-heading h3 {
        font-size: 32px;
    }

    .rolak-founder-story-content > p {
        font-size: 15px;
        line-height: 1.8;
    }


    /* -------------------------
       QUOTE
       ------------------------- */

    .rolak-founder-quote {
        margin: 35px 0;
        padding: 25px 18px;
    }

    .rolak-founder-quote p {
        font-size: 25px;
    }


    /* -------------------------
       SIGNATURE
       ------------------------- */

    .rolak-founder-signature {
        margin-top: 35px;
    }

    .rolak-founder-signature strong {
        font-size: 29px;
    }

}


/* =========================================================
   VERY SMALL PHONES
   380px AND BELOW
   ========================================================= */

@media (max-width: 380px) {

    .rolak-leadership {
        padding: 50px 0;
    }

    .rolak-founder-wrapper {
        width: 94%;
    }

    .rolak-founder-information {
        padding: 25px 20px;
    }

    .rolak-founder-information h3 {
        font-size: 24px;
    }

    .rolak-founder-story {
        padding: 35px 20px;
    }

    .rolak-founder-story-heading h3 {
        font-size: 29px;
    }

    .rolak-founder-quote p {
        font-size: 22px;
    }

}