@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Regular.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Light.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-SemiBold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/Metropolis/Metropolis-Bold.woff2') format('woff2'),
        url('../fonts/Metropolis/Metropolis-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family); 
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color:                  #ffffff;
    --primary-color:                #5bc1ac;
    --secondary-color:              #5a6f80;
    --tertiary-color:               #39796c;
    --forth-color:                  #5f968be4;
    --label-color:                  #e15b08;
    --section-bg-color:             #f0f8ff;
    --site-footer-bg-color:         #44525d;
    --custom-btn-bg-color:          #597081;
    --custom-btn-bg-hover-color:    #5bc1ac;
    --dark-color:                   #000000;
    --p-color:                      #717275;
    --border-color:                 #e9eaeb;
    --bs-light:                     #f8f9fa;

    --body-font-family:             'Metropolis', sans-serif;

    --h1-font-size:                 50px;
    --h2-font-size:                 46px;
    --h3-font-size:                 32px;
    --h4-font-size:                 28px;
    --h5-font-size:                 24px;
    --h6-font-size:                 21px;
    --p-font-size:                  14px;
    --btn-font-size:                18px;
    --copyright-font-size:          13px;

    --border-radius-large:          100px;
    --border-radius-medium:         20px;
    --border-radius-small:          10px;

    --font-weight-light:            300;
    --font-weight-normal:           400;
    --font-weight-semibold:         600;
    --font-weight-bold:             700;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--font-weight-semibold);
    letter-spacing: -1px;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    letter-spacing: -2px;
}

h2 {
    color: var(--secondary-color);
    font-size: var(--h2-font-size);
    letter-spacing: -2px;
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    color: var(--primary-color);
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-light);
}

ul li {
    color: var(--p-color);
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

a, 
button {
    touch-action: manipulation;
    transition: all 0.3s;
}

a {
    color: var(--p-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

small {
    display: block;
    margin-top: 10px;
    color: var(--p-color);
    font-size: 13px;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.8px;
    opacity: 0.75;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
    padding: 70px 100px;
}

.section-bg {
    background-color: var(--tertiary-color);
}

.section-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--label-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    letter-spacing: 1px;
    font-weight: var(--font-weight-bold);
}

.section-subtitle {
    font-size: 15px;
    opacity: 0.85;
    width: 600px;
    margin: 0 auto;
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
    background-color: var(--dark-color) ;
    color: var(--white-color);
    font-size: 13px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.site-header i {
    margin-right: 6px;
}

.site-header a,
.site-header .social-icon-link {
    color: var(--white-color);
    font-size: 13px;
}

.site-header a {
    text-decoration: none;
    transition: 0.3s;
}

.site-header a:hover {
  color: var(--secondary-color);
}

.site-header .social-icon {
    text-align: right;
}

.site-header .social-icon-link {
    background: transparent;
    width: inherit;
    height: inherit;
    line-height: inherit;
    margin-right: 15px;
}

/*---------------------------------------
  HERO & HERO SLIDE         
-----------------------------------------*/
.hero-section {
    position: relative;
    height: 80vh;
    overflow: visible;
}

.hero-section-full-height {
    height: 70vh;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
    overflow: hidden;
}

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

.hero-strip {
    width: 100%;
}


.hero-strip .row {
    margin: 0;
}

.hero-strip .col-lg-4 {
    padding: 0;
}

.hero-col {
    min-height: 250px;
    display: flex;
    align-items: center;
}

.hero-col .content {
    padding: 40px 60px;
}

.hero-col h5 {
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.hero-col a {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}

.hero-col a:hover {
    transform: translateX(5px);
    opacity: 0.85;
}

.hero-col.green {
    background: #39796c;
    color: #fff;
}

.hero-col.black {
    background: #000;
    color: #fff;
}

.hero-col:hover {
    filter: brightness(1.05);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.btn-donate {
    background: var(--label-color);
    color: white;
    padding: 8px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.btn-donate:hover {
    background: #f39447;
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-explore {
    background: var(--tertiary-color);
    color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block; 
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    color: var(--white-color);
    transform: translateY(3px);
}

.btn-seemore {
    background: var(--label-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block; 
    transition: transform 0.3s ease;
}

.btn-seemore:hover {
    background: #e65c00;
    color: #fff;
    transform: translateY(-2px);
}

.btn-readmore {
    background: var(--dark-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block; 
    transition: transform 0.3s ease;
}

.btn-readmore:hover {
    background: var(--site-footer-bg-color);
    color: #fff;
    transform: translateY(-2px);
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.custom-navbar {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 70%;
    display: flex;
    justify-content: center;
}

.custom-navbar .nav-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.navbar-brand {
    color: var(--tertiary-color);
    justify-content: center;
    font-size: 22px;
    font-weight: var(--font-weight-bold);
    max-width: 400px;
    padding: 0px;
    letter-spacing: 1px;
    /* padding: 10px 0 10px; */
}

.navbar-brand .logo {
    width: 40px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
}

.navbar-brand span {
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
}

.navbar-brand small {
    color: var(--secondary-color);
    display: block;
    font-size: 11px;
    line-height: 1.2;
    margin-top: 0;
    text-transform: uppercase;
    white-space: normal;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--tertiary-color);
    font-size: 14px;
    font-weight: 600;
    position: relative;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--tertiary-color);
    transition: 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/*---------------------------------------
  ABOUT
-----------------------------------------*/
.about-image {
    /* height: 100%; */
    display: flex;
    justify-content: flex-end;
}

.about-image img {
    width: 90%;
    /* height: 100%; */
    object-fit: cover;
    object-position: right center;
}

.about-content {
    padding: 20px 10px;
}

.about-title {
    font-size: 32px;
    line-height: 1.3;
    margin: 15px 0;
}

.about-text {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

.about-stats {
    background: linear-gradient(90deg, #1f5c3a, #1b6b50);
    padding: 20px;
    border-radius: 12px;
    color: white;
    margin-top: 20px;
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* 🔥 TABLET */
@media (min-width: 768px) {
    .about-content {
        padding-left: 20px;
    }

    .about-title {
        font-size: 34px;
    }
}

/* 🚀 DESKTOP */
@media (min-width: 992px) {
    .about-content {
        padding-left: 20px;
    }

    .about-title {
        font-size: 32px;
    }
}

/*---------------------------------------
  GET INVOLVED SECTION
-----------------------------------------*/
.involve-section {
    background: linear-gradient(135deg, #1f5c3a, #174d31);
    color: #fff;
    padding: 70px 0;
}

.involve-item {
    background: var(--section-bg-color);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 18px;
    padding: 20px 20px 15px;
    text-align: left;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all .35s ease;
}

.involve-item.show {
    opacity: 1;
    transform: translateY(0);
}

.involve-item:hover {
    transform: translateY(-8px);
    background: var(--section-bg-color);
    border-color: #9ce0b3;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.involve-icon {
    width: 65px;
    height: 65px;
    background: #dfefe4;
    border-radius: 50px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.involve-item:hover .involve-icon {
    transform: scale(1.08);
    background: #7fd39d;
}

.involve-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.involve-item h5 {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.involve-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
    margin-bottom: 0;
    max-width: 100%;
}

/*---------------------------------------
  CAUSES SECTION
-----------------------------------------*/
.causes-section {
    padding: 70px 0;
    background: #f8fafc;
}

.causes-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.15;
    max-width: 600px;
    margin-bottom: 0;
}

/* Navigation */
.cause-navigation {
    flex-shrink: 0;
}

.cause-navigation button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #1f2937;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.cause-navigation button:hover {
    background: #1f5c3a;
    color: #fff;
    transform: translateY(-2px);
}

.cause-navigation button i {
    font-size: 18px;
}

/* Swiper */
.causesSwiper {
    overflow: hidden;
    padding-bottom: 10px;
}

.causesSwiper .swiper-slide {
    height: auto;
}

.cause-card {
    background: #fff;
    height: 100%;
    overflow: hidden;
    border: 1px solid #eef2f7;
    transition: all .35s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.cause-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.10);
}

/* Image */
.cause-image {
    height: 220px;
    overflow: hidden;
}

.cause-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.cause-card:hover .cause-image img {
    transform: scale(1.05);
}

/* Content */
.cause-content {
    padding: 22px;
}

.cause-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.cause-text {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Progress Box */
.cause-progress-box {
    background: linear-gradient(135deg, #1f5c3a, #174d31);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.progress-top {
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.cause-progress {
    height: 8px;
    background: rgba(255,255,255,.2);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
}

.cause-progress .progress-bar {
    background: #fff;
    border-radius: 50px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

/* Buttons */
.cause-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .causes-title {
        font-size: 28px;
    }

    .cause-navigation button {
        width: 42px;
        height: 42px;
    }

    .cause-image {
        height: 200px;
    }

    .cause-buttons {
        flex-direction: column;
    }
}

/*---------------------------------------
  CORE SECTION
-----------------------------------------*/
.core-values-section {
    overflow: hidden;
}

.core-content {
    background: #14532d;
    color: #fff;
    min-height: 100%;
    height: 100%;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.row.g-0 {
    align-items: stretch;
}

.core-content::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url('/site/images/core-pattern.png');

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.core-content > * {
    position: relative;
    z-index: 2;
}

.core-content h4 {
    font-size: 41px;
    color: var(--white-color);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 35px;
}

.core-content p {
    font-size: 19px;
    color: var(--white-color);
    line-height: 1.4;
    max-width: 650px;
    margin-bottom: 30px;
    text-align: justify;
}

.btn-core {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: #fff;
    color: #111;
    text-decoration: none;
    padding: 12px 26px;
    font-weight: 600;
    transition: .3s;
    border-radius: 6px;
}

.btn-core:hover {
    transform: translateY(-2px);
    background: #f2f2f2;
}

.core-image-wrapper {
    min-height: 100%;
    display: flex;
}

.core-img {
    flex: 1;
    overflow: hidden;
    min-height: 400px;
}

.core-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

/* .core-img + .core-img {
    border-left: 5px solid #fff;
} */

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

@media (max-width: 991px) {

    .core-content {
        padding: 50px;
        min-height: auto;
    }

    .core-content h2 {
        font-size: 36px;
    }

    .core-image-wrapper {
        flex-direction: column;
    }

    .core-img {
        min-height: 300px;
    }

    /* .core-img + .core-img {
        border-left: none;
        border-top: 5px solid #fff;
    } */
}

/*---------------------------------------
  ADMISSION SECTION
-----------------------------------------*/

.admission-section {
    padding: 100px 100px 50px 100px;
    background: #f7f7f7;
}

.admission-images {
    position: relative;
    height: 560px;
}

.admission-images::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 80%;
    background: url('/site/images/dot-pattern-1.png') no-repeat center;
    background-size: contain;

    top: 0;
    left: 0;
    transform: translate(-42%, -35%);
    z-index: 0;
}

.admission-images::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 80%;
    background: url('/site/images/dot-pattern-2.png') no-repeat center;
    background-size: contain;

    top: 50%;
    right: 0;
    transform: translate(363%, -50%);
    z-index: 0;
}

.admission-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-back {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 360px;
}

.img-front {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    height: 380px;
    box-shadow: 0 25px 60px rgba(0,0,0,.15);
}

.admission-content {
    height: 560px;
    padding: 0px 40px;
}

.admission-content h4 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 700;
}

.process-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.process-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #14532d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i {
    font-size: 24px;
}

.process-item h5 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 22px;
}

.process-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/*---------------------------------------
  COUNTER SECTION
-----------------------------------------*/

.counter-section {
    padding: 30px 0 80px;
    background: #f7f7f7;
}

.counter-box {
    position: relative;
    padding: 20px 0;
}

.counter-box::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: #d8e8e0; /* hijau terang lembut */
    border-radius: 50%;
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
    z-index: 0;
}

.counter-box h2 {
    position: relative;
    z-index: 1;
    font-size: 70px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1;
}

.counter-box span {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 600;
    color: #111;
}

/*---------------------------------------
  APPOINTMENT SECTION
-----------------------------------------*/
.appointment-section {
    width: 100%;
}

.appointment-left {
    background: #000;
    display: flex;
}

.appointment-intro {
    color: #fff;
    padding: 60px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.appointment-intro h2 {
    font-size: 38px;
    color: var(--white-color);
    font-weight: (--font-weight-bold);
    margin-bottom: 30px;
    text-align: center;
}

.appointment-icon {
    font-size: 45px;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: center;
}

.appointment-intro p {
    opacity: 0.8;
    line-height: 1.7;
    max-width: 300px;
    margin-bottom: 50px;
    text-align: center;
}

.btn-book {
    display: inline-block;
    padding: 12px 26px;
    background: #fff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
    width: fit-content;
}

.btn-book:hover {
    background: #f2f2f2;
}

.appointment-content {
    height: 100%;
    min-height: 500px;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('/site/images/old-hand.png') no-repeat center;
    background-size: cover;
    color: var(--white-color);
}

.event-left img {
    width: 100%;
    margin-bottom: 20px;
}

.event-left h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--white-color);
}

.event-left p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-donor {
    display: inline-block;
    padding: 12px 26px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    width: fit-content;
}

.btn-donor:hover {
    transform: translateY(-2px);
    background: #f2f2f2;
}

.event-right h4 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #5bc1ac;
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-item {
    display: flex;
    gap: 18px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.event-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-date {
    min-width: 55px;
    text-align: center;
}

.event-date .day {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--white-color);
}

.event-date .month {
    display: block;
    margin-top: 4px;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 700;
    color: #5bc1ac;
}

.event-link h5 {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--white-color);
    transition: 0.3s ease;
    text-transform: uppercase;
}

.event-link:hover h5 {
    color: #2ecc71; /* hijau atau ikut theme kau */
}

.event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.event-time i {
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .appointment-intro {
        padding: 50px 30px;
    }

    .appointment-content {
        min-height: 350px;
    }

    .appointment-intro h2 {
        font-size: 34px;
    }

    .event-right {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {

    .event-item {
        gap: 12px;
    }

    .event-date .day {
        font-size: 24px;
    }

    .appointment-content {
        padding: 30px 20px;
    }
}

/*---------------------------------------
  NEWS SECTION
-----------------------------------------*/
.news-section {
    padding: 70px 100px;
}
.news-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-header h3 {
    font-size: 35px;
    font-weight: 700;
    max-width: 650px;
    margin: 0 auto 15px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;

    transition: 0.3s ease;
}

.view-all:hover {
    gap: 10px;
    color: #000;
    opacity: 0.7;
}

.news-section .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.news-card {
    display: block;
    position: relative;
    overflow: hidden;

    text-decoration: none;
    color: #fff;
}

.news-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

.news-overlay {
    position: absolute;
    inset: 0;

    padding: 30px;

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

    background: rgba(0,0,0,0);

    transition: 0.4s ease;
}

.news-overlay::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0) 60%
    );

    transition: 0.4s ease;
    z-index: 1;
}

.news-overlay > * {
    position: relative;
    z-index: 2;
}

.news-overlay h5 {
    margin: 0;
    font-size: 25px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--white-color);
    transform: translateY(0);
    transition: 0.4s ease;
}

.news-overlay p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.news-overlay p,
.news-meta {
    opacity: 0;
    max-height: 0;
    overflow: hidden;

    transform: translateY(20px);

    transition: all 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-card:hover .news-overlay {
    background: rgba(0,0,0,0.85);
}

.news-card:hover .news-overlay h5 {
    margin-bottom: 15px;
}

.news-card:hover .news-overlay p,
.news-card:hover .news-meta {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
}

.news-meta .date {
    font-weight: 600;
}

.news-meta .category {
    font-weight: 600;
    color: #2ecc71;
}

@media (max-width: 991px) {

    .news-section {
        padding: 60px 40px;
    }

    .news-header h3 {
        font-size: 30px;
    }

    .news-image {
        height: 350px;
    }
}

@media (max-width: 768px) {

    .news-section {
        padding: 50px 20px;
    }

    .news-header h3 {
        font-size: 26px;
    }

    .news-image {
        height: 300px;
    }

    .news-overlay {
        padding: 20px;
    }
}

/*---------------------------------------
  REVIEW SECTION
-----------------------------------------*/
.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-content {
    background: #134c2f;
    color: #fff;
    padding: 70px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.review-content h3 {
    color: var(--white-color);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 5px;
}

.review-content > p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 50px;
}

.review-item {
    position: relative;
    max-width: 500px;
    margin: auto;
}

.quote-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);

    font-size: 120px;
    opacity: 0.1;
    color: #fff;

    z-index: 1;
}

.review-item p {
    position: relative;
    z-index: 2;

    line-height: 2;
    margin-bottom: 40px;
    color: #fff;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    margin-top: 30px;
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;

    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-info h5 {
    margin: 0 0 4px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.author-info span {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.reviewSwiper {
    width: 100%;
    overflow: hidden;
}

.reviewSwiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.reviewSwiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.reviewSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
}

.reviewSwiper .swiper-pagination-bullet-active {
    background: #fff;
}

/*---------------------------------------
  MEMBER SECTION
-----------------------------------------*/
.member-section {
    padding: 70px 100px;
    background: #f5f5f5;
}

.member-title {
    font-weight: 700;
}

.memberSwiper {
    overflow: hidden;
    padding: 20px 10px 60px;
}

.memberSwiper .swiper-slide {
    height: auto;
}

.member-card {
    background: #eef0ef;
    text-align: center;
    padding: 25px 20px 35px;
    height: 100%;
    box-shadow: -12px 12px 20px rgba(0,0,0,.12);
    transition: all .3s ease;
}

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

.member-card img {
    width: 90%;
    height: 205px;
    object-fit: contain;
    margin-bottom: 25px;
}

.member-card h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.member-card span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2ecc71;
}

.memberSwiper .swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.memberSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: #d0d0d0;
}

.memberSwiper .swiper-pagination-bullet-active {
    background: #134c2f;
}

/*---------------------------------------
  CTA SECTION 
-----------------------------------------*/
.cta-section {
    position: relative;
    padding: 70px 100px;
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url('/site/images/volunteer.png');

    background-size: cover;
    background-position: center;
}

.cta-left {
    color: #fff;
    padding-right: 50px;
}

.cta-left h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.cta-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    font-size: 18px;
}

.cta-contact i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.3);
    margin: 35px 0;
}

.cta-address {
    line-height: 2;
    color: rgba(255,255,255,.85);
    margin-bottom: 35px;
}

.cta-address strong {
    color: #fff;
    font-size: 18px;
}

.cta-social {
    display: flex;
    gap: 15px;
}

.cta-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);

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

    color: #fff;
    font-size: 18px;

    transition: .3s;
}

.cta-social a:hover {
    background: #2ecc71;
    border-color: #2ecc71;
    transform: translateY(-4px);
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 18px;

    border: none;
    margin-bottom: 20px;
}

.cta-form textarea {
    height: 180px;
}

.cta-form button {
    background: #2ecc71;
    color: white;
    border: none;
    padding: 15px 50px;
}

.row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* optional: responsive */
@media (max-width: 768px) {
    .row-two {
        grid-template-columns: 1fr;
    }
}

/*---------------------------------------
  FOOTER SECTION 
-----------------------------------------*/
footer {
    background: var(--dark-color);
    color: #e5e7eb;
    padding-top: 70px;
}

footer .footer-brand {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

footer .footer-brand img {
    width: 42px;
    border-radius: 8px;
}

footer .footer-brand h5 {
    margin-bottom: 0;
    line-height: 1;
}

footer p {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(229,231,235,0.65);
}

footer .footer-subscribe .subscribe-box {
    position: relative;
    max-width: 320px;
}

footer .footer-subscribe input {
    width: 100%;
    height: 44px;
    padding: 0 45px 0 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    outline: none;
}

footer .footer-subscribe input::placeholder {
    color: rgba(255,255,255,0.4);
}

footer .footer-subscribe button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    background: #24fb9a;
    color: #0b1220;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

footer .footer-subscribe button:hover {
    background: #24fb9a;
    transform: translateY(-50%) scale(1.05);
}

footer h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #ffffff;
}

footer ul li {
    margin-bottom: 10px;
}

footer a {
    font-size: 14px;
    color: rgba(229,231,235,0.65);
    text-decoration: none;
    transition: 0.2s ease;
    position: relative;
}

footer a:hover {
    color: #ffffff;
}

footer a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #24fb9a;
    transition: 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

footer .social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: rgba(229,231,235,0.8);
    transition: all 0.25s ease;
}

footer .social-links a::after {
    display: none;
}

footer .social-links a:hover {
    background: rgba(36, 251, 154, 0.12); 
    color: #24fb9a !important;
    transform: none; 
}

footer .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(229,231,235,0.65);
}

footer .contact-info i {
    color: #24fb9a;
}

/* BOTTOM BAR */
footer .footer-bottom {
    border-color: rgba(255,255,255,0.08) !important;
    color: rgba(229,231,235,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    footer .footer-brand {
        justify-content: center;
    }

    footer p {
        margin: 0 auto;
    }

    footer .social-links {
        justify-content: center;
    }

    footer .contact-info li {
        justify-content: center;
    }
}