    /* Hero Section */
    .hero {
      position: relative;
      background: linear-gradient(rgba(28, 31, 66, 0.75), rgba(28, 31, 66, 0.5)), url('https://images.unsplash.com/photo-1542601906990-b4d3fb778b09?auto=format&fit=crop&q=80&w=1600') no-repeat center center/cover;
      padding: 140px 0;
      color: white;
    }

    .hero-content {
      max-width: 650px;
    }

    .hero-subtitle {
      font-size: 2.5rem;
      color: white;
      margin-bottom: 10px;
      line-height: 1.2;
    }

    .hero-subtitle span {
      color: var(--warm-sand);
    }

    .hero-description {
      font-size: 1.1rem;
      margin-bottom: 30px;
      color: var(--clean-white);
      opacity: 0.9;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
    }

   /* ==========================================
   BAGONG "WHO WE ARE" SPLIT LAYOUT (Base sa image_092760.jpg)
   ========================================== */
.who-we-are-section {
  padding: 80px 0;
  background-color: #fcf8f2; /* Warm cream background */
}

.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 50px;
  align-items: stretch;
}

/* KALIWANG BAHAGI - IMAGE COMPONENT */
.who-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 550px;
}

/* "Since 1965" Top Left Badge */
.badge-since {
  position: absolute;
  top: 0;
  left: 25px;
  background-color: #111e38; /* Deep Navy */
  color: white;
  padding: 25px 15px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  text-align: center;
  width: 90px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.badge-since i {
  font-size: 1.4rem;
  color: #c5a880; /* Gold/Bronze accent */
  margin-bottom: 8px;
  display: block;
}

.badge-since .year {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}

.badge-since .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  margin-top: 5px;
  display: block;
}

/* Quote Box sa Ibaba ng Image */
.who-quote-box {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  background-color: rgba(17, 30, 56, 0.9); /* Semi-transparent Navy */
  color: white;
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.who-quote-box i {
  color: #c5a880;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 5px;
}

.who-quote-box p {
  font-family: 'Bitter', serif;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 500;
}

/* KANANG BAHAGI - TEXT & CARDS CONTENT */
.who-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.who-text-content .section-tag {
  color: #3b66c4;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.who-text-content h2 {
  font-family: 'Bitter', serif;
  font-size: 2.3rem;
  color: #111e38;
  line-height: 1.3;
  margin-bottom: 20px;
}

.who-text-content .main-desc {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 35px;
  text-align: justify;
}

/* Three Core Feature Cards Layout */
.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.feature-card {
  background: white;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.feature-card .icon-wrap {
  width: 50px;
  height: 50px;
  background-color: #f0f4fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-card .icon-wrap i {
  color: #3b66c4;
  font-size: 1.3rem;
}

.feature-card h4 {
  font-family: 'Bitter', serif;
  font-size: 1rem;
  color: #111e38;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.5;
}

/* Global Action Button Style */
.btn-blue-action {
  background-color: #1c1f42;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  
  /* PALITAN ITONG BAHAGING ITO: */
  margin: 20px auto 0 auto; /* Ginawang auto ang kaliwa't kanan para pumagitna */
  display: flex;            /* Mas swak sa margin auto */
  width: max-content;       /* Para hindi niya sakupin ang buong lapad ng screen */
  
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-blue-action:hover {
  background-color: #33326f;
}

/* RESPONSIVE LAYOUT FOR TABLETS & MOBILE */
@media (max-width: 992px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .who-image-wrapper {
    min-height: 450px;
  }
  .feature-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

    /* Our Impact */
    .impact {
      background-color: var(--core-navy);
      padding: 60px 0;
      text-align: center;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin-top: 20px;
    }

    .impact-item h3 {
      font-size: 2.5rem;
      color: var(--clean-white);
      margin-bottom: 5px;
    }

    .impact-item p {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--soft-light);
    }

   /* ==========================================
   CONFERENCE CENTERS FEATURED SPLIT LAYOUT
   ========================================== */
.conference-section {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

/* Pinalaking section titles */
.conference-section .section-tag {
  color: #3b66c4;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.1rem; /* Pinalaki mula sa dating maliit na font */
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.conference-section h2 {
  font-family: 'Bitter', serif;
  font-size: 2.8rem; /* Mas prominente at malaking heading */
  color: #111e38;
  margin-bottom: 45px;
}

/* Asymmetric Grid Layout */
.cc-grid-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* Mas malapad ang kaliwa para sa Makiling */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  text-align: left;
}

/* Base Card Style */
.cc-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  border: 1px solid #eaeaea;
  position: relative;
}

/* Badge (Featured, Men, Women) */
.cc-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #111e38;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.cc-badge.featured { background-color: #e2ecf5; color: #2b54af; }
.cc-badge i { font-size: 0.85rem; }

/* KALIWANG CARD: Makiling (Big Featured Box) */
.cc-card-featured {
  height: 100%; /* Kakainin ang buong taas ng grid row */
}

.cc-card-featured .cc-img-wrap {
  height: 340px;
  position: relative;
}

/* KANANG SIDE: Stacked Layout (Men & Women) */
.cc-side-stack {
  display: flex;
  flex-direction: column;
  gap: 25px; /* Space sa pagitan ng Men at Women boxes */
}

/* Men & Women Card Optimization (Horizontal Row View) */
.cc-card-small {
  display: flex;
  flex-direction: row; /* Pinahiga para magkasya silang dalawa nang magkapatong */
  height: calc(50% - 12.5px); /* Swak sa kabuuang taas ng kaliwang box */
  min-height: 195px;
}

.cc-card-small .cc-img-wrap {
  width: 40%;
  flex-shrink: 0;
  position: relative;
}

/* Shareable Image Setting */
.cc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Body Design */
.cc-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.cc-details h3 {
  font-family: 'Bitter', serif;
  font-size: 1.5rem;
  color: #111e38;
  margin-bottom: 10px;
}

.cc-details p {
  font-size: 0.88rem;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* Minimalist Card Button */
.cc-btn-link {
  color: #2b54af;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  border: 1px solid #2b54af;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.cc-btn-link:hover {
  background-color: #2b54af;
  color: white;
}

/* RESPONSIVE DESIGN FOR MOBILE TABLETS */
@media (max-width: 992px) {
  .cc-grid-layout {
    grid-template-columns: 1fr;
  }
  .cc-card-small {
    flex-direction: column;
    height: auto;
  }
  .cc-card-small .cc-img-wrap {
    width: 100%;
    height: 200px;
  }
}

    /* What We Do / Core Pillars Section */
.activities {
  background: var(--core-navy);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--warm-sand);
}

.activities h2 {
  color: var(--clean-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* NAGDAGDAG NG TRANSITION AT POINTER PARA SA SMOOTH ANIMATION */
.activity-item {
  background: white;
  padding: 25px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease; /* Kontrol sa bilis ng hover */
}

.activity-item i {
  font-size: 1.8rem;
  color: var(--bright-blue);
  margin-bottom: 15px;
  transition: color 0.3s ease, transform 0.3s ease; /* Para sa swabeng icon transition */
}

.activity-item h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.activity-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

/* ==========================================
   ANG HOVER EFFECTS (Bagong Dagdag)
   ========================================== */
.activity-item:hover {
  transform: translateY(-8px); /* Bahagyang aangat ang card */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); /* Lalalim ang shadow para magka-3D effect */
  background-color: var(--gentle-sky); /* Magpapalit ng background color (Optional: Pwedeng alisin kung gusto mong manatiling white ang card) */
}

/* Babaguhin ang kulay ng mga text at icon sa loob kapag naka-hover para readable pa rin */
.activity-item:hover i {
  color: var(--clean-white);
  transform: scale(1.1); /* Bahagyang lalaki ang icon */
}

.activity-item:hover h4 {
  color: var(--clean-white);
}

.activity-item:hover p {
  color: rgba(255, 255, 255, 0.85); /* Mapusyaw na puti para sa maliliit na detalye */
}

/* ==========================================================================
   ANG BUTTON AT ACTION WRAPPER SECTIONS (Bagong Dagdag)
   ========================================================================== */
.activities-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px; /* Nilalayo nito ang button pababa mula sa mga card grids */
  width: 100%;
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  background-color: transparent;
  color: var(--clean-white);
  border: 2px solid var(--clean-white);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Swabeng pag-angat at kulay kapag itinuro ng mouse pointer */
.btn-see-all:hover {
  background-color: var(--gentle-sky);
  color: var(--clean-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(217, 200, 175, 0.2);
}

.btn-see-all i {
  transition: transform 0.3s ease;
}

.btn-see-all:hover i {
  transform: translateX(5px); /* Bahagyang aabante ang arrow icon pakanan */
}

/* Balik sa manual styles pero optimized para sa links */
.testimonials-section {
  background-color: #fbfaf7;
  padding: 50px 0;
  text-align: center;
}

.testimonials-section .section-tag {
  color: #3b66c4;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  display: block;
}

.testimonials-section h2 {
  font-family: 'Bitter', serif;
  font-size: 2.5rem;
  color: #111e38;
  margin-bottom: 40px;
}

.testimonial-slider-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.testimonial-wrapper {
  display: flex;
  gap: 25px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 10px 5px;
}

/* Binagong Card Style para sa Clickable Links */
.testimonial-card-item {
  background: white;
  padding: 35px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: relative;
  flex: 0 0 calc(33.333% - 17px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none; /* Tinanggal ang salungguhit */
  color: inherit;       /* Sinunod ang kulay ng text sa font color ng page */
  transition: all 0.3s ease;
  cursor: pointer;
}

.testimonial-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.quote-icon-wrap {
  font-size: 2rem;
  color: #c5a880;
  margin-bottom: 15px;
  line-height: 1;
}

.testimonial-card-item p {
  font-style: italic;
  color: #444444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviewer-info-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-info-block img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-details h5 {
  font-size: 0.9rem;
  color: #111e38;
  font-weight: 700;
  margin: 0;
}

.reviewer-details span {
  font-size: 0.78rem;
  color: #777777;
}

.platform-badge.fb i { 
  color: #1877f2; 
  font-size: 1.3rem;
}

/* NAVIGATION ARROWS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: white;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  color: #111e38;
  z-index: 5;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background-color: #111e38;
  color: white;
}

.slider-arrow.prev-btn { left: 5px; }
.slider-arrow.next-btn { right: 5px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  border-radius: 50%;
}

.dot.active {
  background-color: #111e38;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 992px) {
  .testimonial-card-item { flex: 0 0 calc(50% - 13px); }
}
@media (max-width: 650px) {
  .testimonial-card-item { flex: 0 0 100%; }
  .testimonial-slider-container { padding: 0 45px; }
}

/* ==========================================
   GET INVOLVED GRID LAYOUT (4-COLUMNS)
   ========================================== */
.get-involved-section {
  background-color: #f9f2e9; /* Ang eksaktong light-cream background mo */
  padding: 50px 0;
  text-align: center;
}

.get-involved-section h2 {
  font-family: 'Bitter', serif;
  font-size: 2.4rem;
  color: #111e38;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* 4-Column Grid System */
.get-involved-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left; /* Naka-align sa kaliwa ang text gaya ng nasa photo */
}

/* Row Layout para magkatabi ang Icon at Text Block */
.involved-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

/* Icon Design Frame */
.involved-icon {
  font-size: 1.5rem;
  color: #2b54af; /* Blue accent color para sa icons niyo */
  margin-top: 3px; /* Pantay sa unang linya ng header text */
  flex-shrink: 0;
}

/* Typography para sa Contents */
.involved-text h4 {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: #111e38;
  margin-bottom: 8px;
  line-height: 1.4;
}

.involved-text p {
  font-size: 0.85rem;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .get-involved-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns kapag tablet */
    gap: 35px 25px;
  }
}

@media (max-width: 600px) {
  .get-involved-grid {
    grid-template-columns: 1fr; /* 1 column na lang kapag phone screen */
    gap: 30px;
  }
}
