/* ==========================================================================
   GeBBS Foundation — theme.css
   Built on Bootstrap 5. Design tokens from Figma.
   ========================================================================== */

:root {
	--gebbs-navy-1: #2b4687;
	--gebbs-navy-2: #1d3566;
	--gebbs-orange: #f5a623;
	--gebbs-orange-dark: #e0951a;
	--gebbs-green: #4a7c3f;
	--gebbs-green-soft: #eaf3e6;
	--gebbs-cream: #fbf9f4;
	--gebbs-ink: #1A1A1A;
	--gebbs-muted: #5c6677;
	--gebbs-line: #e6e8ee;
	--gebbs-p: #3D4A5C;

	--font-head: "Fraunces", Georgia, "Times New Roman", serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-ui: "DM Sans", var(--font-body);
}

/* ---------- Base ---------- */
body {
	font-family: var(--font-body);
	color: var(--gebbs-ink);
	background: #fff;
}

h1, h2, h3, h4, h5, h6,
.gebbs-section-title {
	font-family: var(--font-head);
	font-weight: 700;
	color: var(--gebbs-ink);
}

a { text-decoration: none; }

.text-accent { color: var(--gebbs-orange); }

.gebbs-section-title {
	font-size: clamp(1.9rem, 3.2vw, 2.75rem);
	line-height: 1.1;
}

.gebbs-section-lead {
	max-width: 760px;
	color: var(--gebbs-p);
	font-size: 1.05rem;
	line-height: 1.6;
}

/* ---------- Header ---------- */
.gebbs-header {
	background: linear-gradient(90deg, var(--gebbs-navy-1) 0%, var(--gebbs-navy-2) 100%);
	z-index: 1030;
}
.gebbs-logo,
.navbar-brand img { height: 40px; width: auto; }

.gebbs-nav .nav-link {
	color: rgba(255, 255, 255, 0.92);
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 500;
	padding: 0.4rem 0.65rem;
	transition: color 0.2s ease;
}
.gebbs-nav .nav-link:hover,
.gebbs-nav .nav-link:focus { color: var(--gebbs-orange); }

.gebbs-nav .dropdown-menu { border: 0; box-shadow: 0 8px 28px rgba(0,0,0,.12); }

.gebbs-btn-donate {
	background: var(--gebbs-orange);
	color: var(--gebbs-ink);
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 28px;
	padding: 0.55rem 1.5rem;
	border: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}
.gebbs-btn-donate:hover { background: var(--gebbs-orange-dark); color: #000; transform: translateY(-1px); }

/* ---------- Buttons ---------- */
.gebbs-btn-primary {
	background: var(--gebbs-orange);
	color: var(--gebbs-ink);
	font-family: var(--font-ui);
	font-weight: 600;
	border-radius: 30px;
	padding: 0.75rem 1.8rem;
	border: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}
.gebbs-btn-primary:hover { background: var(--gebbs-orange-dark); color: #000; transform: translateY(-1px); }

.gebbs-btn-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,0.8);
	border-radius: 30px;
	padding: 0.75rem 1.8rem;
	font-family: var(--font-ui);
	font-weight: 600;
	transition: background 0.2s ease, color 0.2s ease;
}
.gebbs-btn-outline:hover { background: #fff; color: var(--gebbs-navy-2); }

/* ---------- Hero ---------- */
.gebbs-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	color: #fff;
	background: url("../images/Hero-Banner.png") center/cover no-repeat;
}
.gebbs-hero__inner { position: relative; z-index: 2; padding: 5rem 0; }
.gebbs-hero__title {
	font-family: var(--font-head);
	color: #fff;
	font-weight: 900;
	font-size: clamp(2.6rem, 6vw, 5rem);
	line-height: 1.02;
	letter-spacing: -0.01em;
	margin-bottom: 1.25rem;
}
.gebbs-hero__subtitle {
	font-size: 1.15rem;
	max-width: 520px;
	color: rgba(255,255,255,0.92);
}

/* ---------- Focus area ---------- */
.gebbs-focus {
    position: relative;
    padding: 90px 0 35px;
    background: url("../images/focus-banner.png") center no-repeat;
    overflow: hidden;
}

/* Quote */

.gebbs-quote {
    max-width: 900px;
    margin: auto;
    font-family: var(--font-head);
    font-style: italic;
    font-size: clamp(1.6rem,2.1vw,2.6rem);
    line-height: 1.5;
    color: #222;
}

.gebbs-quote span{
    color:#F5A623;
}

.gebbs-quote__source{
    margin-top:15px;
    font-size:13px;
    color: var(--gebbs-p);
}

.gebbs-section-title{
    margin-top:50px;
    margin-bottom:40px;
    font-family: var(--font-head);
    font-size:2.2rem;
    font-weight:700;
    color:#1f1f1f;
}

/* Cards */

.gebbs-focus-card{
    position:relative;
    height:320px;
    border-radius:14px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
    transition:.35s;
}

.gebbs-focus-card:hover{
    transform:translateY(-8px);
}

.gebbs-focus-card__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 0%,
        rgba(0,0,0,.45) 40%,
        rgba(0,0,0,0) 75%
    );
}
.gebbs-focus-card__link {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
}

.gebbs-focus-card__content{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    z-index:2;
    text-align:center;
}

.gebbs-focus-card__title{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:8px;
}

.gebbs-focus-card__desc{
    color:#fff;
    font-size:13px;
    line-height:1.5;
    margin:0;
}

/* Bottom Colour Border */

.col-md-3:nth-child(1) .gebbs-focus-card{
    border-bottom:4px solid #2d5cff;
}

.col-md-3:nth-child(2) .gebbs-focus-card{
    border-bottom:4px solid #2fa64a;
}

.col-md-3:nth-child(3) .gebbs-focus-card{
    border-bottom:4px solid #f0a400;
}

.col-md-3:nth-child(4) .gebbs-focus-card{
    border-bottom:4px solid #d92b2b;
}

/* Responsive */

@media(max-width:768px){

    .gebbs-focus-card{
        height:260px;
    }

    .gebbs-quote{
        font-size:1.35rem;
    }

    .gebbs-section-title{
        font-size:1.8rem;
    }

}


/* ---------- Purpose: Mission & Vision ---------- */
.gebbs-purpose {
	position: relative;
	padding: 5rem 0 0;
	background: url("../images/our purpose bg.png") center/cover no-repeat;
}
.gebbs-mv-card {
	background: #fff;
	border: 1px solid var(--gebbs-line);
	border-radius: 20px;
	padding: 20px;
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	box-shadow: 0 12px 30px rgba(40,60,90,0.06);
}
.gebbs-mv-card__title { font-size: 1.6rem; margin-bottom: 0.75rem; }
.gebbs-mv-card p { color: var(--gebbs-p); line-height: 1.65; margin: 0; }

/* ---------- Rooted in Our Values ---------- */
.gebbs-values {
	margin-top: 4rem;
}
.gebbs-value-card p { color: var(--gebbs-p); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* ---------- Impact stats ---------- */
.gebbs-impact{
    position: relative;
    padding:50px 0;
    background: url("../images/creating-bg.png") center/cover no-repeat;
    overflow:hidden;
}


.gebbs-section-title{
    font-size:36px;
    font-weight:600;
	margin:0px;
    color: var(--gebbs-ink);
}

/* Card */

.impact-card{
    position:relative;
    height:230px;
    border-radius:16px;
    overflow:hidden;
    background-size:cover;
    background-position:center;
    transition:.35s;
}

.impact-card:hover{
    transform:translateY(-8px);
}

.impact-content{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    color:#fff;
    z-index:2;
	text-align:center;
}

.impact-content h3{
    font-size:34px;
    font-weight:700;
    color:#fff;
    margin-bottom:6px;
    line-height:1;
}

.impact-content p{
    margin:0;
    font-size:16px;
    line-height:1.4;
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .impact-card{
        height:210px;
    }

    .gebbs-section-title{
        font-size:34px;
    }
}

@media(max-width:767px){

    .impact-card{
        height:190px;
    }

    .impact-content h3{
        font-size:26px;
    }

    .impact-content p{
        font-size:13px;
    }

    .gebbs-section-title{
        font-size:28px;
    }
}

/* ---------- Initiatives ---------- */
.gebbs-initiatives { padding: 5rem 0; background: #fff; }
.gebbs-init-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(40,60,90,0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gebbs-init-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(40,60,90,0.14); }
.gebbs-init-card__body { padding: 1.5rem; }
.gebbs-init-card__tag {
	display: inline-block;
	font-family: var(--font-ui);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--gebbs-green);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 0.5rem;
}
.gebbs-init-card__title { font-size: 1.25rem; margin-bottom: 0.6rem; color: var(--gebbs-navy-2); }
.gebbs-init-card__body p { color: var(--gebbs-p); font-size: 0.95rem; line-height: 1.6; margin: 0; }

/* ---------- Presence ---------- */
.presence-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}
.presence-text h2 { display: flex; align-items: center; gap: 12px;  }
.presence-text h4 { color: var(--navy); margin: 26px 0 6px; font-size: 15px; }
.presence-text p { color: var(--gebbs-p); }
.presence-state { font-size: 18px; font-weight: 600; color: var(--orange); }
.cities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-left: 0; color: var(--gebbs-p); }
.cities-list li { font-size: 14px; color: var(--text-dark); display: flex; align-items: center;   /* Vertically centers icon and text */ gap: 8px;
 }
.cities-list li::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../images/ul.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

/* ---------- Partners ---------- */
.gebbs-partners { padding: 4.5rem 0; background: #fff; }
.gebbs-partner-logo {
	min-width: 150px;
	height: 80px;
	display: flex; align-items: center; justify-content: center;
	border: 1px solid var(--gebbs-line);
	border-radius: 12px;
	color: var(--gebbs-muted);
	font-family: var(--font-ui);
	font-weight: 600;
	background: var(--gebbs-cream);
	filter: grayscale(1);
	transition: filter 0.2s ease, transform 0.2s ease;
}
.gebbs-partner-logo:hover { filter: grayscale(0); transform: translateY(-3px); }
.gebbs-partner-logo__img { max-width: 120px; max-height: 56px; width: auto; height: auto; object-fit: contain; }

/* ---------- Wave + Footer ---------- */
.gebbs-footer {
	background: linear-gradient(90deg, var(--gebbs-navy-1), var(--gebbs-navy-2));
	color: rgba(255,255,255,0.85);
}
.gebbs-footer-logo { height: 48px; width: auto; }
.gebbs-footer-tagline { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; max-width: 280px; }
.gebbs-footer-contact { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; }
.gebbs-footer-heading {
	color: #fff;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.1rem;
}
.gebbs-footer-links li { margin-bottom: 0.6rem; }
.gebbs-footer-links a {
	color: rgba(255,255,255,0.75);
	font-size: 0.92rem;
	transition: color 0.2s ease, padding-left 0.2s ease;
}
.gebbs-footer-links a:hover { color: var(--gebbs-orange); padding-left: 4px; }
.gebbs-footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }
.gebbs-badge {
	border: 1px solid rgba(255,255,255,0.3);
	border-radius: 20px;
	padding: 0.3rem 0.9rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255,255,255,0.85);
}

/* ---------- Blog / generic content ---------- */
.gebbs-page-header {
	background: linear-gradient(90deg, var(--gebbs-navy-1), var(--gebbs-navy-2));
	color: #fff;
	padding: 4rem 0 3rem;
}
.gebbs-page-header h1 { color: #fff; }
.entry-content { line-height: 1.75; color: #2a2f3a; }
.entry-content a { color: var(--gebbs-navy-1); text-decoration: underline; }
.gebbs-card-post {
	border: 1px solid var(--gebbs-line);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}
.gebbs-card-post:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(40,60,90,0.1); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
	.gebbs-header .navbar-collapse {
		background: var(--gebbs-navy-2);
		padding: 1rem;
		border-radius: 0 0 12px 12px;
		margin-top: 0.5rem;
	}
	.gebbs-nav { text-align: center; }
	.gebbs-btn-donate { margin-top: 0.75rem; }
	.gebbs-mv-card { padding: 2rem 1.5rem 2rem 1.5rem; }
	.gebbs-mv-card__icon { position: static; margin-bottom: 1.25rem; }
}
@media (max-width: 575.98px) {
	.gebbs-presence__cities { grid-template-columns: 1fr; }
	.cities-list { grid-template-columns: 1fr; }
	.gebbs-hero { min-height: 540px; }
}

/* ==========================================================================
   Focus Area sub-pages (Community Health / Education / Environment /
   Road Safety) — shared template, driven by inc/focus-areas-data.php.
   Each page sets --fa-accent / --fa-accent-soft inline on .gebbs-fa.
   ========================================================================== */

.text-accent-area { color: var(--fa-accent, var(--gebbs-orange)); }

/* ---------- Hero ---------- */
.gebbs-fa-hero {
	position: relative;
	min-height: 640px;
	display: flex;
	align-items: center;
	color: #fff;
	background-size: cover;
	background-position: center;
}
.gebbs-fa-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(15,25,50,0.82) 0%, rgba(15,25,50,0.55) 55%, rgba(15,25,50,0.25) 100%);
}
.gebbs-fa-hero__inner { position: relative; z-index: 2; padding: 4.5rem 0; }
.gebbs-fa-hero__title {
	font-family: var(--font-head);
	color: #fff;
	font-weight: 700;
	font-size: clamp(2rem, 4vw, 3.3rem);
	line-height: 1.2;
	max-width: 780px;
}

/* ---------- Intro ---------- */
.gebbs-fa-intro { padding: 5rem 0; background: url("../images/similar/Our Work bg.png") center/cover no-repeat; }
.gebbs-fa-intro__heading {
	font-family: var(--font-head);
	font-size: clamp(3.1rem, 2.6vw, 2.4rem);
	color: #004DA5;
	margin-bottom: 1.25rem;
}
.gebbs-fa-intro__text { color: var(--gebbs-p); line-height: 1.75; font-size: 1.02rem; }

/* ---------- Programs / tabs ---------- */
.gebbs-fa-programs { padding: 3.5rem 0 3.5rem; }

.gebbs-fa-tabs {
	list-style: none;
	gap: 0.6rem;
	margin: 2.5rem 0 2.75rem;
	padding: 0;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.gebbs-fa-tabs::-webkit-scrollbar { display: none; }
.gebbs-fa-tabs .nav-link {
	white-space: nowrap;
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--gebbs-navy-2);
	background: #fff;
	border: 1px solid var(--gebbs-line);
	border-radius: 30px;
	padding: 0.65rem 1.3rem;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.gebbs-fa-tabs .nav-link:hover { border-color: var(--fa-accent); }
.gebbs-fa-tabs .nav-link.active {
	background: var(--fa-accent);
	border-color: var(--fa-accent);
	color: #fff;
}

.gebbs-fa-program-card {
	background: #fff;
	border-radius: 22px;
	padding: 2.5rem;
	box-shadow: 0 16px 40px rgba(40,60,90,0.08);
}
.gebbs-fa-program-card__num {
	display: block;
	font-family: var(--font-head);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--fa-accent-soft);
	line-height: 1;
}
.gebbs-fa-program-card__tag {
	display: inline-block;
	font-family: var(--font-ui);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--fa-accent);
	margin: 0.5rem 0 0.5rem;
}
.gebbs-fa-program-card__title {
	font-family: var(--font-head);
	font-size: 36px;
	color: var(--gebbs-navy-2);
	margin-bottom: 1rem;
}
.gebbs-fa-program-card__desc { color: var(--gebbs-p); line-height: 1.75; margin-bottom: 1rem; }
.gebbs-fa-program-card__focus-label {
	font-family: var(--font-ui);
	font-weight: 700;
	color: var(--gebbs-ink);
	margin: 1.25rem 0 0.6rem;
}
.gebbs-fa-program-card__list { margin: 0; padding: 0; }
.gebbs-fa-program-card__list li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 0.55rem;
	color: var(--gebbs-p);
	font-size: 0.95rem;
}
.gebbs-fa-program-card__list li::before {
	content: url('../images/similar/check.png');
	position: absolute;
	left: 0;
	top: 4px;
	width: 20px;
	height: 20px;
	font-size: 0.7rem;
	line-height: 20px;
	text-align: center;
	border-radius: 50%;
}

/* ---------- Impact at a glance ---------- */
.gebbs-fa-stats {
	padding: 4.5rem 0;
	background: url("../images/similar/Impact at a Glance.png") center/cover no-repeat;
}
.gebbs-fa-stat-card {
	border-radius: 16px;
	padding: 1.75rem 1.25rem;
	text-align: center;
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
	border-bottom: 3px solid #F5A623;
}
.gebbs-fa-stat-card h3 { font-family: var(--font-head); font-size: 1.9rem; color: #fff; margin-bottom: 0.4rem; }
.gebbs-fa-stat-card p { color: rgba(255,255,255,0.92); font-size: 0.9rem; margin: 0; line-height: 1.4; }
.gebbs-fa-stat-card--blue   { background: #3673CE; }
.gebbs-fa-stat-card--teal   { background: #289BA6; }
.gebbs-fa-stat-card--purple { background: #7444A9; }
.gebbs-fa-stat-card--orange { background: #E8931B; }

/* ---------- Gallery ---------- */
.gebbs-fa-gallery{
    padding:80px 0;
    background:#fff;
}

/* Masonry Grid */

.masonry-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    grid-auto-rows:140px;
}

/* Images */

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

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

.gallery-item:hover img{
    transform:scale(1.05);
}

/* Layout */

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

.item-2{
    grid-column:2 / span 2;
    grid-row:span 2;
}

.item-3{
    grid-column:4;
    grid-row:span 1;
}

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

.item-5{
    grid-column:4;
    grid-row:span 1;
}

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

.item-7{
    grid-column:3;
    grid-row:span 1;
}

.item-8{
    grid-column:4;
    grid-row:span 1;
}

/* Tablet */

@media(max-width:991px){

    .masonry-gallery{
        grid-template-columns:repeat(2,1fr);
        grid-auto-rows:160px;
    }

    .gallery-item{
        grid-column:auto !important;
        grid-row:span 1 !important;
    }

    .item-2,
    .item-4{
        grid-row:span 2 !important;
    }

}

/* Mobile */

@media(max-width:576px){

    .masonry-gallery{
        grid-template-columns:1fr;
        grid-auto-rows:220px;
    }

    .gallery-item{
        grid-column:auto !important;
        grid-row:span 1 !important;
    }

}

/* ---------- Process ---------- */
.gebbs-fa-process { padding: 5rem 0; background: var(--gebbs-cream); }
.gebbs-fa-process .row{ position: relative;}
.gebbs-fa-process-step { position: relative; text-align: center; padding: 0 0.5rem; }
.gebbs-fa-process-step__num {
	position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    padding: 10px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 8px 32px rgba(43,70,135,.1);
	margin-bottom: 1rem;
}
.gebbs-fa-process-step::after{
    content:"";
    position:absolute;
    top:28px;
    left:58%;
    width:100%;
    height:35px;
    background:url("../images/similar/line.svg") no-repeat center;
    background-size:100% 100%;
    z-index:1;
}
.col-lg-3:last-child .gebbs-fa-process-step::after{
    display:none;
}
@media (max-width: 767.98px) {
    .gebbs-fa-process-step::after {
        display: none;
    }
}
.gebbs-fa-process-step h4 { font-size: 1.05rem; color: #004DA5; margin-bottom: 0.5rem; }
.gebbs-fa-process-step p { color: var(--gebbs-p); font-size: 0.88rem; line-height: 1.55; margin: 0; }

/* ---------- Testimonials ---------- */
.gebbs-fa-testimonials { padding: 5rem 0; background: url('../images/similar/Voices from the Community bg.png') center/cover no-repeat; }
.gebbs-fa-testimonial {
	background: #fff;
	border-radius: 18px;
	padding: 2rem;
	height: 100%;	
	position: relative;
	box-shadow: 0px 8px 32px 0px #2B46871A;
}
.gebbs-fa-testimonial__quote-mark {
	font-family: var(--font-head);
	font-size: 3rem;
	color: var(--fa-accent);
	line-height: 0.5;
	display: block;
	margin-bottom: 0.25rem;
}
.gebbs-fa-testimonial__text { font-family: var(--font-head); color: var(--gebbs-ink); line-height: 1.7; font-style: italic; margin-bottom: 1.5rem; }
.gebbs-fa-testimonial__author { display: flex; align-items: center; gap: 0.9rem; }
.gebbs-fa-testimonial__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--fa-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 0.85rem;
	flex-shrink: 0;
}
.gebbs-fa-testimonial__author div { display: flex; flex-direction: column; font-size: 0.85rem; }
.gebbs-fa-testimonial__author strong { color: var(--gebbs-ink); font-size: 0.95rem; }
.gebbs-fa-testimonial__author span { color: var(--gebbs-muted); }

/* ---------- CTA band ---------- */
.gebbs-fa-cta {
	padding: 4.5rem 0;
	background: linear-gradient(90deg, var(--gebbs-navy-1), var(--gebbs-navy-2));
}
.gebbs-fa-cta__text {
	max-width: 760px;
	color: rgba(255,255,255,0.88);
	line-height: 1.7;
	margin-top: 1rem;
	font-family: var(--font-ui);
}

/* ---------- Explore other areas ---------- */
.gebbs-fa-explore { padding: 5rem 0 5.5rem; background: var(--gebbs-cream); }
.gebbs-fa-explore-card {
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 30px rgba(40,60,90,0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gebbs-fa-explore-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(40,60,90,0.14); }
.gebbs-fa-explore-card__media { height: 190px; overflow: hidden; }
.gebbs-fa-explore-card__media img { object-fit: cover; }
.gebbs-fa-explore-card__body {
	padding: 1.1rem 1.4rem;
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 1.02rem;
}
.gebbs-fa-explore-card__body p{
	font-family: var(--font-body);
	color: #6B7B8E;
	margin-bottom: 0.5rem;
	font-size: 14px;
	font-weight: 400;

}

/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
	.gebbs-fa-hero { min-height: 380px; }
	.gebbs-fa-program-card { padding: 1.75rem 1.25rem; }
	.gebbs-fa-stat-card h3 { font-size: 1.5rem; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.gebbs-contact-hero {
	position: relative;
	min-height: 320px;
	display: flex;
	align-items: center;
	color: #fff;
	background-size: cover;
	background-position: center;
}
.gebbs-contact-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(15,25,50,0.82) 0%, rgba(15,25,50,0.55) 55%, rgba(15,25,50,0.25) 100%);
}
.gebbs-contact-hero__inner { position: relative; z-index: 2; padding: 3rem 0; }
.gebbs-contact-hero__title {
	font-family: var(--font-head);
	color: #fff;
	font-weight: 700;
	font-size: clamp(2.2rem, 4.5vw, 3rem);
	margin: 0;
}

/* Info pills */
.gebbs-contact-info { padding: 3rem 0 1rem; }
.gebbs-contact-pill {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--gebbs-cream);
	border-left: 4px solid var(--gebbs-orange);
	border-radius: 12px;
	padding: 1.25rem 1.4rem;
	height: 100%;
}
.gebbs-contact-pill__icon {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	color: var(--gebbs-orange);
}
.gebbs-contact-pill p { margin: 0; color: var(--gebbs-p); font-size: 0.95rem; line-height: 1.6; }
.gebbs-contact-pill a { color: var(--gebbs-navy-1); word-break: break-word; }

/* Form section */
.gebbs-contact-form-section { padding: 4.5rem 0; background: var(--gebbs-cream); }
.gebbs-contact-form-section h2 { text-align: center; color: var(--gebbs-navy-1); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 2.5rem; }
.gebbs-contact-form label {
	display: block;
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--gebbs-ink);
	margin-bottom: 0.5rem;
}
.gebbs-contact-form .form-control,
.gebbs-contact-form .form-select {
	border: 1px solid var(--gebbs-line);
	border-radius: 10px;
	padding: 0.85rem 1.1rem;
	font-size: 0.95rem;
	background: #fff;
	width: 100%;
}
.gebbs-contact-form .form-control:focus,
.gebbs-contact-form .form-select:focus {
	border-color: var(--gebbs-navy-1);
	box-shadow: 0 0 0 3px rgba(43,70,135,0.12);
	outline: none;
}
.gebbs-contact-form textarea.form-control { min-height: 140px; resize: vertical; }
.gebbs-contact-form .gebbs-btn-submit {
	background: var(--gebbs-navy-1);
	color: #fff;
	font-family: var(--font-ui);
	font-weight: 600;
	font-size: 0.95rem;
	border: 0;
	border-radius: 10px;
	padding: 1rem 1.75rem;
	transition: background 0.2s ease;
}
.gebbs-contact-form .gebbs-btn-submit:hover { background: var(--gebbs-navy-2); }
.gebbs-contact-form__notice {
	border-radius: 10px;
	padding: 1rem 1.25rem;
	margin-bottom: 1.5rem;
	font-family: var(--font-ui);
	font-size: 0.95rem;
}
.gebbs-contact-form__notice--success { background: #e6f6ec; color: #1f7a43; border: 1px solid #b7e6c7; }
.gebbs-contact-form__notice--error { background: #fdeaea; color: #b32424; border: 1px solid #f3bcbc; }

/* Newsletter / join community */
.gebbs-contact-join { padding: 4rem 0; background: #fff; }
.gebbs-contact-join h3 { font-family: var(--font-head); font-size: 1.8rem; color: var(--gebbs-ink); margin-bottom: 0.4rem; }
.gebbs-contact-join p { color: var(--gebbs-p); margin: 0; }
.gebbs-contact-join .form-control {
	border: 1px solid var(--gebbs-line);
	border-radius: 10px 0 0 10px;
	padding: 0.9rem 1.2rem;
}
.gebbs-contact-join .gebbs-btn-join {
	background: var(--gebbs-navy-1);
	color: #fff;
	font-family: var(--font-ui);
	font-weight: 700;
	border: 0;
	border-radius: 0 10px 10px 0;
	padding: 0.9rem 1.75rem;
	white-space: nowrap;
}
.gebbs-contact-join .gebbs-btn-join:hover { background: var(--gebbs-navy-2); }

@media (max-width: 767.98px) {
	.gebbs-contact-hero { min-height: 260px; }
	.gebbs-contact-pill { padding: 1rem 1.1rem; }
	.gebbs-contact-join .input-group { flex-wrap: nowrap; }
}


/* ==========================================================================
   About Us page (template-about-us.php)
   ========================================================================== */
 
.gebbs-about-hero__text {
	max-width: 560px;
	color: rgba(255,255,255,0.92);
	font-size: 1.1rem;
	line-height: 1.65;
	margin-top: 1.25rem;
}
 
/* ---------- Our Beginning ---------- */
.gebbs-about-story {padding: 5rem 0 1rem; background: url("../images/similar/Our Work bg.png") center/cover no-repeat; text-align: center;}
.gebbs-about-story__title {
	display: inline-block;
	margin-bottom: 1.1rem;
	padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--gebbs-orange);
}
.gebbs-about-story__subtitle {
	font-family: var(--font-ui);
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--gebbs-ink);
	margin-top: 0.5rem;
}
.gebbs-about-story__body {
	margin: 2rem auto 0;
}
.gebbs-about-story__body p {
	color: var(--gebbs-p);
	font-size: 15.7px;
	line-height: 1.8;
	margin-bottom: 0.5rem;
	font-family: var(--font-ui);
}
 
/* ---------- Feature rows (Education / Women's Health) ---------- */
.gebbs-about-feature { padding: 4rem 0; }
.gebbs-about-feature__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(1.7rem, 2.6vw, 2.2rem);
	color: var(--gebbs-ink);
	margin-bottom: 0.5rem;
}
.gebbs-about-feature__eyebrow {
	display: inline-block;
	font-family: var(--font-ui);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 700;
	font-size: 0.8rem;
	color: #004DA5;
	padding-bottom: 0.6rem;
	margin-bottom: 1.1rem;
	border-bottom: 2px solid var(--gebbs-orange);
}
.gebbs-about-feature__text { color: var(--gebbs-p); margin-bottom: 0.8rem; }
 
/* ---------- Mission & Vision (navy band, reuses .gebbs-mv-card) ---------- */
.gebbs-about-mv {
	background: linear-gradient(135deg, var(--gebbs-navy-1) 0%, var(--gebbs-navy-2) 100%);
	padding: 4.5rem 0;
}
.gebbs-about-mv .gebbs-mv-card { border: 0; height: 100%; }
 
/* ---------- What We Do ---------- */
.gebbs-about-what { padding: 4rem 0; background: #F7F5F0; }
.gebbs-about-what-card {
	background: #fff;
	border: 1px solid var(--gebbs-line);
	border-radius: 18px;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 12px 30px rgba(40,60,90,0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gebbs-about-what-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(40,60,90,0.12); }
.gebbs-about-what-card__media { height: 220px; overflow: hidden; }
.gebbs-about-what-card__media img { width: 100%; height: 100%; object-fit: cover; }
.gebbs-about-what-card__body { padding: 1.6rem 1.75rem 1.85rem; }
.gebbs-about-what-card__body h3 {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 36px;
	color: #004DA5;
	margin-bottom: 0.85rem;
}
.gebbs-about-what-card__body ul { margin: 0; padding: 0; }
.gebbs-about-what-card__body ul li {
	position: relative;
	padding-left: 1.15rem;
	color: var(--gebbs-p);
	font-size: 14px;
	margin-bottom: 0.35rem;
}
.gebbs-about-what-card__body ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--gebbs-orange);
}
 
/* ---------- How We Work ---------- */
.gebbs-about-how { padding: 4.5rem 0; background: #F2F4F8; }
.gebbs-about-how-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 25%;
	background: #fff;
	color: var(--gebbs-orange);
	box-shadow: 0 10px 26px rgba(40,60,90,0.1);
	margin-bottom: 1.1rem;
}
.gebbs-about-how-card__icon svg { width: 30px; height: 30px; }
.gebbs-about-how-card h4 {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 18px;
	color: #004DA5;
	margin-bottom: 0.5rem;
}
.gebbs-about-how-card p { color: var(--gebbs-p); font-size: 0.92rem; line-height: 1.6; margin: 0; }
 
/* ---------- Where We Work ---------- */
.gebbs-about-where { padding: 5rem 0; }
.gebbs-about-where__header{
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}
.gebbs-about-where__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.gebbs-about-where__icon svg { width: 26px; height: 26px; }
.gebbs-about-where__title {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: clamp(1.8rem, 2.6vw, 2.3rem);
	color: var(--gebbs-ink);
}
.gebbs-about-where__text { color: var(--gebbs-navy-2); font-weight: 600; font-size: 1.1rem; margin: 0; }
.gebbs-about-where__map { border-radius: 20px; overflow: hidden; }
 
 
@media (max-width: 768px) {
	.gebbs-about-hero__text { font-size: 1rem; line-height: normal; }

	.gebbs-about-story { padding: 3.5rem 0; }
	.gebbs-about-feature { padding: 2.75rem 0; }
	.gebbs-about-mv { padding: 3rem 0; }
	.gebbs-mv-card{
		flex-direction: column;
		text-align: center;
    	align-items: center;
	}
	.gebbs-about-what-card__body { padding: 0.9rem; }
	.gebbs-about-what-card__body h3 { font-size: 1.5rem; }
	.gebbs-about-what { padding: 3rem 0; }
	.gebbs-about-how { padding: 3rem 0; }
	.gebbs-about-where { padding: 3rem 0; }
	.gebbs-about-what-card__media { height: 180px; }
}