/*
===========================================
P4T GLOBAL - MASTER STYLESHEET
Planning for Tomorrow Youth Organisation
===========================================
*/

/* ============================================
   BROWSER COMPATIBILITY
   ============================================ */
/* Force consistent box-sizing across all browsers */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* ============================================
   CSS VARIABLES - BRAND COLORS
   ============================================ */
   :root {
    /* Primary Colors */
    --p4t-primary-orange: #F37021;
    --p4t-primary-black: #000000;
    
    /* Secondary Colors */
    --p4t-coral: #FF8C5A;
    --p4t-sunset: #E85D04;
    
    /* Supporting Colors */
    --p4t-sky-blue: #87CEEB;
    --p4t-green: #6BA368;
    --p4t-yellow: #FDB833;
    --p4t-teal: #1A5F7A;
    --p4t-berry: #B83B5E;
    
    /* Neutral Colors */
    --p4t-white: #FFFFFF;
    --p4t-off-white: #FAF9F6;
    --p4t-light-gray: #E8E8E8;
    --p4t-very-light-gray: #F8F8F8;
    --p4t-black: #000000;
    
    /* Typography */
    --p4t-body-font: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --p4t-heading-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --p4t-section-padding: 80px 0;
    --p4t-content-padding: 0 50px;
    --p4t-mobile-padding: 0 20px;
  }
  
  /* ============================================
     GLOBAL STYLES & RESET
     ============================================ */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  body {
    font-family: var(--p4t-body-font);
    color: var(--p4t-primary-black);
    background-color: var(--p4t-white);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
    /* Font smoothing for all browsers */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  /* ============================================
     TYPOGRAPHY
     ============================================ */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--p4t-heading-font);
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
    color: var(--p4t-primary-black);
  }
  
  h1 {
    font-size: 4.5rem; /* 72px */
  }
  
  h2 {
    font-size: 2.75rem; /* 44px */
  }
  
  h3 {
    font-size: 2.25rem; /* 36px */
  }
  
  h4 {
    font-size: 1.875rem; /* 30px */
  }
  
  h5 {
    font-size: 1.5rem; /* 24px */
  }
  
  h6 {
    font-size: 1.25rem; /* 20px */
  }
  
  p {
    font-size: 1.125rem; /* 18px */
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--p4t-primary-black);
  }
  
  a {
    color: var(--p4t-primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--p4t-sunset);
  }
  
  a:visited {
    color: var(--p4t-primary-black);
  }
  
  /* ============================================
     TOP UTILITY BAR
     ============================================ */
  .p4t-top-bar {
    background-color: var(--p4t-primary-orange);
    padding: 5px 0;
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
  }
  
  .p4t-top-bar.p4t-hide {
    transform: translateY(-100%);
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
  }
  
  .p4t-top-bar-content {
    max-width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .p4t-top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
  }
  
  .p4t-top-bar-left a {
    color: var(--p4t-white);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .p4t-top-bar-left a:hover {
    color: var(--p4t-off-white);
    opacity: 0.9;
  }
  
  .p4t-top-bar-left i {
    font-size: 0.95rem;
  }
  
  .p4t-top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .p4t-utility-links {
    display: flex;
    gap: 0;
    align-items: center;
  }
  
  .p4t-utility-links a {
    color: var(--p4t-white);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .p4t-utility-links a:last-child {
    border-right: none;
    padding-right: 0;
  }
  
  .p4t-utility-links a:first-child {
    padding-left: 0;
  }
  
  .p4t-utility-links a:hover {
    color: var(--p4t-yellow);
    opacity: 0.9;
  }
  
  /* Donate Button in Top Bar */
  .p4t-donate-btn-top {
    background-color: var(--p4t-white);
    color: var(--p4t-primary-orange);
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 2px solid var(--p4t-white);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .p4t-donate-btn-top:hover {
    background-color: var(--p4t-primary-orange);
    border-color: var(--p4t-white);
    color: var(--p4t-white);
    font-weight: bold;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  

 /* ===========================================
   P4T NAVBAR STYLES
   =========================================== */

.p4t-navbar {
  background-color: var(--p4t-white);
  padding: 8px 0;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1000;
  border: none;
}

.p4t-navbar.p4t-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  animation: p4t-slideDown 0.3s ease;
}

/* Spacer that fills the gap left by the fixed navbar when sticky */
.p4t-navbar-spacer {
  display: none;
  height: 66px; /* matches navbar height: logo 50px + padding 8px top + 8px bottom */
}

.p4t-navbar-spacer.p4t-active {
  display: block;
}

@keyframes p4t-slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.p4t-navbar-content {
  max-width: 100%;
  padding: 0 50px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.p4t-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.p4t-logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
}

.p4t-logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--p4t-primary-black);
}

.p4t-logo span {
  color: var(--p4t-primary-orange);
}

/* Navigation Menu */
.p4t-nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  align-items: center;
}

.p4t-nav-item {
  position: relative;
}

.p4t-nav-link {
  color: var(--p4t-primary-black);
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 0;
  display: block;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.p4t-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--p4t-primary-orange);
  transition: width 0.3s ease;
}

.p4t-nav-link:hover::after,
.p4t-nav-link.p4t-active::after {
  width: 100%;
}

.p4t-nav-link:hover,
.p4t-nav-link.p4t-active {
  color: var(--p4t-primary-orange);
}

/* ===========================================
   DROPDOWN STYLES - DESKTOP
   =========================================== */

.p4t-dropdown {
  position: relative;
}

.p4t-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  margin-top: 24.21px; /* Small gap from navbar */
  transform: translateY(0);
  background-color: var(--p4t-white);
  min-width: 550px;
  max-width: 550px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  border: none;
  outline: none;
  display: flex;
  overflow: hidden;
}

/* Flip to left when not enough space on right */
.p4t-dropdown:last-child .p4t-dropdown-menu,
.p4t-dropdown.p4t-dropdown-right .p4t-dropdown-menu {
  left: auto;
  right: 0;
  flex-direction: row-reverse; /* Image on left when flipped */
}

.p4t-dropdown:hover .p4t-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Left column - Menu items */
.p4t-dropdown-menu-items {
  flex: 1;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Right column - Image */
.p4t-dropdown-image {
  width: 260px;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Fallback gradient if no image */
.p4t-dropdown-image:not([style*="background-image"]) {
  background: linear-gradient(135deg, #F37021 0%, #ff8c42 100%);
}

.p4t-dropdown-item {
  padding: 0;
  text-align: left;
  border: none;
  outline: none;
  position: relative;
}

.p4t-dropdown-item:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background-color: rgba(243, 112, 33, 0.3); /* Light orange divider */
}

.p4t-dropdown-item a {
  color: var(--p4t-primary-black);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  padding: 12px 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.p4t-dropdown-item a:hover {
  background-color: #F37021; /* Vibrant orange */
  color: var(--p4t-white);
  padding-left: 30px;
}

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

.p4t-donate-btn-nav {
  background-color: var(--p4t-primary-orange);
  color: var(--p4t-white);
  padding: 8px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid var(--p4t-primary-orange);
  display: none;
  white-space: nowrap;
}

.p4t-donate-btn-nav.p4t-show {
  display: inline-block;
  animation: p4t-fadeIn 0.3s ease;
}

@keyframes p4t-fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.p4t-donate-btn-nav:hover {
  background-color: var(--p4t-sunset);
  border-color: var(--p4t-teal);
  color: var(--p4t-white);
  transform: translateY(-2px);
  
}

/* ===========================================
   ARROW FIXES - RESTORED FROM WORKING VERSION
   =========================================== */

/* STEP 1: Remove ALL existing arrows */
.p4t-dropdown > .p4t-nav-link i {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* STEP 2: Reset ALL pseudo-elements */
.p4t-dropdown > .p4t-nav-link::before,
.p4t-dropdown > .p4t-nav-link::after {
  all: unset !important;
}

/* STEP 3: Base styles for all screen sizes */
.p4t-dropdown > .p4t-nav-link {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* STEP 4: SIMPLE CSS TRIANGLE ARROW (Works everywhere) */
.p4t-dropdown > .p4t-nav-link::after {
  /* Reset */
  content: '' !important;
  display: inline-block !important;
  
  /* Triangle arrow using CSS borders */
  width: 0 !important;
  height: 0 !important;
  border-left: 5px solid transparent !important;
  border-right: 5px solid transparent !important;
  border-top: 6px solid #2c2c2c !important;
  
  /* Positioning */
  margin-left: 8px !important;
  margin-top: 4px !important;
  
  /* Animation */
  transition: all 0.3s ease !important;
  transform-origin: center !important;
  
  /* Ensure it's visible */
  opacity: 1 !important;
  visibility: visible !important;
}

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

.p4t-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--p4t-primary-black);
  cursor: pointer;
  padding: 5px;
}

/* ===========================================
   DESKTOP SPECIFIC STYLES (769px and above)
   =========================================== */

@media (min-width: 769px) {
  /* Hover state for desktop arrow */
  .p4t-dropdown:hover > .p4t-nav-link::after {
    transform: rotate(180deg) !important;
    border-top-color: #F37021 !important;
    margin-top: -2px !important;
  }
  
  /* Active link state */
  .p4t-dropdown > .p4t-nav-link.p4t-active::after {
    border-top-color: #F37021 !important;
  }
  
  /* Desktop dropdown menu */
  .p4t-dropdown-menu {
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
  }
}

/* ===========================================
   TABLET VIEW (769px - 1024px)
   =========================================== */

@media (min-width: 769px) and (max-width: 1024px) {
  .p4t-navbar-content {
    padding: 0 30px;
  }
  
  .p4t-nav-menu {
    gap: 20px;
  }
  
  /* Hide donate button in navbar for tablet */
  .p4t-donate-btn-nav {
    display: none !important;
  }
}

/* ===========================================
   MOBILE VIEW (768px and below) - FIXED FULL HEIGHT
   =========================================== */

@media (max-width: 768px) {
  /* Navbar adjustments */
  .p4t-navbar-content {
    padding: 0 20px;
  }
  
  /* Logo adjustments */
  .p4t-logo img {
    height: 40px;
  }
  
  /* FIXED: Mobile menu takes full height and overlays everything */
  .p4t-nav-menu {
    position: fixed;
    top: 0 !important; /* Start from absolute top */
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important; /* Extend to bottom */
    background-color: var(--p4t-white) !important;
    flex-direction: column;
    gap: 0;
    padding: 80px 20px 30px 20px !important; /* Padding for content */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99999 !important; /* Very high - covers both top bar and navbar */
    margin: 0 !important;
  }
  
  .p4t-nav-menu.p4t-mobile-active {
    max-height: 100vh !important; /* Full viewport height */
    height: 100vh !important; /* Full viewport height */
    opacity: 1 !important;
    visibility: visible !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* Nav items - NO BORDERS */
  .p4t-nav-item {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
  
  /* Nav links */
  .p4t-nav-link {
    padding: 15px 0 !important;
    text-align: left;
    width: 100%;
    font-size: 1.1rem;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    border: none !important;
  }
  
  /* Remove underline animation for mobile */
  .p4t-nav-link::after {
    display: none;
  }
  
  /* Mobile dropdown arrow positioning */
  .p4t-dropdown > .p4t-nav-link {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
  }
  
  .p4t-dropdown > .p4t-nav-link::after {
    margin-left: 0 !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }
  
  /* Active dropdown in mobile */
  .p4t-dropdown.p4t-mobile-dropdown-active > .p4t-nav-link::after {
    transform: rotate(180deg) !important;
    border-top-color: #F37021 !important;
    margin-top: -2px !important;
  }
  
  /* MOBILE DROPDOWN MENU - CLEAN NO BORDERS */
  .p4t-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
    border: none !important;
    margin: 0 !important;
    width: 100% !important;
    display: block !important;
  }
  
  .p4t-dropdown.p4t-mobile-dropdown-active .p4t-dropdown-menu {
    max-height: 500px !important;
    padding: 0 !important;
  }
  
  /* MOBILE DROPDOWN ITEMS - CLEAN NO BORDERS */
  .p4t-dropdown-item {
    border: none !important;
    background: transparent !important;
  }
  
  .p4t-dropdown-item a {
    padding: 12px 15px 12px 25px !important;
    display: block !important;
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    color: var(--p4t-primary-black) !important;
    transition: all 0.2s ease !important;
  }
  
  .p4t-dropdown-item a:hover {
    color: #F37021 !important;
    background-color: rgba(243, 112, 33, 0.05) !important;
    padding-left: 30px !important;
  }
  
  /* MOBILE DONATE BUTTON - CLEAN */
  .p4t-donate-btn-nav {
    background-color: #F37021 !important;
    color: white !important;
    padding: 14px 24px !important;
    border-radius: 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-align: center !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    margin: 15px 0 10px 0 !important; /* Reduced margin */
    border: 2px solid #F37021 !important;
    transition: all 0.3s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .p4t-donate-btn-nav:hover {
    background-color: #e0651d !important;
    border-color: #e0651d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.3) !important;
  }
  
  /* Special treatment for donate button list item */
  .p4t-nav-item:has(.p4t-donate-btn-nav) {
    order: 100;
    padding-top: 10px !important; /* Reduced padding */
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-bottom: none !important;
  }
  
  /* Show mobile toggle button */
  .p4t-mobile-toggle {
    display: block;
    position: relative;
    z-index: 100000; /* Highest - always clickable on top of menu */
  }
  
  /* Body lock when menu is open */
  .p4t-menu-open {
    overflow: hidden !important;
    height: 100vh !important;
  }
  
  /* Remove any residual borders from menu items */
  .p4t-nav-menu > .p4t-nav-item {
    border: none !important;
  }
}

/* ===========================================
   STICKY NAVBAR DONATE BUTTON
   =========================================== */

.p4t-navbar.p4t-sticky .p4t-donate-btn-nav {
  display: inline-block !important;
  animation: p4t-fadeIn 0.3s ease;
}

/* ===========================================
   FINAL CLEANUP
   =========================================== */

/* Ensure the arrow border-top stays visible */
.p4t-dropdown > .p4t-nav-link::after {
  border-top: 6px solid #2c2c2c !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Remove unwanted borders but keep the arrow */
.p4t-dropdown > .p4t-nav-link,
.p4t-nav-link,
.p4t-dropdown-item,
.p4t-dropdown-item a,
.p4t-dropdown-menu {
  border: none !important;
}

/* Ensure no focus outlines */
.p4t-nav-link:focus,
.p4t-dropdown-item a:focus,
.p4t-donate-btn-nav:focus {
  outline: none !important;
  box-shadow: none !important;
}
  
  /* ============================================
     BUTTONS
     ============================================ */
  .p4t-btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
  }
  
  .p4t-btn-primary {
    background-color: var(--p4t-primary-orange);
    color: var(--p4t-white);
    border-color: var(--p4t-primary-orange);
  }
  
  .p4t-btn-primary:hover {
    background-color: var(--p4t-sunset);
    border-color: var(--p4t-sunset);
    color: var(--p4t-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.3);
  }
  
  .p4t-btn-secondary {
    background-color: var(--p4t-white);
    color: var(--p4t-primary-orange);
    border-color: var(--p4t-primary-orange);
  }
  
  .p4t-btn-secondary:hover {
    background-color: #FFF4ED;
    color: var(--p4t-primary-orange);
    transform: translateY(-3px);
  }
  
  .p4t-btn-large {
    padding: 18px 45px;
    font-size: 1.15rem;
  }
  
  /* ============================================
     HERO SECTION
     ============================================ */
  .p4t-hero {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 112, 33, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 100px 50px;
    position: relative;
  }
  
  .p4t-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .p4t-hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
  }
  
  .p4t-hero .p4t-highlight {
    color: var(--p4t-primary-orange);
  }
  
  .p4t-hero p {
    font-size: 1.35rem;
    color: var(--p4t-primary-black);
    max-width: 800px;
    margin: 0 auto 40px;
  }
  
  .p4t-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* ============================================
     HERO SLIDER SECTION (Full HD 1920x1080)
     ============================================ */
  .p4t-hero-slider {
    position: relative;
    width: 100%;
    height: 1080px; /* Full HD height for 1920x1080 images */
    max-height: 90vh; /* Maximum 90% of viewport height */
    overflow: hidden;
  }
  
  /* Individual Slide */
  .p4t-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: visible;
    transition: opacity 1.5s ease-in-out; /* Slow smooth fade */
  }
  
  /* Initial slide - no transition on page load */
  .p4t-slide.p4t-slide-initial {
    opacity: 1;
    transition: none; /* No transition for first slide */
  }
  
  .p4t-slide.p4t-slide-active {
    opacity: 1;
    z-index: 2;
  }
  
  /* Previous slide fades out */
  .p4t-slide.p4t-slide-prev {
    opacity: 0;
    z-index: 1;
  }
  
  /* Slide Background Image - Optimized for 1920x1080 */
  .p4t-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }
  
  /* Dark Overlay for Image Depth */
  .p4t-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* No overlay - clear images */
    z-index: 2;
  }
  
  /* ============================================
     FLOATING STATS CARDS
     ============================================ */
  .p4t-floating-stats {
    position: relative;
    width: 100%;
    margin-top: -100px; /* Overlap the hero section */
    z-index: 100;
    padding: 0 50px;
  }
  
  .p4t-floating-stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .p4t-stat-card {
    background: var(--p4t-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .p4t-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .p4t-stat-card:hover {
    transform: translateY(-8px);
  }
  
  .p4t-stat-card:hover::before {
    transform: scaleX(1);
  }
  
  .p4t-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .p4t-stat-icon i {
    font-size: 2rem;
    transition: all 0.3s ease;
  }
  
  .p4t-stat-card:hover .p4t-stat-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .p4t-stat-number {
    font-family: var(--p4t-heading-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  .p4t-stat-label {
    font-size: 1rem;
    color: var(--p4t-primary-black);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Individual Card Colors */
  .p4t-stat-card:nth-child(1) {
    border-top: 4px solid #FDB833;
  }
  
  .p4t-stat-card:nth-child(1) .p4t-stat-icon {
    background: linear-gradient(135deg, rgba(253, 184, 51, 0.15), rgba(253, 184, 51, 0.05));
  }
  
  .p4t-stat-card:nth-child(1) .p4t-stat-icon i {
    color: #FDB833;
  }
  
  .p4t-stat-card:nth-child(1):hover {
    box-shadow: 0 15px 50px rgba(253, 184, 51, 0.25);
  }
  
  .p4t-stat-card:nth-child(1):hover .p4t-stat-icon {
    background: #FDB833;
  }
  
  .p4t-stat-card:nth-child(1):hover .p4t-stat-icon i {
    color: var(--p4t-white);
  }
  
  .p4t-stat-card:nth-child(1) .p4t-stat-number {
    color: #FDB833;
  }
  
  /* Card 2 - Teal */
  .p4t-stat-card:nth-child(2) {
    border-top: 4px solid #1A5F7A;
  }
  
  .p4t-stat-card:nth-child(2) .p4t-stat-icon {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.15), rgba(26, 95, 122, 0.05));
  }
  
  .p4t-stat-card:nth-child(2) .p4t-stat-icon i {
    color: #1A5F7A;
  }
  
  .p4t-stat-card:nth-child(2):hover {
    box-shadow: 0 15px 50px rgba(26, 95, 122, 0.25);
  }
  
  .p4t-stat-card:nth-child(2):hover .p4t-stat-icon {
    background: #1A5F7A;
  }
  
  .p4t-stat-card:nth-child(2):hover .p4t-stat-icon i {
    color: var(--p4t-white);
  }
  
  .p4t-stat-card:nth-child(2) .p4t-stat-number {
    color: #1A5F7A;
  }
  
  /* Card 3 - Berry */
  .p4t-stat-card:nth-child(3) {
    border-top: 4px solid #B83B5E;
  }
  
  .p4t-stat-card:nth-child(3) .p4t-stat-icon {
    background: linear-gradient(135deg, rgba(184, 59, 94, 0.15), rgba(184, 59, 94, 0.05));
  }
  
  .p4t-stat-card:nth-child(3) .p4t-stat-icon i {
    color: #B83B5E;
  }
  
  .p4t-stat-card:nth-child(3):hover {
    box-shadow: 0 15px 50px rgba(184, 59, 94, 0.25);
  }
  
  .p4t-stat-card:nth-child(3):hover .p4t-stat-icon {
    background: #B83B5E;
  }
  
  .p4t-stat-card:nth-child(3):hover .p4t-stat-icon i {
    color: var(--p4t-white);
  }
  
  .p4t-stat-card:nth-child(3) .p4t-stat-number {
    color: #B83B5E;
  }
  
  /* Card 4 - Sky Blue */
  .p4t-stat-card:nth-child(4) {
    border-top: 4px solid #87CEEB;
  }
  
  .p4t-stat-card:nth-child(4) .p4t-stat-icon {
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.15), rgba(135, 206, 235, 0.05));
  }
  
  .p4t-stat-card:nth-child(4) .p4t-stat-icon i {
    color: #87CEEB;
  }
  
  .p4t-stat-card:nth-child(4):hover {
    box-shadow: 0 15px 50px rgba(135, 206, 235, 0.25);
  }
  
  .p4t-stat-card:nth-child(4):hover .p4t-stat-icon {
    background: #87CEEB;
  }
  
  .p4t-stat-card:nth-child(4):hover .p4t-stat-icon i {
    color: var(--p4t-white);
  }
  
  .p4t-stat-card:nth-child(4) .p4t-stat-number {
    color: #87CEEB;
  }
  
  /* Dark Overlay for Text Readability */
  .p4t-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
  }
  
  /* Slide Content */
  
  /* Slider Controls (Arrows) */
  .p4t-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--p4t-white);
    color: var(--p4t-white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    font-size: 1.4rem;
  }
  
  .p4t-slider-prev {
    left: 30px;
  }
  
  .p4t-slider-next {
    right: 30px;
  }
  
  .p4t-slider-control:hover {
    background-color: var(--p4t-primary-orange);
    border-color: var(--p4t-primary-orange);
    transform: translateY(-50%) scale(1.1);
  }
  
  /* Slider Dots Navigation */
  .p4t-slider-dots {
    display: none; /* Hide navigation dots */
  }
  
  .p4t-dot {
    display: none;
  }
  
  .p4t-dot:hover {
    display: none;
  }
  
  .p4t-dot.p4t-dot-active {
    display: none;
  }
  
  /* Pause on Hover */
  .p4t-hero-slider:hover .p4t-slide-bg {
    animation-play-state: paused;
  }
  
  /* ============================================
     SECTIONS
     ============================================ */
  .p4t-section {
    padding: var(--p4t-section-padding);
    width: 100%;
  }
  
  .p4t-section-content {
    max-width: 100%;
    padding: var(--p4t-content-padding);
    margin: 0 auto;
  }
  
  /* Alternating Background Sections */
  .p4t-section-alt {
    background-color: var(--p4t-very-light-gray);
  }
  
  /* Section Headers */
  .p4t-section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .p4t-section-header h2 {
    margin-bottom: 15px;
  }
  
  .p4t-section-header .p4t-subtitle {
    font-size: 1.2rem;
    color: var(--p4t-primary-black);
    max-width: 700px;
    margin: 0 auto;
  }
  
  .p4t-section-header .p4t-accent {
    color: var(--p4t-primary-orange);
  }
  
  /* ============================================
     CARDS & PROGRAM HIGHLIGHTS
     ============================================ */
  .p4t-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
  }
  
  .p4t-card {
    background-color: var(--p4t-white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
  }
  
  .p4t-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  
  .p4t-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--p4t-white);
  }
  
  .p4t-card h3 {
    margin-bottom: 15px;
    font-size: 1.75rem;
  }
  
  .p4t-card p {
    color: var(--p4t-primary-black);
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  
  /* Program-Specific Card Colors */
  .p4t-card-education {
    border-top-color: var(--p4t-green);
  }
  
  .p4t-card-education .p4t-card-icon {
    background-color: var(--p4t-green);
  }
  
  .p4t-card-health {
    border-top-color: var(--p4t-sky-blue);
  }
  
  .p4t-card-health .p4t-card-icon {
    background-color: var(--p4t-sky-blue);
  }
  
  .p4t-card-protection {
    border-top-color: var(--p4t-teal);
  }
  
  .p4t-card-protection .p4t-card-icon {
    background-color: var(--p4t-teal);
  }
  
  .p4t-card-livelihood {
    border-top-color: var(--p4t-yellow);
  }
  
  .p4t-card-livelihood .p4t-card-icon {
    background-color: var(--p4t-yellow);
  }
  
  .p4t-card-women {
    border-top-color: var(--p4t-coral);
  }
  
  .p4t-card-women .p4t-card-icon {
    background-color: var(--p4t-coral);
  }
  
  /* ============================================
     STATS / IMPACT SECTION
     ============================================ */
  .p4t-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 40px;
  }
  
  .p4t-stat-item h3 {
    font-size: 3.5rem;
    color: var(--p4t-primary-orange);
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .p4t-stat-item p {
    font-size: 1.15rem;
    color: var(--p4t-primary-black);
    font-weight: 500;
  }
  
  /* ============================================
     CALL TO ACTION SECTIONS
     ============================================ */
  .p4t-cta {
    background: linear-gradient(135deg, var(--p4t-primary-orange) 0%, var(--p4t-sunset) 100%);
    color: var(--p4t-white);
    padding: 80px 50px;
    text-align: center;
    border-radius: 16px;
    margin: 80px 50px;
  }
  
  .p4t-cta h2 {
    color: var(--p4t-white);
    margin-bottom: 20px;
  }
  
  .p4t-cta p {
    color: var(--p4t-white);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.95;
  }
  
  .p4t-cta .p4t-btn-secondary {
    background-color: var(--p4t-white);
    color: var(--p4t-primary-orange);
    border-color: var(--p4t-white);
  }
  
  .p4t-cta .p4t-btn-secondary:hover {
    background-color: var(--p4t-off-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  }
  

  /* Mobile Devices */
  @media (max-width: 768px) {
    body {
      font-size: 16px;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.p4t-menu-open {
      overflow: hidden;
    }
    
    /* Hide any Font Awesome icons in mobile nav links */
    .p4t-nav-menu .p4t-nav-link i.fa-chevron-down {
      display: none;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.35rem; }
    
    .p4t-hero h1 { font-size: 2.5rem; }
    .p4t-hero p { font-size: 1.15rem; }
    
    /* Top Bar Mobile - Compact Layout */
    .p4t-top-bar-content {
      flex-direction: column;
      gap: 8px;
      padding: 8px 20px;
    }
    
    .p4t-top-bar-left {
      flex-direction: row;
      gap: 15px;
      width: 100%;
      justify-content: center;
      flex-wrap: nowrap;
    }
    
    .p4t-top-bar-left a {
      font-size: 0.8rem;
      white-space: nowrap;
    }
    
    .p4t-top-bar-left i {
      font-size: 0.85rem;
    }
    
   /* .p4t-top-bar-right {
      flex-direction: column;
      gap: 8px;
      width: 100%;
      align-items: center;
    } */
     .p4t-top-bar-right {
        display: none;
     }
    
    .p4t-utility-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0;
    }
    
    .p4t-utility-links a {
      font-size: 0.75rem;
      padding: 0 10px;
    }
    
    .p4t-donate-btn-top {
      font-size: 0.75rem;
      padding: 5px 15px;
    }
    
    /* Mobile Navigation */
    .p4t-mobile-toggle {
      display: block;
      z-index: 10000;
      position: relative;
    }
    
    /* NO backdrop - menu slides over content without overlay */
    
    .p4t-nav-menu {
      position: fixed;
      top: 0;
      left: -100%;
      width: 280px;
      height: 100vh;
      background-color: var(--p4t-white);
      flex-direction: column;
      padding: 80px 30px 30px;
      box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
      transition: left 0.3s ease;
      gap: 0;
      z-index: 9999;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    
    .p4t-nav-menu.p4t-mobile-active {
      left: 0;
    }
    
    .p4t-nav-item {
      width: 100%;
      padding: 0;
    }
    
    .p4t-nav-link {
      text-align: left;
      padding: 18px 15px;
      display: block;
      border-bottom: 1px solid var(--p4t-light-gray);
      font-size: 1rem;
      color: var(--p4t-primary-black);
      transition: all 0.3s ease;
    }
    
    .p4t-nav-link:hover {
      background-color: var(--p4t-very-light-gray);
    }
    
    /* NO arrow for regular links by default */
    .p4t-nav-link::after {
      content: none;
    }
    
    /* ONLY dropdown parent gets arrow right after text */
    .p4t-dropdown > .p4t-nav-link {
      display: inline-block;
      width: 100%;
    }
    
    .p4t-dropdown > .p4t-nav-link::after {
      content: ' ›';
      font-size: 1.5rem;
      color: var(--p4t-primary-black);
      margin-left: 8px;
      display: inline-block;
      transition: transform 0.3s ease, color 0.3s ease;
      vertical-align: middle;
    }
    
    /* When dropdown is active, rotate arrow 90 degrees (points down) */
    .p4t-dropdown.p4t-mobile-dropdown-active > .p4t-nav-link {
      color: var(--p4t-primary-orange);
      border-bottom: none;
    }
    
    .p4t-dropdown.p4t-mobile-dropdown-active > .p4t-nav-link::after {
      transform: rotate(90deg);
      color: var(--p4t-primary-orange);
    }
    
    /* Active/current page styling */
    .p4t-nav-link.p4t-active {
      color: var(--p4t-primary-orange);
      background-color: rgba(243, 112, 33, 0.05);
    }
    
    /* Orange bracket border for active dropdown */
    .p4t-dropdown {
      border-bottom: none;
      position: relative;
    }
    
    .p4t-dropdown.p4t-mobile-dropdown-active {
      background-color: transparent;
      border-left: 3px solid var(--p4t-primary-orange);
      border-right: 3px solid var(--p4t-primary-orange);
      border-bottom: 3px solid var(--p4t-primary-orange);
      border-radius: 0 0 8px 8px;
      margin-bottom: 10px;
    }
    
    /* Mobile dropdown handling */
    .p4t-dropdown-menu {
      position: static;
      box-shadow: none;
      opacity: 1;
      visibility: visible;
      transform: none;
      padding: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background-color: var(--p4t-white);
      margin: 0;
    }
    
    .p4t-dropdown.p4t-mobile-dropdown-active .p4t-dropdown-menu {
      max-height: 500px;
      padding-bottom: 10px;
    }
    
    .p4t-dropdown-item {
      padding: 0;
      border-bottom: none;
      margin: 0;
    }
    
    .p4t-dropdown-item:last-child a {
      border-bottom: none;
    }
    
    .p4t-dropdown-item a {
      text-align: left;
      padding: 16px 15px 16px 45px;
      font-size: 0.95rem;
      background-color: var(--p4t-white);
      display: block;
      color: var(--p4t-primary-black);
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0.3px;
      transition: all 0.3s ease;
      border-bottom: 1px solid var(--p4t-light-gray);
    }
    
    .p4t-dropdown-item a:hover {
      background-color: var(--p4t-very-light-gray);
      color: var(--p4t-primary-black);
    }
    
    /* Remove the chevron icon from HTML if present */
    .p4t-dropdown > .p4t-nav-link i {
      display: none;
    }
    
    /* Content Padding */
    .p4t-navbar-content,
    .p4t-section-content,
    .p4t-hero,
    .p4t-cta {
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .p4t-section {
      padding: 50px 0;
    }
    
    .p4t-hero {
      min-height: 500px;
      padding: 60px 20px;
    }
    
    .p4t-hero-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .p4t-hero-buttons .p4t-btn {
      width: 100%;
      max-width: 300px;
    }
    
    .p4t-cards-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .p4t-stats {
      grid-template-columns: 1fr;
      gap: 30px;
    }
    
    .p4t-footer {
      padding: 40px 0 0;
    }
    
    .p4t-footer-content {
      grid-template-columns: 1fr; /* Stack on mobile */
      gap: 30px;
      padding: 0 30px 40px;
    }
    
    .p4t-footer-divider {
      display: none; /* Hide dividers on mobile */
    }
    
    .p4t-footer-column {
      padding: 0;
      text-align: center;
    }
    
    .p4t-footer-logo img {
      max-width: 150px;
    }
    
    .p4t-social-links {
      justify-content: center;
    }
    
    .p4t-footer-bottom {
      padding: 10px 20px; /* Very compact on mobile */
      font-size: 0.85rem;
    }
  }
  
  /* Large Desktop - Full HD */
  @media (min-width: 1920px) {
    .p4t-hero-slider {
      height: 1080px; /* Native Full HD height */
    }
  }
  
  /* Standard Desktop - Maintain 16:9 */
  @media (min-width: 1200px) and (max-width: 1919px) {
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 1080px;
    }
  }
  
  /* Medium Desktop/Laptop - Maintain 16:9 */
  @media (min-width: 992px) and (max-width: 1199px) {
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 700px;
    }
    
    .p4t-floating-stats {
      margin-top: -90px;
    }
    
    .p4t-stat-card {
      padding: 35px 25px;
    }
    
    .p4t-stat-number {
      font-size: 2.5rem;
    }
  }
  
  /* Tablet Landscape - Maintain 16:9 */
  @media (min-width: 769px) and (max-width: 991px) {
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 600px;
    }
    
    .p4t-floating-stats {
      margin-top: -70px;
      padding: 0 30px;
    }
    
    .p4t-floating-stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .p4t-stat-card {
      padding: 30px 20px;
    }
    
    .p4t-stat-icon {
      width: 60px;
      height: 60px;
    }
    
    .p4t-stat-icon i {
      font-size: 1.75rem;
    }
    
    .p4t-stat-number {
      font-size: 2.25rem;
    }
    
    .p4t-stat-label {
      font-size: 0.9rem;
    }
  }
  
  /* Hero Slider Mobile Responsive */
  @media (max-width: 768px) {
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 500px;
    }
    
    .p4t-floating-stats {
      margin-top: -60px;
      padding: 0 20px;
    }
    
    .p4t-floating-stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
    
    .p4t-stat-card {
      padding: 25px 15px;
    }
    
    .p4t-stat-icon {
      width: 55px;
      height: 55px;
      margin-bottom: 15px;
    }
    
    .p4t-stat-icon i {
      font-size: 1.5rem;
    }
    
    .p4t-stat-number {
      font-size: 2rem;
    }
    
    .p4t-stat-label {
      font-size: 0.85rem;
    }
    
    .p4t-slider-control {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
    
    .p4t-slider-prev {
      left: 15px;
    }
    
    .p4t-slider-next {
      right: 15px;
    }
    
    .p4t-slider-dots {
      bottom: 20px;
      gap: 8px;
    }
    
    .p4t-dot {
      width: 10px;
      height: 10px;
    }
    
    .p4t-dot.p4t-dot-active {
      width: 28px;
    }
  }
  
  /* Small Mobile Devices */
  @media (max-width: 480px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    
    .p4t-hero h1 { font-size: 2rem; }
    
    /* Hero Slider Extra Small Mobile */
    .p4t-hero-slider {
      height: calc(100vw * 0.5625); /* 16:9 aspect ratio */
      max-height: 350px;
    }
    
    .p4t-floating-stats {
      margin-top: -50px;
      padding: 0 15px;
    }
    
    .p4t-floating-stats-container {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    
    .p4t-stat-card {
      padding: 20px 15px;
      display: flex;
      align-items: center;
      text-align: left;
    }
    
    .p4t-stat-icon {
      width: 50px;
      height: 50px;
      margin: 0 15px 0 0;
      flex-shrink: 0;
    }
    
    .p4t-stat-icon i {
      font-size: 1.25rem;
    }
    
    .p4t-stat-number {
      font-size: 1.75rem;
      margin-bottom: 5px;
    }
    
    .p4t-stat-label {
      font-size: 0.8rem;
    }
    
    .p4t-slider-control {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .p4t-slider-prev {
      left: 10px;
    }
    
    .p4t-slider-next {
      right: 10px;
    }
    
    .p4t-btn {
      padding: 12px 25px;
      font-size: 1rem;
    }
    
    .p4t-btn-large {
      padding: 14px 30px;
      font-size: 1.05rem;
    }
    
    .p4t-card {
      padding: 30px 20px;
    }
    
    .p4t-stat-item h3 {
      font-size: 2.75rem;
    }
  }
  
  /* ============================================
     UTILITY CLASSES
     ============================================ */
  .p4t-text-center { text-align: center; }
  .p4t-text-left { text-align: left; }
  .p4t-text-right { text-align: right; }
  
  .p4t-mb-20 { margin-bottom: 20px; }
  .p4t-mb-40 { margin-bottom: 40px; }
  .p4t-mb-60 { margin-bottom: 60px; }
  
  .p4t-mt-20 { margin-top: 20px; }
  .p4t-mt-40 { margin-top: 40px; }
  .p4t-mt-60 { margin-top: 60px; }
  
  .p4t-highlight {
    color: var(--p4t-primary-orange);
  }
  
  .p4t-container-fluid {
    width: 100%;
    max-width: 100%;
  }
  
  .p4t-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
  }
  
  .p4t-col {
    padding: 0 15px;
    flex: 1;
  }
  
  /* ============================================
     ACCESSIBILITY
     ============================================ */
  .p4t-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }
  
  /* Focus States */
  a:focus,
  button:focus,
  .p4t-btn:focus {
    outline: 3px solid var(--p4t-primary-orange);
    outline-offset: 3px;
  }
  
  /* Skip to Main Content */
  .p4t-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--p4t-primary-orange);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
  }
  
  .p4t-skip-link:focus {
    top: 0;
  }

/* ============================================
   P4T WHY SECTION - OPTIMIZED
   Image + Text layout with balanced spacing
   ============================================ */

.p4t-why-section {
    padding: 50px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
}

.p4t-why-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    align-items: flex-start;
    gap: 45px;
}

/* ============================================
   IMAGE COLUMN - 45% width - STICKY
   ============================================ */

.p4t-why-image-column {
    flex: 0 0 45%;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.p4t-why-image-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.p4t-why-image-wrapper:hover {
    transform: none !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

.p4t-why-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
                                rgba(0,0,0,0) 0%, 
                                rgba(0,0,0,0.1) 100%);
    pointer-events: none;
}

.p4t-why-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.p4t-why-image-wrapper:hover img {
    transform: none !important;
}

/* ============================================
   TEXT COLUMN - 55% width
   ============================================ */

.p4t-why-text-column {
    flex: 1;
    min-width: 0;
}

.p4t-why-header {
    width: 100%;
}

.p4t-why-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-why-badge i {
    font-size: 0.9rem;
}

.p4t-why-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.p4t-why-accent {
    color: #F37021;
    position: relative;
}

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

.p4t-why-description {
    margin-bottom: 24px;
}

.p4t-why-intro {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 16px;
    padding-left: 20px;
    border-left: 4px solid #F37021;
}

.p4t-why-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 14px;
    text-align: justify;
}

.p4t-why-body:last-child {
    margin-bottom: 0;
}

/* Highlight box */
.p4t-why-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 16px;
}

.p4t-why-highlight p {
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
    text-align: left;
}

.p4t-why-highlight strong {
    color: #F37021;
    font-weight: 700;
}

/* Stats Row */
.p4t-why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.p4t-why-stat-item {
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    text-align: left;
}

.p4t-why-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
    margin-bottom: 6px;
}

.p4t-why-stat-label {
    font-size: 0.85rem;
    color: #777777;
    font-weight: 500;
    line-height: 1.3;
}

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

.p4t-why-cta {
    margin-top: 24px;
}

.p4t-why-cta .p4-general-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.p4t-why-cta .p4-general-button i {
    transition: transform 0.3s ease;
}

.p4t-why-cta .p4-general-button:hover i {
    transform: translateX(5px);
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-why-section {
        padding: 40px 0;
    }
    
    .p4t-why-content {
        padding: 0 40px;
        flex-direction: column;
        gap: 35px;
    }
    
    .p4t-why-image-column {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        top: auto;
    }

    .p4t-why-badge {
        margin: 0 auto 14px auto;
    }
    
    .p4t-why-title {
        font-size: 2.4rem;
        text-align: center;
        margin-bottom: 18px;
    }
    
    .p4t-why-intro {
        font-size: 1.15rem;
        text-align: center;
        padding-left: 0;
        border-left: none;
        border-top: 4px solid #F37021;
        padding-top: 15px;
        margin-bottom: 14px;
    }
    
    .p4t-why-body {
        font-size: 1.05rem;
        text-align: left;
        margin-bottom: 12px;
    }

    .p4t-why-highlight {
        margin-top: 14px;
        padding: 18px 22px;
    }

    .p4t-why-highlight p {
        font-size: 0.98rem;
    }

    .p4t-why-stats {
        gap: 14px;
        margin-top: 20px;
    }

    .p4t-why-stat-number {
        font-size: 1.8rem;
    }

    .p4t-why-description {
        margin-bottom: 20px;
    }
    
    .p4t-why-cta {
        text-align: center;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-why-section {
        padding: 35px 0;
    }
    
    .p4t-why-content {
        padding: 0 25px;
        gap: 28px;
    }
    
    .p4t-why-image-wrapper {
        border-radius: 8px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    }

    .p4t-why-badge {
        font-size: 0.75rem;
        padding: 7px 18px;
        margin-bottom: 12px;
    }
    
    .p4t-why-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .p4t-why-intro {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 12px;
        padding-top: 12px;
    }
    
    .p4t-why-body {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 11px;
    }

    .p4t-why-highlight {
        margin-top: 12px;
        padding: 16px 20px;
    }

    .p4t-why-highlight p {
        font-size: 0.95rem;
    }

    .p4t-why-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 18px;
    }

    .p4t-why-stat-item {
        padding: 14px 18px;
    }

    .p4t-why-stat-number {
        font-size: 1.6rem;
    }

    .p4t-why-description {
        margin-bottom: 18px;
    }
    
    .p4t-why-cta {
        margin-top: 18px;
    }
    
    .p4t-why-cta .p4-general-button {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-why-section {
        padding: 30px 0;
    }
    
    .p4t-why-content {
        padding: 0 20px;
        gap: 24px;
    }

    .p4t-why-badge {
        font-size: 0.7rem;
        padding: 6px 16px;
    }
    
    .p4t-why-title {
        font-size: 1.75rem;
        margin-bottom: 14px;
    }
    
    .p4t-why-intro {
        font-size: 1.05rem;
        padding-top: 10px;
        margin-bottom: 10px;
    }
    
    .p4t-why-body {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .p4t-why-highlight {
        padding: 14px 18px;
        margin-top: 10px;
    }

    .p4t-why-highlight p {
        font-size: 0.9rem;
    }

    .p4t-why-stats {
        gap: 10px;
        margin-top: 16px;
    }

    .p4t-why-stat-item {
        padding: 12px 16px;
    }

    .p4t-why-stat-number {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .p4t-why-stat-label {
        font-size: 0.8rem;
    }

    .p4t-why-description {
        margin-bottom: 16px;
    }
    
    .p4t-why-cta {
        margin-top: 16px;
    }

    .p4t-why-cta .p4-general-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}
 /* ============================================
   INTERVENTION BLOCK SECTION - CSS
   ============================================ */

.p4t-intervention-block {
  padding: 80px 0 0 0;
  background-color: var(--p4t-yellow);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.p4t-intervention-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Main Title */
.p4t-intervention-main-title {
  font-family: var(--p4t-heading-font);
  font-size: 3rem;
  font-weight: 700;
  color: var(--p4t-primary-black);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.p4t-intervention-accent {
  color: var(--p4t-primary-orange);
}

/* Section Subtitle */
.p4t-intervention-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--p4t-primary-black);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Tabs Container - Like Menu Bar */
.p4t-intervention-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  background-color: var(--p4t-white);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Individual Tab Button - Menu Style */
.p4t-intervention-tab {
  background-color: var(--p4t-white);
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--p4t-primary-black);
  padding: 20px 35px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  position: relative;
}

.p4t-intervention-tab:hover {
  background-color: var(--p4t-very-light-gray);
  color: var(--p4t-primary-orange);
}

.p4t-intervention-tab.active {
  background-color: var(--p4t-primary-orange);
  color: var(--p4t-white);
  border-bottom-color: var(--p4t-primary-orange);
}

/* Content Wrapper */
.p4t-intervention-content-wrapper {
  position: relative;
  background-color: var(--p4t-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Individual Content Section */
.p4t-intervention-content {
  display: grid;
  grid-template-columns: 55% 45%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.p4t-intervention-content.active {
max-height: 2000px;
opacity: 1;
}
/* Text Side (55% - Left Side with Dark Background) */
.p4t-intervention-text {
padding: 60px 50px;
display: flex;
flex-direction: column;
justify-content: center;
background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
color: var(--p4t-white);
}
.p4t-intervention-title {
font-family: var(--p4t-heading-font);
font-size: 2.2rem;
font-weight: 700;
color: var(--p4t-white);
margin-bottom: 25px;
line-height: 1.3;
}
.p4t-intervention-description {
font-size: 1.05rem;
line-height: 1.8;
color: rgba(255, 255, 255, 0.85);
margin-bottom: 30px;
}
/* Features List */
.p4t-intervention-features {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
margin-bottom: 30px;
}
.p4t-intervention-feature {
display: flex;
align-items: center;
gap: 10px;
color: var(--p4t-white);
font-size: 0.95rem;
font-weight: 500;
}
.p4t-intervention-feature i {
color: var(--p4t-primary-orange);
font-size: 1.1rem;
}
/* Call-to-Action Button */
.p4t-intervention-btn {
display: inline-flex;
align-items: center;
gap: 12px;
background-color: var(--p4t-primary-orange);
color: var(--p4t-white);
padding: 16px 35px;
border-radius: 5px;
font-size: 1rem;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
align-self: flex-start;
box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}
.p4t-intervention-btn:hover {
background-color: #e0651d;
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(243, 112, 33, 0.4);
}
/* Image Side (45% - Right Side) */
.p4t-intervention-image {
position: relative;
overflow: hidden;
background-color: var(--p4t-light-gray);
}
.p4t-intervention-image img {
width: 100%;
height: 100%;
min-height: 500px;
object-fit: cover;
}
/* ============================================
RESPONSIVE STYLES
============================================ */
/* Tablet (768px - 991px) */
@media (max-width: 991px) {
.p4t-intervention-block {
padding: 60px 0 0 0;
}
.p4t-intervention-container {
padding: 0 30px;
}
.p4t-intervention-main-title {
font-size: 2.5rem;
margin-bottom: 20px;
}
.p4t-intervention-subtitle {
font-size: 1.15rem;
margin-bottom: 35px;
}
.p4t-intervention-tabs {
gap: 5px;
}
.p4t-intervention-tab {
padding: 18px 25px;
font-size: 0.95rem;
}
.p4t-intervention-content {
grid-template-columns: 1fr;
}
.p4t-intervention-image {
order: -1;
}
.p4t-intervention-image img {
min-height: 350px;
}
.p4t-intervention-text {
padding: 40px 30px;
}
.p4t-intervention-title {
font-size: 2rem;
}
.p4t-intervention-description {
font-size: 1rem;
}
.p4t-intervention-features {
grid-template-columns: 1fr;
}
}
/* Mobile (< 768px) - Accordion Style */
@media (max-width: 767px) {
.p4t-intervention-block {
padding: 50px 0 50px 0;
}
.p4t-intervention-container {
padding: 0 20px;
}
.p4t-intervention-main-title {
font-size: 2rem;
margin-bottom: 20px;
}
.p4t-intervention-subtitle {
font-size: 1.1rem;
margin-bottom: 30px;
text-align: left;
}
/* MOBILE: Tabs become accordion buttons */
.p4t-intervention-tabs {
flex-direction: column;
gap: 0;
border-radius: 10px;
background-color: transparent;
box-shadow: none;
}
.p4t-intervention-tab {
width: 100%;
text-align: left;
padding: 18px 20px;
font-size: 0.95rem;
border: none;
border-bottom: none;
background-color: var(--p4t-white);
margin-bottom: 2px;
border-radius: 8px;
position: relative;
}
.p4t-intervention-tab::after {
content: '\f078';
font-family: 'Font Awesome 6 Free';
font-weight: 900;
position: absolute;
right: 20px;
transition: transform 0.3s ease;
}
.p4t-intervention-tab.active::after {
transform: rotate(180deg);
}
/* MOBILE: Content wrapper becomes transparent */
.p4t-intervention-content-wrapper {
background-color: transparent;
box-shadow: none;
}
/* MOBILE: Hide default content on load */
.p4t-intervention-content.p4t-desktop-active {
max-height: 0;
opacity: 0;
}
.p4t-intervention-content.p4t-desktop-active.active {
max-height: 2000px;
opacity: 1;
}
/* MOBILE: Content appears below clicked button */
.p4t-intervention-content {
grid-template-columns: 1fr;
border-radius: 0 0 8px 8px;
margin-bottom: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.p4t-intervention-image {
order: -1;
}
.p4t-intervention-image img {
min-height: 280px;
}
.p4t-intervention-text {
padding: 30px 20px;
}
.p4t-intervention-title {
font-size: 1.75rem;
margin-bottom: 20px;
}
.p4t-intervention-description {
font-size: 0.95rem;
margin-bottom: 25px;
}
.p4t-intervention-btn {
width: 100%;
justify-content: center;
padding: 16px 25px;
}
}
/* Small Mobile (< 576px) */
@media (max-width: 575px) {
.p4t-intervention-block {
padding: 40px 0 40px 0;
}
.p4t-intervention-main-title {
font-size: 1.75rem;
}
.p4t-intervention-subtitle {
font-size: 1rem;
}
.p4t-intervention-tab {
padding: 16px 15px;
font-size: 0.9rem;
}
.p4t-intervention-image img {
min-height: 250px;
}
.p4t-intervention-title {
font-size: 1.5rem;
}
.p4t-intervention-description {
font-size: 0.9rem;
}
.p4t-intervention-feature {
font-size: 0.9rem;
}
}

/*===================
General button use
====================*/
.p4-general-button {
    background-color: var(--p4t-primary-orange);
    color: var(--p4t-white);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--p4t-primary-orange);
    white-space: nowrap;
  }
  
  @keyframes p4t-fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .p4-general-button:hover {
    background-color: var(--p4t-sunset);
    border-color: var(--p4t-sunset);
    color: var(--p4t-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 112, 33, 0.3);
  }

  /*===========================
  P4T Principle
  ============================*/
 .p4t-principle{
  color: var(--p4t-primary-orange);
  font-weight: bold; 
 }

 .p4t-principle-teal-bacground{
  color: var(--p4t-yellow);
  font-weight: bold; 
 }
  

 /* ============================================
   P4T THEMATIC AREAS & WHO WE ARE SECTION
   Optimized with balanced spacing
   ============================================ */

.p4t-thematic-areas-whoweare {
    padding: 50px 0;
    background-color: #1A5F7A;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.p4t-thematic-areas-whoweare::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.03);
    top: -100px;
    right: -100px;
}

.p4t-thematic-areas-whoweare::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 45px solid rgba(255, 255, 255, 0.03);
    bottom: -80px;
    left: -60px;
}

.p4t-thematic-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    gap: 45px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ============================================
   LEFT COLUMN: THEMATIC AREAS SLIDESHOW (40%)
   ============================================ */

.p4t-thematic-slideshow-column {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}

.p4t-thematic-slideshow-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

/* Yellow accent for text on teal background */
.p4t-thematic-accent {
    color: #F9C74F;
}

/* Slideshow Wrapper */
.p4t-thematic-slideshow-wrapper {
    position: relative;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 38px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    flex-grow: 1;
    min-height: 420px;
    display: flex;
    align-items: center;
}

/* Individual Slide */
.p4t-thematic-slide {
    position: absolute;
    top: 38px;
    left: 32px;
    right: 32px;
    bottom: 38px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p4t-thematic-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    z-index: 1;
}

/* Icon */
.p4t-thematic-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #F37021 0%, #E85D04 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.p4t-thematic-icon i {
    font-size: 2rem;
    color: #ffffff;
}

/* Slide Title */
.p4t-thematic-slide-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

/* Slide Description */
.p4t-thematic-slide-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    text-align: center;
    margin-bottom: 24px;
}

/* Slide Button */
.p4t-thematic-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #F37021;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    align-self: center;
    border: 2px solid #F37021;
}

.p4t-thematic-slide-btn:visited {
    color: #ffffff;
}

.p4t-thematic-slide-btn:hover {
    background-color: #E85D04;
    border-color: #E85D04;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 112, 33, 0.4);
}

.p4t-thematic-slide-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.p4t-thematic-slide-btn:hover i {
    transform: translateX(4px);
}

/* Navigation Controls */
.p4t-thematic-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 20px;
}

.p4t-thematic-prev,
.p4t-thematic-next {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.p4t-thematic-prev:hover,
.p4t-thematic-next:hover {
    background-color: #F37021;
    border-color: #F37021;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}

.p4t-thematic-prev i,
.p4t-thematic-next i {
    font-size: 1rem;
}

/* Slide Indicators */
.p4t-thematic-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
}

.p4t-indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.p4t-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.p4t-indicator.active {
    background-color: #F9C74F;
    border-color: #F9C74F;
    width: 28px;
    border-radius: 5px;
}

/* ============================================
   RIGHT COLUMN: WHO WE ARE (60%)
   ============================================ */

.p4t-whoweare-column {
    flex: 1;
    display: flex;
    align-items: center;
}

.p4t-whoweare-content {
    width: 100%;
}

.p4t-whoweare-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Description */
.p4t-whoweare-description {
    margin-bottom: 28px;
}

.p4t-whoweare-intro {
    font-size: 1.25rem;
    line-height: 1.75;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 16px;
}

.p4t-whoweare-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 14px;
}

.p4t-whoweare-body:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.p4t-whoweare-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.p4t-whoweare-stat-item {
    text-align: center;
}

.p4t-whoweare-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #F9C74F;
    margin-bottom: 6px;
    line-height: 1;
}

.p4t-whoweare-stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.3;
}

/* CTA Button */
.p4t-whoweare-cta {
    margin-top: 24px;
}

.p4t-whoweare-cta .p4-general-button {
    background-color: #F9C74F;
    color: #1a1a1a;
    border-color: #F9C74F;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(249, 199, 79, 0.3);
}

.p4t-whoweare-cta .p4-general-button:hover {
    background-color: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.p4t-whoweare-cta .p4-general-button i {
    transition: transform 0.3s ease;
}

.p4t-whoweare-cta .p4-general-button:hover i {
    transform: translateX(5px);
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-thematic-areas-whoweare {
        padding: 40px 0;
    }
    
    .p4t-thematic-container {
        flex-direction: column;
        padding: 0 40px;
        gap: 40px;
    }
    
    .p4t-thematic-slideshow-column {
        flex: 0 0 100%;
    }
    
    .p4t-thematic-slideshow-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .p4t-thematic-slideshow-wrapper {
        min-height: 400px;
        padding: 32px 28px;
    }

    .p4t-thematic-slide {
        top: 32px;
        left: 28px;
        right: 28px;
        bottom: 32px;
    }
    
    .p4t-whoweare-title {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .p4t-whoweare-intro {
        font-size: 1.15rem;
        text-align: center;
        margin-bottom: 14px;
    }
    
    .p4t-whoweare-body {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .p4t-whoweare-description {
        margin-bottom: 24px;
    }
    
    .p4t-whoweare-stats {
        gap: 18px;
        padding: 20px 0;
        margin-bottom: 20px;
    }
    
    .p4t-whoweare-stat-number {
        font-size: 2.2rem;
    }
    
    .p4t-whoweare-cta {
        text-align: center;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-thematic-areas-whoweare {
        padding: 35px 0;
    }
    
    .p4t-thematic-container {
        padding: 0 25px;
        gap: 32px;
    }
    
    .p4t-thematic-slideshow-title {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }
    
    .p4t-thematic-slideshow-wrapper {
        padding: 35px 22px;
        min-height: 480px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .p4t-thematic-slide {
        position: absolute;
        top: 35px;
        left: 22px;
        right: 22px;
        bottom: 35px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .p4t-thematic-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
        flex-shrink: 0;
    }
    
    .p4t-thematic-icon i {
        font-size: 1.85rem;
    }
    
    .p4t-thematic-slide-title {
        font-size: 1.35rem;
        margin-bottom: 14px;
    }
    
    .p4t-thematic-slide-description {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 20px;
    }
    
    .p4t-thematic-slide-btn {
        padding: 11px 24px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .p4t-thematic-controls {
        margin-top: 18px;
        gap: 16px;
    }
    
    .p4t-thematic-prev,
    .p4t-thematic-next {
        width: 40px;
        height: 40px;
    }
    
    .p4t-whoweare-title {
        font-size: 2rem;
        margin-bottom: 18px;
    }
    
    .p4t-whoweare-intro {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .p4t-whoweare-body {
        font-size: 0.98rem;
        line-height: 1.7;
        margin-bottom: 11px;
    }

    .p4t-whoweare-description {
        margin-bottom: 20px;
    }
    
    .p4t-whoweare-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 0;
        margin-bottom: 18px;
    }
    
    .p4t-whoweare-stat-number {
        font-size: 2rem;
    }
    
    .p4t-whoweare-stat-label {
        font-size: 0.88rem;
    }

    .p4t-whoweare-cta {
        margin-top: 18px;
    }
    
    .p4t-whoweare-cta .p4-general-button {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-thematic-areas-whoweare {
        padding: 30px 0;
    }

    .p4t-thematic-container {
        padding: 0 20px;
        gap: 28px;
    }
    
    .p4t-thematic-slideshow-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    
    .p4t-thematic-slideshow-wrapper {
        padding: 32px 18px;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .p4t-thematic-slide {
        position: absolute;
        top: 32px;
        left: 18px;
        right: 18px;
        bottom: 32px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .p4t-thematic-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
        flex-shrink: 0;
    }
    
    .p4t-thematic-icon i {
        font-size: 1.75rem;
    }
    
    .p4t-thematic-slide-title {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .p4t-thematic-slide-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .p4t-thematic-slide-btn {
        flex-shrink: 0;
    }

    .p4t-thematic-controls {
        gap: 14px;
    }
    
    .p4t-whoweare-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }
    
    .p4t-whoweare-intro {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .p4t-whoweare-body {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .p4t-whoweare-description {
        margin-bottom: 18px;
    }

    .p4t-whoweare-stats {
        gap: 14px;
        padding: 16px 0;
        margin-bottom: 16px;
    }
    
    .p4t-whoweare-stat-number {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }

    .p4t-whoweare-stat-label {
        font-size: 0.85rem;
    }

    .p4t-whoweare-cta {
        margin-top: 16px;
    }
    
    .p4t-whoweare-cta .p4-general-button {
        padding: 13px 24px;
        font-size: 0.95rem;
    }
}
/* ============================================
   P4T IMPACT AREA - AUTO HOME SECTION
   ============================================ */

.p4t-impact-area-auto-home {
    padding: 80px 0;
    background-color: var(--p4t-white);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.p4t-impact-area-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

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

.p4t-impact-area-header {
    text-align: center;
    margin-bottom: 60px;
}

.p4t-impact-area-title {
    font-family: var(--p4t-heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--p4t-primary-black);
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.p4t-impact-area-accent {
    color: var(--p4t-primary-orange);
    position: relative;
}

.p4t-impact-area-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--p4t-primary-black);
    max-width: 900px;
    margin: 0 auto;
}

/* ============================================
   IMPACT CARDS GRID
   ============================================ */

.p4t-impact-area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

/* Individual Card */
.p4t-impact-area-card {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.p4t-impact-area-card.p4t-impact-area-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.p4t-impact-area-card-inner {
    background-color: var(--p4t-white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Hover effect shimmer */
.p4t-impact-area-card-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
                                transparent 30%, 
                                rgba(243, 112, 33, 0.1) 50%, 
                                transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.p4t-impact-area-card-inner:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.p4t-impact-area-card-inner:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(243, 112, 33, 0.2);
    border-color: var(--p4t-primary-orange);
}

/* Highlighted Card (Money Card) */
.p4t-impact-area-card-highlight .p4t-impact-area-card-inner {
    background-color: var(--p4t-primary-orange);
    box-shadow: 0 15px 50px rgba(243, 112, 33, 0.4);
}

.p4t-impact-area-card-highlight .p4t-impact-area-icon {
    background-color: var(--p4t-white);
}

.p4t-impact-area-card-highlight .p4t-impact-area-icon i {
    color: var(--p4t-primary-orange);
}

.p4t-impact-area-card-highlight .p4t-impact-area-number,
.p4t-impact-area-card-highlight .p4t-impact-area-label,
.p4t-impact-area-card-highlight .p4t-impact-area-description {
    color: var(--p4t-white);
}

/* Card Icon */
.p4t-impact-area-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.p4t-impact-area-card-inner:hover .p4t-impact-area-icon {
    transform: scale(1.15) rotate(360deg);
}

.p4t-impact-area-icon i {
    font-size: 2rem;
    color: var(--p4t-white);
}

/* Icon Color Variations */
.p4t-impact-area-icon-education {
    background-color: #667eea;
}

.p4t-impact-area-icon-nutrition {
    background-color: #f5576c;
}

.p4t-impact-area-icon-mental {
    background-color: #4facfe;
}

.p4t-impact-area-icon-health {
    background-color: #43e97b;
}

.p4t-impact-area-icon-medical {
    background-color: #fa709a;
}

.p4t-impact-area-icon-livelihoods {
    background-color: #30cfd0;
}

.p4t-impact-area-icon-water {
    background-color: #a8edea;
}

.p4t-impact-area-icon-awareness {
    background-color: #ff9a56;
}

/* Card Number */
.p4t-impact-area-number {
    font-family: var(--p4t-heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--p4t-primary-orange);
    margin-bottom: 12px;
    line-height: 1;
}

/* Card Label */
.p4t-impact-area-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--p4t-primary-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Card Description */
.p4t-impact-area-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    flex-grow: 1;
}

/* ============================================
   TOTAL IMPACT BANNER (TOP POSITION)
   ============================================ */

.p4t-impact-area-total-banner {
    background-color: var(--p4t-teal);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(26, 95, 122, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.p4t-impact-area-total-banner.p4t-impact-area-banner-visible {
    opacity: 1;
    transform: translateY(0);
}

.p4t-impact-area-total-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.p4t-impact-area-total-left {
    flex-shrink: 0;
}

.p4t-impact-area-total-icon {
    width: 100px;
    height: 100px;
    background-color: var(--p4t-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(253, 184, 51, 0.4);
}

.p4t-impact-area-total-icon i {
    font-size: 3rem;
    color: var(--p4t-primary-black);
}

.p4t-impact-area-total-right {
    flex: 1;
}

.p4t-impact-area-total-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.p4t-impact-area-total-item {
    text-align: center;
    flex: 1;
}

.p4t-impact-area-total-number {
    font-family: var(--p4t-heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--p4t-white);
    line-height: 1;
    margin-bottom: 10px;
}

.p4t-impact-area-total-final .p4t-impact-area-total-number {
    color: var(--p4t-yellow);
    font-size: 3.5rem;
}

.p4t-impact-area-total-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.p4t-impact-area-total-divider {
    width: 2px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

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

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .p4t-impact-area-auto-home {
        padding: 60px 0;
    }
    
    .p4t-impact-area-container {
        padding: 0 30px;
    }
    
    .p4t-impact-area-title {
        font-size: 3rem;
    }
    
    .p4t-impact-area-subtitle {
        font-size: 1.15rem;
    }
    
    .p4t-impact-area-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .p4t-impact-area-total-banner {
        padding: 35px 30px;
        margin-bottom: 40px;
    }
    
    .p4t-impact-area-total-content {
        gap: 30px;
    }
    
    .p4t-impact-area-total-icon {
        width: 80px;
        height: 80px;
    }
    
    .p4t-impact-area-total-icon i {
        font-size: 2.5rem;
    }
    
    .p4t-impact-area-total-stats {
        gap: 15px;
    }
    
    .p4t-impact-area-total-number {
        font-size: 2.5rem;
    }
    
    .p4t-impact-area-total-final .p4t-impact-area-total-number {
        font-size: 3rem;
    }
    
    .p4t-impact-area-total-label {
        font-size: 0.85rem;
    }
    
    .p4t-impact-area-total-divider {
        height: 50px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .p4t-impact-area-auto-home {
        padding: 50px 0;
    }
    
    .p4t-impact-area-container {
        padding: 0 20px;
    }
    
    .p4t-impact-area-header {
        margin-bottom: 40px;
    }
    
    .p4t-impact-area-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .p4t-impact-area-subtitle {
        font-size: 1.1rem;
    }
    
    .p4t-impact-area-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .p4t-impact-area-card-inner {
        padding: 30px 20px;
    }
    
    .p4t-impact-area-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .p4t-impact-area-icon i {
        font-size: 1.8rem;
    }
    
    .p4t-impact-area-number {
        font-size: 2.2rem;
    }
    
    .p4t-impact-area-label {
        font-size: 1.05rem;
    }
    
    .p4t-impact-area-description {
        font-size: 0.9rem;
    }
    
    .p4t-impact-area-total-banner {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .p4t-impact-area-total-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .p4t-impact-area-total-icon {
        width: 80px;
        height: 80px;
    }
    
    .p4t-impact-area-total-icon i {
        font-size: 2.5rem;
    }
    
    .p4t-impact-area-total-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .p4t-impact-area-total-number {
        font-size: 2.5rem;
    }
    
    .p4t-impact-area-total-final .p4t-impact-area-total-number {
        font-size: 3rem;
    }
    
    .p4t-impact-area-total-label {
        font-size: 0.85rem;
    }
    
    .p4t-impact-area-total-divider {
        width: 80px;
        height: 2px;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .p4t-impact-area-auto-home {
        padding: 40px 0;
    }
    
    .p4t-impact-area-title {
        font-size: 2rem;
    }
    
    .p4t-impact-area-subtitle {
        font-size: 1.05rem;
    }
    
    .p4t-impact-area-number {
        font-size: 2rem;
    }
    
    .p4t-impact-area-label {
        font-size: 1rem;
    }
    
    .p4t-impact-area-total-number {
        font-size: 2.2rem;
    }
    
    .p4t-impact-area-total-final .p4t-impact-area-total-number {
        font-size: 2.5rem;
    }
    
    .p4t-impact-area-total-label {
        font-size: 0.8rem;
    }
}


/* ============================================
   P4T RESPONSE TO PROBLEMS SECTION
   ============================================ */

.p4t-response-to-problems {
    background-color: var(--p4t-berry);
    padding: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.p4t-response-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    min-height: 700px;
}

/* ============================================
   LEFT SIDE: IMAGE COLUMN (40%)
   ============================================ */

.p4t-response-image-column {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.p4t-response-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.p4t-response-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.p4t-response-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                                rgba(184, 59, 94, 0.3) 0%, 
                                rgba(0, 0, 0, 0.4) 100%);
}

/* Floating Action Buttons on Image */
.p4t-response-floating-actions {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.p4t-response-floating-action {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.p4t-response-floating-action.p4t-response-action-visible {
    opacity: 1;
    transform: translateX(0);
}

.p4t-response-floating-action:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 50px rgba(243, 112, 33, 0.3);
    border-color: var(--p4t-primary-orange);
    background-color: rgba(255, 255, 255, 1);
}

.p4t-response-floating-action-icon {
    width: 50px;
    height: 50px;
    background-color: var(--p4t-primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.p4t-response-floating-action:hover .p4t-response-floating-action-icon {
    transform: scale(1.1) rotate(5deg);
}

.p4t-response-floating-action-icon i {
    font-size: 1.4rem;
    color: var(--p4t-white);
}

.p4t-response-floating-action-text {
    flex: 1;
}

.p4t-response-floating-action-title {
    font-family: var(--p4t-heading-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--p4t-primary-black);
    line-height: 1.2;
    margin-bottom: 4px;
}

.p4t-response-floating-action-desc {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

.p4t-response-floating-action-arrow {
    width: 35px;
    height: 35px;
    background-color: var(--p4t-primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.p4t-response-floating-action:hover .p4t-response-floating-action-arrow {
    transform: translateX(5px);
}

.p4t-response-floating-action-arrow i {
    font-size: 0.9rem;
    color: var(--p4t-white);
}

/* ============================================
   RIGHT SIDE: CONTENT COLUMN (60%)
   ============================================ */

.p4t-response-content-column {
    flex: 1;
    background-color: var(--p4t-berry);
    display: flex;
    align-items: center;
}

.p4t-response-content-inner {
    padding: 80px 60px;
    width: 100%;
}

/* Section Badge */
.p4t-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--p4t-white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.p4t-response-badge i {
    font-size: 1.1rem;
}

/* Title */
.p4t-response-title {
    font-family: var(--p4t-heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--p4t-white);
    margin-bottom: 40px;
    line-height: 1.2;
}

.p4t-response-accent {
    color: var(--p4t-yellow);
}

/* ============================================
   PROGRAMS GRID
   ============================================ */

.p4t-response-programs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.p4t-response-program-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.p4t-response-program-item.p4t-response-visible {
    opacity: 1;
    transform: translateX(0);
}

.p4t-response-program-icon {
    width: 50px;
    height: 50px;
    background-color: var(--p4t-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.p4t-response-program-icon i {
    font-size: 1.5rem;
    color: var(--p4t-berry);
}

.p4t-response-program-text {
    flex: 1;
}

.p4t-response-program-title {
    font-family: var(--p4t-heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--p4t-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.p4t-response-program-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================
   WHAT MAKES US DIFFERENT BOX
   ============================================ */

.p4t-response-difference {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 40px;
}

.p4t-response-difference-icon {
    width: 60px;
    height: 60px;
    background-color: var(--p4t-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p4t-response-difference-icon i {
    font-size: 1.8rem;
    color: var(--p4t-primary-black);
}

.p4t-response-difference-content {
    flex: 1;
}

.p4t-response-difference-title {
    font-family: var(--p4t-heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--p4t-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.p4t-response-difference-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.p4t-response-difference-text strong {
    color: var(--p4t-yellow);
    font-weight: 700;
}

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

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .p4t-response-container {
        flex-direction: column;
        min-height: auto;
    }
    
    .p4t-response-image-column {
        flex: 0 0 400px;
        width: 100%;
    }
    
    .p4t-response-content-inner {
        padding: 60px 40px;
    }
    
    .p4t-response-title {
        font-size: 2.5rem;
        margin-bottom: 35px;
    }
    
    .p4t-response-floating-actions {
        gap: 12px;
        bottom: 25px;
        left: 20px;
        right: 20px;
    }
    
    .p4t-response-floating-action {
        padding: 15px 18px;
    }
    
    .p4t-response-floating-action-icon {
        width: 45px;
        height: 45px;
    }
    
    .p4t-response-floating-action-icon i {
        font-size: 1.3rem;
    }
    
    .p4t-response-floating-action-title {
        font-size: 1rem;
    }
    
    .p4t-response-floating-action-desc {
        font-size: 0.8rem;
    }
    
    .p4t-response-floating-action-arrow {
        width: 32px;
        height: 32px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .p4t-response-image-column {
        flex: 0 0 350px;
    }
    
    .p4t-response-content-inner {
        padding: 50px 25px;
    }
    
    .p4t-response-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }
    
    .p4t-response-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .p4t-response-programs {
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .p4t-response-program-item {
        gap: 15px;
    }
    
    .p4t-response-program-icon {
        width: 45px;
        height: 45px;
    }
    
    .p4t-response-program-icon i {
        font-size: 1.3rem;
    }
    
    .p4t-response-program-title {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .p4t-response-program-desc {
        font-size: 0.95rem;
    }
    
    .p4t-response-floating-actions {
        gap: 12px;
        bottom: 20px;
        left: 15px;
        right: 15px;
    }
    
    .p4t-response-floating-action {
        padding: 14px 16px;
    }
    
    .p4t-response-floating-action-icon {
        width: 42px;
        height: 42px;
    }
    
    .p4t-response-floating-action-icon i {
        font-size: 1.2rem;
    }
    
    .p4t-response-floating-action-title {
        font-size: 0.95rem;
    }
    
    .p4t-response-floating-action-desc {
        font-size: 0.75rem;
    }
    
    .p4t-response-floating-action-arrow {
        width: 30px;
        height: 30px;
    }
    
    .p4t-response-floating-action-arrow i {
        font-size: 0.8rem;
    }
    
    .p4t-response-difference {
        flex-direction: column;
        padding: 25px;
        gap: 15px;
        margin-top: 35px;
    }
    
    .p4t-response-difference-icon {
        width: 55px;
        height: 55px;
    }
    
    .p4t-response-difference-icon i {
        font-size: 1.6rem;
    }
    
    .p4t-response-difference-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .p4t-response-difference-text {
        font-size: 1rem;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .p4t-response-image-column {
        flex: 0 0 300px;
    }
    
    .p4t-response-content-inner {
        padding: 40px 20px;
    }
    
    .p4t-response-title {
        font-size: 1.75rem;
    }
    
    .p4t-response-program-title {
        font-size: 1.1rem;
    }
    
    .p4t-response-program-desc {
        font-size: 0.9rem;
    }
    
    .p4t-response-difference-title {
        font-size: 1.2rem;
    }
    
    .p4t-response-difference-text {
        font-size: 0.95rem;
    }
}



/* ============================================
   PARTNERS FOR P4T SLIDER SECTION
   FRESH START - PROPER HORIZONTAL SCROLL
   ============================================ */

.partners-for-p4t-sliders {
    background-color: var(--p4t-white);
    padding: 40px 0;
    width: 100%;
    overflow: hidden;
}

.partners-for-p4t-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

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

.partners-for-p4t-header {
    text-align: center;
    margin-bottom: 25px;
}

.partners-for-p4t-title {
    font-family: var(--p4t-heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--p4t-primary-black);
    margin-bottom: 15px;
    line-height: 1.2;
}

.partners-for-p4t-accent {
    color: var(--p4t-primary-orange);
}

.partners-for-p4t-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   INFINITE SCROLL SETUP
   ============================================ */

.partners-for-p4t-scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

/* Gradient fade removed - clean edges */

/* Scrolling content wrapper */
.partners-for-p4t-scroll-content {
    display: inline-flex;
    gap: 30px;
    animation: partners-for-p4t-infinite-scroll 60s linear infinite;
}

/* Pause animation on hover */
.partners-for-p4t-scroll-content:hover {
    animation-play-state: paused;
}

/* Scroll animation - starts from left edge */
@keyframes partners-for-p4t-infinite-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   LOGO ITEMS
   ============================================ */

.partners-for-p4t-logo-item {
    width: 220px;
    height: 132px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 15px;
    transition: all 0.3s ease;
}

.partners-for-p4t-logo-item:hover {
    transform: scale(1.1);
}

.partners-for-p4t-logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.3s ease;
}

.partners-for-p4t-logo-item:hover img {
    transform: scale(1.05);
}

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

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .partners-for-p4t-sliders {
        padding: 35px 0;
    }
    
    .partners-for-p4t-container {
        padding: 0 30px;
    }
    
    .partners-for-p4t-header {
        margin-bottom: 30px;
    }
    
    .partners-for-p4t-title {
        font-size: 2.5rem;
    }
    
    .partners-for-p4t-scroll-content {
        gap: 40px;
    }
    
    .partners-for-p4t-logo-item {
        width: 220px;
        height: 132px;
        padding: 18px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .partners-for-p4t-sliders {
        padding: 30px 0;
    }
    
    .partners-for-p4t-container {
        padding: 0 20px;
    }
    
    .partners-for-p4t-header {
        margin-bottom: 25px;
    }
    
    .partners-for-p4t-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .partners-for-p4t-scroll-content {
        gap: 30px;
        animation-duration: 45s;
    }
    
    .partners-for-p4t-logo-item {
        width: 200px;
        height: 120px;
        padding: 15px;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .partners-for-p4t-sliders {
        padding: 25px 0;
    }
    
    .partners-for-p4t-title {
        font-size: 1.75rem;
    }
    
    .partners-for-p4t-scroll-content {
        gap: 25px;
    }
    
    .partners-for-p4t-logo-item {
        width: 180px;
        height: 108px;
        padding: 12px;
    }
}





/* ============================================
   P4T HERO PAGES SLIDE - REVISED
   SIMPLE HERO WITH LEFT-ALIGNED TEXT
   ============================================ */

/* ============================================
   P4T HERO PAGES SLIDE
   SIMPLE HERO WITH CENTERED TEXT
   ============================================ */

.p4t-hero-pages-slide {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 70px;
}

/* Background Image */
.p4t-hero-pages-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: brightness(1.1);
}

/* Dark Overlay */
.p4t-hero-pages-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

/* Hero Content */
.p4t-hero-pages-content {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    padding: 0 20px;
}

.p4t-hero-pages-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin: 0;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.p4t-hero-pages-highlight {
    color: #FDB833;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-hero-pages-slide {
        height: 420px;
    }

    .p4t-hero-pages-title {
        font-size: 3.5rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-hero-pages-slide {
        height: 370px;
    }

    .p4t-hero-pages-title {
        font-size: 2.8rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-hero-pages-slide {
        height: 320px;
    }

    .p4t-hero-pages-title {
        font-size: 2.2rem;
    }
}



/* ============================================
   GENERAL P4T USE NARRATIVE 1
   CLEAN WHITE - STACKED + SPLIT LAST PARAGRAPH
   ============================================ */

.general-p4t-use-narrative1 {
    background-color: #ffffff;
    padding: 90px 0;
}

.general-p4t-use-narrative1-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

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

.general-p4t-use-narrative1-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #F37021;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.general-p4t-use-narrative1-badge i {
    font-size: 0.9rem;
}

/* ============================================
   STACKED PARAGRAPHS
   ============================================ */

.general-p4t-use-narrative1-text {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.95;
    color: #444444;
}

.general-p4t-use-narrative1-text strong {
    color: #F37021;
    font-weight: 700;
}

/* Divider between stacked paragraphs and split block */
.general-p4t-use-narrative1-divider {
    width: 60px;
    height: 3px;
    background-color: #F37021;
    margin: 50px 0;
    border-radius: 2px;
}

/* ============================================
   SPLIT BLOCK - LAST PARAGRAPH
   Image left, text right
   ============================================ */

.general-p4t-use-narrative1-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.general-p4t-use-narrative1-img {
    flex: 0 0 420px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.general-p4t-use-narrative1-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.general-p4t-use-narrative1-split-text {
    flex: 1;
}

.general-p4t-use-narrative1-split-text p {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #444444;
    margin-bottom: 30px;
}

/* Quote callout inside split */
.general-p4t-use-narrative1-quote {
    border-left: 4px solid #F37021;
    padding: 18px 25px;
    background-color: #fdf6f1;
    border-radius: 0 8px 8px 0;
}

.general-p4t-use-narrative1-quote p {
    font-size: 1.15rem;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.6;
}

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

/* Tablet */
@media (max-width: 991px) {
    .general-p4t-use-narrative1 {
        padding: 70px 0;
    }

    .general-p4t-use-narrative1-container {
        padding: 0 40px;
    }

    .general-p4t-use-narrative1-split {
        gap: 40px;
    }

    .general-p4t-use-narrative1-img {
        flex: 0 0 320px;
        height: 360px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .general-p4t-use-narrative1 {
        padding: 55px 0;
    }

    .general-p4t-use-narrative1-container {
        padding: 0 25px;
    }

    .general-p4t-use-narrative1-split {
        flex-direction: column;
        gap: 35px;
    }

    .general-p4t-use-narrative1-img {
        flex: none;
        width: 100%;
        height: 280px;
    }

    .general-p4t-use-narrative1-divider {
        margin: 35px 0;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .general-p4t-use-narrative1-container {
        padding: 0 20px;
    }

    .general-p4t-use-narrative1-text,
    .general-p4t-use-narrative1-split-text p {
        font-size: 1rem;
    }

    .general-p4t-use-narrative1-img {
        height: 240px;
    }
}



/* ============================================
   P4T OUR VISION TAG SECTION
   Tagline · Mission · Vision · Values
   ============================================ */

.p4t-our-vision-tag {
    background-color: #ffffff;
    padding: 0 0 90px 0;
}

/* ============================================
   TAGLINE BANNER
   ============================================ */

.p4t-our-vision-tag-banner {
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    padding: 70px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

/* Decorative circles */
.p4t-our-vision-tag-banner::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 60px solid rgba(255, 255, 255, 0.04);
    top: -120px;
    left: -100px;
}

.p4t-our-vision-tag-banner::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    bottom: -80px;
    right: -60px;
}

.p4t-our-vision-tag-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.p4t-our-vision-tag-banner h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.p4t-our-vision-tag-banner h2 span {
    color: #F37021;
}

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

.p4t-our-vision-tag-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   MISSION & VISION CARDS
   ============================================ */

.p4t-our-vision-tag-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.p4t-our-vision-tag-card {
    border-radius: 16px;
    padding: 45px 40px;
    position: relative;
    overflow: hidden;
}

.p4t-our-vision-tag-card-mission {
    background-color: #F37021;
}

.p4t-our-vision-tag-card-vision {
    background-color: #1A5F7A;
}

/* Large background letter */
.p4t-our-vision-tag-card::before {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 10rem;
    position: absolute;
    bottom: -30px;
    right: 20px;
    opacity: 0.08;
    color: #ffffff;
    line-height: 1;
}

.p4t-our-vision-tag-card-mission::before {
    content: 'M';
}

.p4t-our-vision-tag-card-vision::before {
    content: 'V';
}

.p4t-our-vision-tag-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 22px;
}

.p4t-our-vision-tag-card h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.p4t-our-vision-tag-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.p4t-our-vision-tag-values-header {
    text-align: center;
    margin-bottom: 50px;
}

.p4t-our-vision-tag-values-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.p4t-our-vision-tag-values-header h2 span {
    color: #F37021;
}

.p4t-our-vision-tag-values-header p {
    font-size: 1rem;
    color: #777777;
    margin: 0;
}

.p4t-our-vision-tag-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.p4t-our-vision-tag-value {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 35px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.p4t-our-vision-tag-value:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: #F37021;
}

/* Top accent line on hover */
.p4t-our-vision-tag-value::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F37021;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.p4t-our-vision-tag-value:hover::before {
    transform: scaleX(1);
}

.p4t-our-vision-tag-value-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Each value card gets a distinct icon color */
.p4t-our-vision-tag-value:nth-child(1) .p4t-our-vision-tag-value-icon { background-color: rgba(243, 112, 33, 0.12); color: #F37021; }
.p4t-our-vision-tag-value:nth-child(2) .p4t-our-vision-tag-value-icon { background-color: rgba(26, 95, 122, 0.12); color: #1A5F7A; }
.p4t-our-vision-tag-value:nth-child(3) .p4t-our-vision-tag-value-icon { background-color: rgba(107, 163, 104, 0.12); color: #6BA368; }
.p4t-our-vision-tag-value:nth-child(4) .p4t-our-vision-tag-value-icon { background-color: rgba(184, 59, 94, 0.12); color: #B83B5E; }
.p4t-our-vision-tag-value:nth-child(5) .p4t-our-vision-tag-value-icon { background-color: rgba(253, 184, 51, 0.15); color: #d49a00; }
.p4t-our-vision-tag-value:nth-child(6) .p4t-our-vision-tag-value-icon { background-color: rgba(135, 206, 235, 0.2); color: #2a9fd6; }

.p4t-our-vision-tag-value h4 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.p4t-our-vision-tag-value p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #666666;
    margin: 0;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-our-vision-tag-banner {
        padding: 55px 40px;
        margin-bottom: 60px;
    }

    .p4t-our-vision-tag-banner h2 {
        font-size: 2.5rem;
    }

    .p4t-our-vision-tag-container {
        padding: 0 40px;
    }

    .p4t-our-vision-tag-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-our-vision-tag {
        padding-bottom: 60px;
    }

    .p4t-our-vision-tag-banner {
        padding: 50px 25px;
        margin-bottom: 50px;
    }

    .p4t-our-vision-tag-banner h2 {
        font-size: 2rem;
    }

    .p4t-our-vision-tag-container {
        padding: 0 25px;
    }

    .p4t-our-vision-tag-mv {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 55px;
    }

    .p4t-our-vision-tag-values-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .p4t-our-vision-tag-values-header h2 {
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-our-vision-tag-banner {
        padding: 40px 20px;
    }

    .p4t-our-vision-tag-banner h2 {
        font-size: 1.7rem;
    }

    .p4t-our-vision-tag-container {
        padding: 0 20px;
    }

    .p4t-our-vision-tag-card {
        padding: 35px 28px;
    }
}



/* ============================================
   WHY P4T EXISTS SECTION
   Clean Editorial — Alternating Text & Image
   ============================================ */

.why-p4t-exists {
    background-color: #ffffff;
    padding: 90px 0;
}

.why-p4t-exists-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.why-p4t-exists-header {
    margin-bottom: 70px;
}

.why-p4t-exists-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.why-p4t-exists-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.why-p4t-exists-header h2 span {
    color: #F37021;
}

.why-p4t-exists-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
}

/* ============================================
   ALTERNATING ROWS
   ============================================ */

.why-p4t-exists-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #f0f0f0;
}

.why-p4t-exists-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Reverse layout for even rows — image left, text right becomes text left, image right */
.why-p4t-exists-row.why-p4t-exists-row-reverse {
    direction: rtl;
}

.why-p4t-exists-row.why-p4t-exists-row-reverse > * {
    direction: ltr;
}

/* ============================================
   TEXT BLOCK
   ============================================ */

.why-p4t-exists-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-p4t-exists-row-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #F37021;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-p4t-exists-row-number::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background-color: #F37021;
}

.why-p4t-exists-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.why-p4t-exists-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 0;
}

/* Stat callout inside text block */
.why-p4t-exists-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 22px;
}

.why-p4t-exists-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.why-p4t-exists-stat-label {
    font-size: 0.9rem;
    color: #777777;
    font-weight: 500;
}

/* Quote block */
.why-p4t-exists-quote {
    margin-top: 22px;
    padding: 24px 26px;
    background-color: #1A5F7A;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-p4t-exists-quote p {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

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

.why-p4t-exists-img {
    position: relative;
}

.why-p4t-exists-img-main {
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.why-p4t-exists-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Small floating tag on image */
.why-p4t-exists-img-tag {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
}

.why-p4t-exists-img-tag i {
    color: #F37021;
    font-size: 1rem;
}

/* Offset accent square behind image */
.why-p4t-exists-img::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background-color: #fdf6f1;
    border-radius: 14px;
    bottom: -14px;
    right: -14px;
    z-index: -1;
}

/* Know Our Solution Button */
.why-p4t-exists-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    background-color: #F37021;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.why-p4t-exists-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.why-p4t-exists-btn:hover {
    background-color: #ffffff;
    color: #F37021;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.why-p4t-exists-btn:hover i {
    transform: translateX(4px);
}



/* Tablet */
@media (max-width: 991px) {
    .why-p4t-exists {
        padding: 70px 0;
    }

    .why-p4t-exists-container {
        padding: 0 40px;
    }

    .why-p4t-exists-header h2 {
        font-size: 2.3rem;
    }

    .why-p4t-exists-row {
        gap: 45px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .why-p4t-exists {
        padding: 55px 0;
    }

    .why-p4t-exists-container {
        padding: 0 25px;
    }

    .why-p4t-exists-header {
        margin-bottom: 45px;
    }

    .why-p4t-exists-header h2 {
        font-size: 1.9rem;
    }

    .why-p4t-exists-row,
    .why-p4t-exists-row.why-p4t-exists-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 35px;
        margin-bottom: 55px;
        padding-bottom: 55px;
    }

    /* Image always on top on mobile */
    .why-p4t-exists-img {
        order: -1;
    }

    .why-p4t-exists-img-main {
        height: 280px;
    }

    .why-p4t-exists-img::before {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .why-p4t-exists-container {
        padding: 0 20px;
    }

    .why-p4t-exists-header h2 {
        font-size: 1.65rem;
    }

    .why-p4t-exists-row {
        gap: 28px;
        margin-bottom: 45px;
        padding-bottom: 45px;
    }

    .why-p4t-exists-img-main {
        height: 240px;
    }

    .why-p4t-exists-img-tag {
        font-size: 0.78rem;
        padding: 10px 14px;
    }
}


/* ============================================
   P4T OUR APPROACH SECTION
   Solution · Thematic Areas · Where We Work
   ============================================ */

.p4t-our-approach {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-our-approach-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-our-approach-header {
    margin-bottom: 40px;
}

.p4t-our-approach-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-our-approach-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.p4t-our-approach-header h2 span {
    color: #F37021;
}

.p4t-our-approach-intro {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555555;
    max-width: 860px;
    margin-bottom: 0;
}

.p4t-our-approach-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 18px;
}

/* ============================================
   THEMATIC TABS
   ============================================ */

.p4t-our-approach-tabs {
    margin-bottom: 50px;
}

.p4t-our-approach-tab-nav {
    display: flex;
    border-bottom: 2px solid #eeeeee;
    margin-bottom: 0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.p4t-our-approach-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-our-approach-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-our-approach-tab-btn i {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.p4t-our-approach-tab-btn:hover {
    color: #F37021;
}

.p4t-our-approach-tab-btn.p4t-our-approach-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* Tab Panels */
.p4t-our-approach-tab-panels {
    border: 1px solid #eeeeee;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.p4t-our-approach-tab-panel {
    display: none;
    padding: 38px 40px;
}

.p4t-our-approach-tab-panel.p4t-our-approach-panel-active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-our-approach-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
}

.p4t-our-approach-panel-text h3 span {
    color: #F37021;
}

.p4t-our-approach-panel-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 0;
}

.p4t-our-approach-panel-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 18px;
}

.p4t-our-approach-panel-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-our-approach-panel-stat-label {
    font-size: 0.9rem;
    color: #777777;
    font-weight: 500;
}

.p4t-our-approach-panel-img {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-our-approach-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================
   WHAT MAKES P4T DIFFERENT
   ============================================ */

.p4t-our-approach-different {
    background-color: #1A5F7A;
    border-radius: 16px;
    padding: 42px 45px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.p4t-our-approach-different::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.04);
    top: -100px;
    right: -80px;
}

.p4t-our-approach-different::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.04);
    bottom: -60px;
    left: -40px;
}

.p4t-our-approach-different-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.p4t-our-approach-different h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.p4t-our-approach-different p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* ============================================
   WHERE WE WORK
   ============================================ */

.p4t-our-approach-where {
    margin-bottom: 0;
}

.p4t-our-approach-where-header {
    margin-bottom: 32px;
}

.p4t-our-approach-where-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.p4t-our-approach-where-header h2 span {
    color: #F37021;
}

.p4t-our-approach-where-line {
    width: 45px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
}

.p4t-our-approach-where-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.p4t-our-approach-where-block {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
    padding: 28px 24px;
}

.p4t-our-approach-where-block-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(243, 112, 33, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #F37021;
    margin-bottom: 16px;
}

.p4t-our-approach-where-block h4 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin-bottom: 10px;
}

.p4t-our-approach-where-block p {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 0;
}

.p4t-our-approach-where-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-our-approach-where-block ul li {
    font-size: 0.98rem;
    line-height: 1.8;
    color: #444444;
    padding-left: 16px;
    position: relative;
}

.p4t-our-approach-where-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #F37021;
    font-weight: 700;
}


/* Panel Button */
.p4t-our-approach-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    background-color: #F37021;
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.p4t-our-approach-panel-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.p4t-our-approach-panel-btn:hover {
    background-color: #E85D04;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 112, 33, 0.3);
}

.p4t-our-approach-panel-btn:hover i {
    transform: translateX(4px);
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-our-approach {
        padding: 40px 0;
    }

    .p4t-our-approach-container {
        padding: 0 40px;
    }

    .p4t-our-approach-header {
        margin-bottom: 35px;
    }

    .p4t-our-approach-header h2 {
        font-size: 2.3rem;
    }

    .p4t-our-approach-tabs {
        margin-bottom: 40px;
    }

    .p4t-our-approach-tab-btn {
        padding: 14px 20px;
        font-size: 0.88rem;
    }

    .p4t-our-approach-tab-panel {
        padding: 32px 35px;
    }

    .p4t-our-approach-tab-panel.p4t-our-approach-panel-active {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .p4t-our-approach-different {
        padding: 38px 35px;
        margin-bottom: 40px;
    }

    .p4t-our-approach-where-header {
        margin-bottom: 28px;
    }

    .p4t-our-approach-where-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-our-approach {
        padding: 35px 0;
    }

    .p4t-our-approach-container {
        padding: 0 25px;
    }

    .p4t-our-approach-header {
        margin-bottom: 30px;
    }

    .p4t-our-approach-header h2 {
        font-size: 1.9rem;
    }

    .p4t-our-approach-tabs {
        margin-bottom: 35px;
    }

    .p4t-our-approach-tab-btn {
        padding: 12px 16px;
        font-size: 0.82rem;
        gap: 7px;
    }

    .p4t-our-approach-tab-panel {
        padding: 25px 22px;
    }

    .p4t-our-approach-tab-panel.p4t-our-approach-panel-active {
        gap: 24px;
    }

    .p4t-our-approach-panel-text h3 {
        margin-bottom: 14px;
    }

    .p4t-our-approach-different {
        padding: 32px 24px;
        margin-bottom: 35px;
    }

    .p4t-our-approach-different h3 {
        font-size: 1.35rem;
    }

    .p4t-our-approach-where-header {
        margin-bottom: 25px;
    }

    .p4t-our-approach-where-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .p4t-our-approach-where-block {
        padding: 24px 20px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-our-approach {
        padding: 30px 0;
    }

    .p4t-our-approach-container {
        padding: 0 20px;
    }

    .p4t-our-approach-header h2 {
        font-size: 1.65rem;
    }

    .p4t-our-approach-tab-btn span {
        display: none;
    }

    .p4t-our-approach-tab-btn {
        padding: 12px 18px;
        justify-content: center;
    }

    .p4t-our-approach-tab-panel {
        padding: 24px 18px;
    }

    .p4t-our-approach-panel-img {
        height: 240px;
    }

    .p4t-our-approach-different {
        padding: 28px 20px;
    }

    .p4t-our-approach-where-block {
        padding: 22px 18px;
    }
}

/* ============================================
   P4T EDUCATION FOR TRANSFORMATION SECTION
   Clean two-paragraph editorial layout
   ============================================ */

.p4t-education-for-transformation {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-education-for-transformation-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-education-for-transformation-header {
    margin-bottom: 35px;
}

.p4t-education-for-transformation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-education-for-transformation-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-education-for-transformation-header h2 span {
    color: #F37021;
}

.p4t-education-for-transformation-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TWO-COLUMN PARAGRAPH LAYOUT
   ============================================ */

.p4t-education-for-transformation-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

/* ============================================
   LEFT COLUMN
   ============================================ */

.p4t-education-for-transformation-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-education-for-transformation-left p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-education-for-transformation-left p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat callout */
.p4t-education-for-transformation-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 16px 22px;
    border-radius: 0 8px 8px 0;
}

.p4t-education-for-transformation-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-education-for-transformation-stat-label {
    font-size: 0.92rem;
    color: #777777;
    font-weight: 500;
}

/* ============================================
   RIGHT COLUMN
   ============================================ */

.p4t-education-for-transformation-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-education-for-transformation-right p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-education-for-transformation-right p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Differentiator highlight block */
.p4t-education-for-transformation-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 22px 24px;
}

.p4t-education-for-transformation-highlight p {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.7;
}

/* Offer list */
.p4t-education-for-transformation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.p4t-education-for-transformation-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.p4t-education-for-transformation-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #F37021;
}

.p4t-education-for-transformation-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Closing statement */
.p4t-education-for-transformation-closing {
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 10px;
    padding: 22px 24px;
}

.p4t-education-for-transformation-closing p {
    font-size: 1rem;
    line-height: 1.85;
    color: #444444;
    margin: 0;
    font-weight: 500;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-education-for-transformation {
        padding: 40px 0;
    }

    .p4t-education-for-transformation-container {
        padding: 0 40px;
    }

    .p4t-education-for-transformation-header {
        margin-bottom: 30px;
    }

    .p4t-education-for-transformation-header h2 {
        font-size: 2.3rem;
    }

    .p4t-education-for-transformation-body {
        gap: 35px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-education-for-transformation {
        padding: 35px 0;
    }

    .p4t-education-for-transformation-container {
        padding: 0 25px;
    }

    .p4t-education-for-transformation-header {
        margin-bottom: 28px;
    }

    .p4t-education-for-transformation-header h2 {
        font-size: 1.9rem;
    }

    .p4t-education-for-transformation-body {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .p4t-education-for-transformation-left,
    .p4t-education-for-transformation-right {
        gap: 16px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-education-for-transformation {
        padding: 30px 0;
    }

    .p4t-education-for-transformation-container {
        padding: 0 20px;
    }

    .p4t-education-for-transformation-header h2 {
        font-size: 1.65rem;
    }
}


/* ============================================
   P4T EDUCATION FOR TRANSFORMATION ACTION
   Tabbed Programmes with Slideshows
   ============================================ */

.p4t-education-for-transformation-action {
    background-color: #fafafa;
    padding: 50px 0;
}

.p4t-education-for-transformation-action-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-education-for-transformation-action-header {
    margin-bottom: 32px;
}

.p4t-education-for-transformation-action-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-education-for-transformation-action-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-education-for-transformation-action-header h2 span {
    color: #F37021;
}

.p4t-education-for-transformation-action-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TAB NAVIGATION
   ============================================ */

.p4t-education-for-transformation-action-tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.p4t-education-for-transformation-action-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-education-for-transformation-action-tab-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-education-for-transformation-action-tab-btn i {
    font-size: 0.95rem;
}

.p4t-education-for-transformation-action-tab-btn:hover {
    color: #F37021;
}

.p4t-education-for-transformation-action-tab-btn.p4t-efta-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* ============================================
   TAB PANELS WRAPPER
   ============================================ */

.p4t-education-for-transformation-action-panels {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.p4t-education-for-transformation-action-panel {
    display: none;
    padding: 38px 45px;
}

.p4t-education-for-transformation-action-panel.p4t-efta-panel-active {
    display: block;
}

/* ============================================
   PANEL INNER LAYOUT — IMAGE + TEXT
   ============================================ */

.p4t-efta-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

/* Reverse — image right, text left */
.p4t-efta-panel-grid.p4t-efta-reverse {
    direction: rtl;
}

.p4t-efta-panel-grid.p4t-efta-reverse > * {
    direction: ltr;
}

/* ============================================
   SLIDESHOW
   ============================================ */

.p4t-efta-slideshow {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-efta-slides {
    position: relative;
    width: 100%;
    height: 400px;
}

.p4t-efta-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.p4t-efta-slide.p4t-efta-slide-active {
    opacity: 1;
}

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

/* Slide controls */
.p4t-efta-slide-controls {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.p4t-efta-slide-prev,
.p4t-efta-slide-next {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.p4t-efta-slide-prev:hover,
.p4t-efta-slide-next:hover {
    background-color: #F37021;
    color: #ffffff;
}

.p4t-efta-slide-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.p4t-efta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.p4t-efta-dot.p4t-efta-dot-active {
    background-color: #ffffff;
    transform: scale(1.3);
}

/* Single image (no slideshow) */
.p4t-efta-single-img {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    height: 400px;
}

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

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

.p4t-efta-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-efta-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.p4t-efta-panel-text h3 span {
    color: #F37021;
}

.p4t-efta-panel-text p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-efta-panel-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Sub-heading inside panel */
.p4t-efta-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 0;
}

/* Stat callout */
.p4t-efta-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-efta-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-efta-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
}

/* List */
.p4t-efta-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.p4t-efta-list li {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.p4t-efta-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #F37021;
}

.p4t-efta-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Teal highlight quote */
.p4t-efta-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 22px;
}

.p4t-efta-highlight p {
    font-size: 0.98rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.7;
}


/* Below-image content row — for tabs with overflow text */
.p4t-efta-below-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 767px) {
    .p4t-efta-below-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 24px;
        padding-top: 24px;
    }
}

/* Below single — full width, no columns */
.p4t-efta-below-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.p4t-efta-below-single p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-efta-below-single p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Horizontal pill list */
.p4t-efta-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-efta-list-horizontal li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

/* ============================================
   WHY P4T SUCCEEDS — BOTTOM BLOCK
   ============================================ */

.p4t-efta-why {
    margin-top: 32px;
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 16px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.p4t-efta-why::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -60px;
}

.p4t-efta-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-efta-why h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-efta-why p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-education-for-transformation-action {
        padding: 40px 0;
    }

    .p4t-education-for-transformation-action-container {
        padding: 0 40px;
    }

    .p4t-education-for-transformation-action-header {
        margin-bottom: 28px;
    }

    .p4t-education-for-transformation-action-header h2 {
        font-size: 2.3rem;
    }

    .p4t-education-for-transformation-action-panel {
        padding: 32px 38px;
    }

    .p4t-efta-panel-grid {
        gap: 35px;
    }

    .p4t-efta-why {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-education-for-transformation-action {
        padding: 35px 0;
    }

    .p4t-education-for-transformation-action-container {
        padding: 0 25px;
    }

    .p4t-education-for-transformation-action-header {
        margin-bottom: 25px;
    }

    .p4t-education-for-transformation-action-header h2 {
        font-size: 1.9rem;
    }

    .p4t-education-for-transformation-action-panel {
        padding: 25px 22px;
    }

    .p4t-efta-panel-grid,
    .p4t-efta-panel-grid.p4t-efta-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .p4t-efta-panel-text {
        gap: 14px;
    }

    .p4t-efta-slides,
    .p4t-efta-single-img {
        height: 260px;
    }

    .p4t-efta-why {
        padding: 26px 20px;
    }

    .p4t-efta-why h3 {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-education-for-transformation-action {
        padding: 30px 0;
    }

    .p4t-education-for-transformation-action-container {
        padding: 0 20px;
    }

    .p4t-education-for-transformation-action-header h2 {
        font-size: 1.65rem;
    }

    .p4t-education-for-transformation-action-tab-btn span {
        display: none;
    }

    .p4t-education-for-transformation-action-tab-btn {
        padding: 14px 18px;
        justify-content: center;
    }

    .p4t-efta-slides,
    .p4t-efta-single-img {
        height: 220px;
    }

    .p4t-efta-panel-text {
        gap: 12px;
    }
}
/* ============================================
   P4T HEALTH SECTION
   Clean two-paragraph editorial layout
   ============================================ */

.p4t-health {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-health-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-health-header {
    margin-bottom: 35px;
}

.p4t-health-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-health-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-health-header h2 span {
    color: #F37021;
}

.p4t-health-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TWO-COLUMN PARAGRAPH LAYOUT
   ============================================ */

.p4t-health-body {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Top row: text left, image right */
.p4t-health-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-health-top-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-health-top-text p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-health-top-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.p4t-health-top-img {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

.p4t-health-body p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-health-body p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stats grid */
.p4t-health-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.p4t-health-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 18px;
    border-radius: 0 8px 8px 0;
}

.p4t-health-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
    white-space: nowrap;
}

.p4t-health-stat-label {
    font-size: 0.85rem;
    color: #777777;
    font-weight: 500;
    line-height: 1.4;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-health {
        padding: 40px 0;
    }

    .p4t-health-container {
        padding: 0 40px;
    }

    .p4t-health-header {
        margin-bottom: 30px;
    }

    .p4t-health-header h2 {
        font-size: 2.3rem;
    }

    .p4t-health-body {
        gap: 30px;
    }

    .p4t-health-top {
        gap: 35px;
    }

    .p4t-health-stats {
        gap: 11px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-health {
        padding: 35px 0;
    }

    .p4t-health-container {
        padding: 0 25px;
    }

    .p4t-health-header {
        margin-bottom: 28px;
    }

    .p4t-health-header h2 {
        font-size: 1.9rem;
    }

    .p4t-health-body {
        gap: 25px;
    }

    .p4t-health-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p4t-health-top-text {
        gap: 16px;
    }

    .p4t-health-top-img {
        height: 260px;
    }

    .p4t-health-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-health {
        padding: 30px 0;
    }

    .p4t-health-container {
        padding: 0 20px;
    }

    .p4t-health-header h2 {
        font-size: 1.65rem;
    }
}


/* ============================================
   P4T HEALTH2 SECTION
   Tabbed Health Programmes — same pattern as Education Action
   ============================================ */

.p4t-health2 {
    background-color: #fafafa;
    padding: 50px 0;
}

.p4t-health2-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-health2-header {
    margin-bottom: 32px;
}

.p4t-health2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-health2-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-health2-header h2 span {
    color: #F37021;
}

.p4t-health2-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TAB NAVIGATION
   ============================================ */

.p4t-health2-tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.p4t-health2-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-health2-tab-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-health2-tab-btn i {
    font-size: 0.95rem;
}

.p4t-health2-tab-btn:hover {
    color: #F37021;
}

.p4t-health2-tab-btn.p4t-health2-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* ============================================
   TAB PANELS WRAPPER
   ============================================ */

.p4t-health2-panels {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.p4t-health2-panel {
    display: none;
    padding: 38px 45px;
}

.p4t-health2-panel.p4t-health2-panel-active {
    display: block;
}

/* ============================================
   PANEL GRID — IMAGE + TEXT
   ============================================ */

.p4t-health2-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.p4t-health2-panel-grid.p4t-health2-reverse {
    direction: rtl;
}

.p4t-health2-panel-grid.p4t-health2-reverse > * {
    direction: ltr;
}

/* ============================================
   IMAGE — single only (no slideshow for health)
   ============================================ */

.p4t-health2-img {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

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

.p4t-health2-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-health2-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.p4t-health2-panel-text h3 span {
    color: #F37021;
}

.p4t-health2-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 0;
}

.p4t-health2-panel-text p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-health2-panel-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat callout */
.p4t-health2-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-health2-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-health2-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
}

/* List */
.p4t-health2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.p4t-health2-list li {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.p4t-health2-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #F37021;
}

.p4t-health2-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Teal highlight */
.p4t-health2-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 22px;
}

.p4t-health2-highlight p {
    font-size: 0.98rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.7;
}

/* Below grid — overflow content */
.p4t-health2-below-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: start;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

/* Below single — full width, no columns */
.p4t-health2-below-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.p4t-health2-below-single p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

/* Horizontal pill list */
.p4t-health2-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-health2-list-horizontal li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

/* ============================================
   WHY IT WORKS — BOTTOM BANNER
   ============================================ */

.p4t-health2-why {
    margin-top: 32px;
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 16px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.p4t-health2-why::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -60px;
}

.p4t-health2-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-health2-why h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-health2-why p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-health2 {
        padding: 40px 0;
    }

    .p4t-health2-container {
        padding: 0 40px;
    }

    .p4t-health2-header {
        margin-bottom: 28px;
    }

    .p4t-health2-header h2 {
        font-size: 2.3rem;
    }

    .p4t-health2-panel {
        padding: 32px 38px;
    }

    .p4t-health2-panel-grid {
        gap: 35px;
    }

    .p4t-health2-below-grid {
        gap: 32px;
    }

    .p4t-health2-why {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-health2 {
        padding: 35px 0;
    }

    .p4t-health2-container {
        padding: 0 25px;
    }

    .p4t-health2-header {
        margin-bottom: 25px;
    }

    .p4t-health2-header h2 {
        font-size: 1.9rem;
    }

    .p4t-health2-panel {
        padding: 25px 22px;
    }

    .p4t-health2-panel-grid,
    .p4t-health2-panel-grid.p4t-health2-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .p4t-health2-panel-text {
        gap: 14px;
    }

    .p4t-health2-below-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 24px;
        padding-top: 24px;
    }

    .p4t-health2-below-single {
        margin-top: 24px;
        padding-top: 24px;
        gap: 13px;
    }

    .p4t-health2-img {
        height: 260px;
    }

    .p4t-health2-why {
        padding: 26px 20px;
    }

    .p4t-health2-why h3 {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-health2 {
        padding: 30px 0;
    }

    .p4t-health2-container {
        padding: 0 20px;
    }

    .p4t-health2-header h2 {
        font-size: 1.65rem;
    }

    .p4t-health2-tab-btn span {
        display: none;
    }

    .p4t-health2-tab-btn {
        padding: 14px 18px;
        justify-content: center;
    }

    .p4t-health2-panel-text {
        gap: 12px;
    }

    .p4t-health2-img {
        height: 220px;
    }
}
/* ============================================
   P4T LIVELIHOODS SECTION
   Clean layout with image — same pattern as p4t-health
   ============================================ */

.p4t-livelihoods {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-livelihoods-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-livelihoods-header {
    margin-bottom: 35px;
}

.p4t-livelihoods-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-livelihoods-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-livelihoods-header h2 span {
    color: #F37021;
}

.p4t-livelihoods-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   BODY
   ============================================ */

.p4t-livelihoods-body {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Top row: text left, image right */
.p4t-livelihoods-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-livelihoods-top-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-livelihoods-top-text p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-livelihoods-top-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.p4t-livelihoods-top-img {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

/* Stats row — full width */
.p4t-livelihoods-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.p4t-livelihoods-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-livelihoods-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
    white-space: nowrap;
}

.p4t-livelihoods-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
    line-height: 1.4;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-livelihoods {
        padding: 40px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 40px;
    }

    .p4t-livelihoods-header {
        margin-bottom: 30px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 2.3rem;
    }

    .p4t-livelihoods-body {
        gap: 30px;
    }

    .p4t-livelihoods-top {
        gap: 35px;
    }

    .p4t-livelihoods-stats {
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-livelihoods {
        padding: 35px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 25px;
    }

    .p4t-livelihoods-header {
        margin-bottom: 28px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 1.9rem;
    }

    .p4t-livelihoods-body {
        gap: 25px;
    }

    .p4t-livelihoods-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p4t-livelihoods-top-text {
        gap: 16px;
    }

    .p4t-livelihoods-top-img {
        height: 260px;
    }

    .p4t-livelihoods-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-livelihoods {
        padding: 30px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 20px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 1.65rem;
    }
}


/* ============================================
   P4T LIVELIHOODS SECTION
   Clean layout with image — same pattern as p4t-health
   ============================================ */

.p4t-livelihoods {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-livelihoods-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-livelihoods-header {
    margin-bottom: 35px;
}

.p4t-livelihoods-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-livelihoods-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-livelihoods-header h2 span {
    color: #F37021;
}

.p4t-livelihoods-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   BODY
   ============================================ */

.p4t-livelihoods-body {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Top row: text left, image right */
.p4t-livelihoods-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-livelihoods-top-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-livelihoods-top-text p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-livelihoods-top-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.p4t-livelihoods-top-img {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

/* Stats row — full width */
.p4t-livelihoods-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.p4t-livelihoods-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-livelihoods-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
    white-space: nowrap;
}

.p4t-livelihoods-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
    line-height: 1.4;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-livelihoods {
        padding: 40px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 40px;
    }

    .p4t-livelihoods-header {
        margin-bottom: 30px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 2.3rem;
    }

    .p4t-livelihoods-body {
        gap: 30px;
    }

    .p4t-livelihoods-top {
        gap: 35px;
    }

    .p4t-livelihoods-stats {
        gap: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-livelihoods {
        padding: 35px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 25px;
    }

    .p4t-livelihoods-header {
        margin-bottom: 28px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 1.9rem;
    }

    .p4t-livelihoods-body {
        gap: 25px;
    }

    .p4t-livelihoods-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p4t-livelihoods-top-text {
        gap: 16px;
    }

    .p4t-livelihoods-top-img {
        height: 260px;
    }

    .p4t-livelihoods-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-livelihoods {
        padding: 30px 0;
    }

    .p4t-livelihoods-container {
        padding: 0 20px;
    }

    .p4t-livelihoods-header h2 {
        font-size: 1.65rem;
    }
}


/* ============================================
   P4T LIVELIHOODS2 SECTION
   Tabbed Livelihood Programmes — same pattern as p4t-health2
   ============================================ */

.p4t-livelihoods2 {
    background-color: #fafafa;
    padding: 50px 0;
}

.p4t-livelihoods2-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-livelihoods2-header {
    margin-bottom: 32px;
}

.p4t-livelihoods2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-livelihoods2-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-livelihoods2-header h2 span {
    color: #F37021;
}

.p4t-livelihoods2-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TAB NAVIGATION
   ============================================ */

.p4t-livelihoods2-tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.p4t-livelihoods2-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-livelihoods2-tab-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-livelihoods2-tab-btn i {
    font-size: 0.95rem;
}

.p4t-livelihoods2-tab-btn:hover {
    color: #F37021;
}

.p4t-livelihoods2-tab-btn.p4t-livelihoods2-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* ============================================
   TAB PANELS WRAPPER
   ============================================ */

.p4t-livelihoods2-panels {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.p4t-livelihoods2-panel {
    display: none;
    padding: 38px 45px;
}

.p4t-livelihoods2-panel.p4t-livelihoods2-panel-active {
    display: block;
}

/* ============================================
   PANEL GRID — IMAGE + TEXT
   ============================================ */

.p4t-livelihoods2-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.p4t-livelihoods2-panel-grid.p4t-livelihoods2-reverse {
    direction: rtl;
}

.p4t-livelihoods2-panel-grid.p4t-livelihoods2-reverse > * {
    direction: ltr;
}

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

.p4t-livelihoods2-img {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

/* ============================================
   SLIDESHOW
   ============================================ */

.p4t-livelihoods2-slideshow {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.p4t-livelihoods2-slides {
    position: relative;
    width: 100%;
    height: 380px;
}

.p4t-livelihoods2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.p4t-livelihoods2-slide.p4t-livelihoods2-slide-active {
    opacity: 1;
}

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

/* Slide controls */
.p4t-livelihoods2-slide-controls {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.p4t-livelihoods2-slide-prev,
.p4t-livelihoods2-slide-next {
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.75rem;
    color: #1a1a1a;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.p4t-livelihoods2-slide-prev:hover,
.p4t-livelihoods2-slide-next:hover {
    background-color: #F37021;
    color: #ffffff;
}

.p4t-livelihoods2-slide-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}

.p4t-livelihoods2-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.p4t-livelihoods2-dot.p4t-livelihoods2-dot-active {
    background-color: #ffffff;
    transform: scale(1.3);
}

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

.p4t-livelihoods2-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-livelihoods2-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.p4t-livelihoods2-panel-text h3 span {
    color: #F37021;
}

.p4t-livelihoods2-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 0;
}

.p4t-livelihoods2-panel-text p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-livelihoods2-panel-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat callout */
.p4t-livelihoods2-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-livelihoods2-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-livelihoods2-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
}

/* Teal highlight */
.p4t-livelihoods2-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 22px;
}

.p4t-livelihoods2-highlight p {
    font-size: 0.98rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.7;
}

/* Below single — full width, no columns */
.p4t-livelihoods2-below-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.p4t-livelihoods2-below-single p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

/* Horizontal pill list */
.p4t-livelihoods2-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-livelihoods2-list-horizontal li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

/* Regular list */
.p4t-livelihoods2-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.p4t-livelihoods2-list li {
    font-size: 0.97rem;
    line-height: 1.75;
    color: #555555;
    padding-left: 18px;
    position: relative;
}

.p4t-livelihoods2-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #F37021;
}

.p4t-livelihoods2-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* ============================================
   WHY IT WORKS — BOTTOM BANNER
   ============================================ */

.p4t-livelihoods2-why {
    margin-top: 32px;
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 16px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.p4t-livelihoods2-why::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -60px;
}

.p4t-livelihoods2-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-livelihoods2-why h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-livelihoods2-why p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 14px 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.p4t-livelihoods2-why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.p4t-livelihoods2-why-pills li {
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-livelihoods2 {
        padding: 40px 0;
    }

    .p4t-livelihoods2-container {
        padding: 0 40px;
    }

    .p4t-livelihoods2-header {
        margin-bottom: 28px;
    }

    .p4t-livelihoods2-header h2 {
        font-size: 2.3rem;
    }

    .p4t-livelihoods2-panel {
        padding: 32px 38px;
    }

    .p4t-livelihoods2-panel-grid {
        gap: 35px;
    }

    .p4t-livelihoods2-why {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-livelihoods2 {
        padding: 35px 0;
    }

    .p4t-livelihoods2-container {
        padding: 0 25px;
    }

    .p4t-livelihoods2-header {
        margin-bottom: 25px;
    }

    .p4t-livelihoods2-header h2 {
        font-size: 1.9rem;
    }

    .p4t-livelihoods2-panel {
        padding: 25px 22px;
    }

    .p4t-livelihoods2-panel-grid,
    .p4t-livelihoods2-panel-grid.p4t-livelihoods2-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .p4t-livelihoods2-panel-text {
        gap: 14px;
    }

    .p4t-livelihoods2-below-single {
        margin-top: 24px;
        padding-top: 24px;
        gap: 13px;
    }

    .p4t-livelihoods2-img {
        height: 260px;
    }

    .p4t-livelihoods2-slides {
        height: 260px;
    }

    .p4t-livelihoods2-why {
        padding: 26px 20px;
    }

    .p4t-livelihoods2-why h3 {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-livelihoods2 {
        padding: 30px 0;
    }

    .p4t-livelihoods2-container {
        padding: 0 20px;
    }

    .p4t-livelihoods2-header h2 {
        font-size: 1.65rem;
    }

    .p4t-livelihoods2-tab-btn span {
        display: none;
    }

    .p4t-livelihoods2-tab-btn {
        padding: 14px 18px;
        justify-content: center;
    }

    .p4t-livelihoods2-panel-text {
        gap: 12px;
    }

    .p4t-livelihoods2-img {
        height: 220px;
    }

    .p4t-livelihoods2-slides {
        height: 220px;
    }
}

/* ============================================
   P4T PROTECTION SECTION
   Clean layout with image — same pattern as p4t-livelihoods
   ============================================ */

.p4t-protection {
    background-color: #ffffff;
    padding: 50px 0;
}

.p4t-protection-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-protection-header {
    margin-bottom: 35px;
}

.p4t-protection-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-protection-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-protection-header h2 span {
    color: #F37021;
}

.p4t-protection-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   BODY
   ============================================ */

.p4t-protection-body {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Top row: image left, text right */
.p4t-protection-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.p4t-protection-top-img {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

.p4t-protection-top-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.p4t-protection-top-text p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
}

.p4t-protection-top-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Services row — full width */
.p4t-protection-services {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.p4t-protection-service-card {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.2);
    border-top: 3px solid #F37021;
    border-radius: 0 0 10px 10px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.p4t-protection-service-card i {
    font-size: 1.3rem;
    color: #F37021;
}

.p4t-protection-service-card span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-protection {
        padding: 40px 0;
    }

    .p4t-protection-container {
        padding: 0 40px;
    }

    .p4t-protection-header {
        margin-bottom: 30px;
    }

    .p4t-protection-header h2 {
        font-size: 2.3rem;
    }

    .p4t-protection-body {
        gap: 30px;
    }

    .p4t-protection-top {
        gap: 35px;
    }

    .p4t-protection-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-protection {
        padding: 35px 0;
    }

    .p4t-protection-container {
        padding: 0 25px;
    }

    .p4t-protection-header {
        margin-bottom: 28px;
    }

    .p4t-protection-header h2 {
        font-size: 1.9rem;
    }

    .p4t-protection-body {
        gap: 25px;
    }

    .p4t-protection-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .p4t-protection-top-text {
        gap: 16px;
    }

    .p4t-protection-top-img {
        height: 260px;
    }

    .p4t-protection-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-protection {
        padding: 30px 0;
    }

    .p4t-protection-container {
        padding: 0 20px;
    }

    .p4t-protection-header h2 {
        font-size: 1.65rem;
    }

    .p4t-protection-services {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .p4t-protection-service-card {
        padding: 16px 14px;
    }
}


/* ============================================
   P4T PROTECTION2 SECTION
   Tabbed Protection Programmes — same pattern as p4t-livelihoods2
   ============================================ */

.p4t-protection2 {
    background-color: #fafafa;
    padding: 50px 0;
}

.p4t-protection2-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-protection2-header {
    margin-bottom: 32px;
}

.p4t-protection2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.p4t-protection2-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.3px;
}

.p4t-protection2-header h2 span {
    color: #F37021;
}

.p4t-protection2-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 16px;
}

/* ============================================
   TAB NAVIGATION
   ============================================ */

.p4t-protection2-tab-nav {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.p4t-protection2-tab-nav::-webkit-scrollbar {
    display: none;
}

.p4t-protection2-tab-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 16px 22px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.p4t-protection2-tab-btn i {
    font-size: 0.95rem;
}

.p4t-protection2-tab-btn:hover {
    color: #F37021;
}

.p4t-protection2-tab-btn.p4t-protection2-tab-active {
    color: #F37021;
    border-bottom-color: #F37021;
}

/* ============================================
   TAB PANELS WRAPPER
   ============================================ */

.p4t-protection2-panels {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 14px 14px;
}

.p4t-protection2-panel {
    display: none;
    padding: 38px 45px;
}

.p4t-protection2-panel.p4t-protection2-panel-active {
    display: block;
}

/* ============================================
   PANEL GRID — IMAGE + TEXT
   ============================================ */

.p4t-protection2-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.p4t-protection2-panel-grid.p4t-protection2-reverse {
    direction: rtl;
}

.p4t-protection2-panel-grid.p4t-protection2-reverse > * {
    direction: ltr;
}

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

.p4t-protection2-img {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

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

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

.p4t-protection2-panel-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.p4t-protection2-panel-text h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.2px;
}

.p4t-protection2-panel-text h3 span {
    color: #F37021;
}

.p4t-protection2-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 0;
}

.p4t-protection2-panel-text p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

.p4t-protection2-panel-text p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Stat callout */
.p4t-protection2-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background-color: #fdf6f1;
    border-left: 3px solid #F37021;
    padding: 14px 20px;
    border-radius: 0 8px 8px 0;
}

.p4t-protection2-stat-number {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #F37021;
    line-height: 1;
}

.p4t-protection2-stat-label {
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
}

/* Teal highlight */
.p4t-protection2-highlight {
    background-color: #1A5F7A;
    border-radius: 10px;
    padding: 20px 22px;
}

.p4t-protection2-highlight p {
    font-size: 0.98rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.7;
}

/* Below single — full width */
.p4t-protection2-below-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #f0f0f0;
}

.p4t-protection2-below-single p {
    font-size: 0.98rem;
    line-height: 1.9;
    color: #555555;
    margin: 0;
}

/* Horizontal pill list */
.p4t-protection2-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-protection2-list-horizontal li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 30px;
}

/* ============================================
   WHY PROTECTION MATTERS — BOTTOM BANNER
   ============================================ */

.p4t-protection2-why {
    margin-top: 32px;
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    border-radius: 16px;
    padding: 38px;
    position: relative;
    overflow: hidden;
}

.p4t-protection2-why::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 50px solid rgba(255, 255, 255, 0.04);
    top: -80px;
    right: -60px;
}

.p4t-protection2-why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-protection2-why h3 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.p4t-protection2-why p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-protection2 {
        padding: 40px 0;
    }

    .p4t-protection2-container {
        padding: 0 40px;
    }

    .p4t-protection2-header {
        margin-bottom: 28px;
    }

    .p4t-protection2-header h2 {
        font-size: 2.3rem;
    }

    .p4t-protection2-panel {
        padding: 32px 38px;
    }

    .p4t-protection2-panel-grid {
        gap: 35px;
    }

    .p4t-protection2-why {
        padding: 32px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-protection2 {
        padding: 35px 0;
    }

    .p4t-protection2-container {
        padding: 0 25px;
    }

    .p4t-protection2-header {
        margin-bottom: 25px;
    }

    .p4t-protection2-header h2 {
        font-size: 1.9rem;
    }

    .p4t-protection2-panel {
        padding: 25px 22px;
    }

    .p4t-protection2-panel-grid,
    .p4t-protection2-panel-grid.p4t-protection2-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 24px;
    }

    .p4t-protection2-panel-text {
        gap: 14px;
    }

    .p4t-protection2-below-single {
        margin-top: 24px;
        padding-top: 24px;
        gap: 13px;
    }

    .p4t-protection2-img {
        height: 260px;
    }

    .p4t-protection2-why {
        padding: 26px 20px;
    }

    .p4t-protection2-why h3 {
        font-size: 1.3rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-protection2 {
        padding: 30px 0;
    }

    .p4t-protection2-container {
        padding: 0 20px;
    }

    .p4t-protection2-header h2 {
        font-size: 1.65rem;
    }

    .p4t-protection2-tab-btn span {
        display: none;
    }

    .p4t-protection2-tab-btn {
        padding: 14px 16px;
        justify-content: center;
    }

    .p4t-protection2-panel-text {
        gap: 12px;
    }

    .p4t-protection2-img {
        height: 220px;
    }
}

/* ============================================
   P4T TEAM & BOARD MEMBERS SECTION
   ============================================ */

.p4t-team-board-members {
    background-color: #ffffff;
    padding: 90px 0 50px;
}

.p4t-team-board-members-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-team-board-members-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p4t-team-board-members-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.p4t-team-board-members-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.3px;
}

.p4t-team-board-members-header h2 span {
    color: #F37021;
}

.p4t-team-board-members-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 22px;
}

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

.p4t-team-board-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.p4t-team-board-members-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f8f8f8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.p4t-team-board-members-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

/* Photo */
.p4t-team-board-members-card-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.p4t-team-board-members-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Overlay on hover */
.p4t-team-board-members-card-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 95, 122, 0.55) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.p4t-team-board-members-card:hover .p4t-team-board-members-card-photo::after {
    opacity: 1;
}

/* Info */
.p4t-team-board-members-card-info {
    padding: 22px 20px 24px;
    border-top: 3px solid transparent;
    transition: border-color 0.35s ease;
}

.p4t-team-board-members-card:hover .p4t-team-board-members-card-info {
    border-top-color: #F37021;
}

.p4t-team-board-members-card-name {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.p4t-team-board-members-card-name:hover {
    color: #F37021;
}

.p4t-team-board-members-card-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: #F37021;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 10px 0;
}


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

@media (max-width: 1199px) {
    .p4t-team-board-members-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .p4t-team-board-members {
        padding: 70px 0 40px;
    }

    .p4t-team-board-members-container {
        padding: 0 40px;
    }

    .p4t-team-board-members-header h2 {
        font-size: 2.3rem;
    }

    .p4t-team-board-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .p4t-team-board-members {
        padding: 55px 0 30px;
    }

    .p4t-team-board-members-container {
        padding: 0 25px;
    }

    .p4t-team-board-members-header h2 {
        font-size: 1.9rem;
    }

    .p4t-team-board-members-card-photo {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .p4t-team-board-members-container {
        padding: 0 20px;
    }

    .p4t-team-board-members-header h2 {
        font-size: 1.65rem;
    }

    .p4t-team-board-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .p4t-team-board-members-card-photo {
        height: 200px;
    }

    .p4t-team-board-members-card-info {
        padding: 16px 14px 18px;
    }

    .p4t-team-board-members-card-name {
        font-size: 0.95rem;
    }
}


/* ============================================
   P4T TEAM & BOARD MEMBERS SECTION
   ============================================ */

.p4t-management-team {
    background-color: #ffffff;
    padding: 50px 0 90px;
}

.p4t-management-team-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

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

.p4t-management-team-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p4t-management-team-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.p4t-management-team-header h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.3px;
}

.p4t-management-team-header h2 span {
    color: #F37021;
}

.p4t-management-team-header-line {
    width: 55px;
    height: 3px;
    background-color: #F37021;
    border-radius: 2px;
    margin-top: 22px;
}

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

.p4t-management-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.p4t-management-team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f8f8f8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.p4t-management-team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

/* Photo */
.p4t-management-team-card-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.p4t-management-team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Overlay on hover */
.p4t-management-team-card-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 95, 122, 0.55) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.p4t-management-team-card:hover .p4t-management-team-card-photo::after {
    opacity: 1;
}

/* Info */
.p4t-management-team-card-info {
    padding: 22px 20px 24px;
    border-top: 3px solid transparent;
    transition: border-color 0.35s ease;
}

.p4t-management-team-card:hover .p4t-management-team-card-info {
    border-top-color: #F37021;
}

.p4t-management-team-card-name {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 5px 0;
    line-height: 1.3;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.p4t-management-team-card-name:hover {
    color: #F37021;
}

.p4t-management-team-card-role {
    font-size: 0.82rem;
    font-weight: 700;
    color: #F37021;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 10px 0;
}


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

@media (max-width: 1199px) {
    .p4t-management-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .p4t-management-team {
        padding: 40px 0 70px;
    }

    .p4t-management-team-container {
        padding: 0 40px;
    }

    .p4t-management-team-header h2 {
        font-size: 2.3rem;
    }

    .p4t-management-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .p4t-management-team {
        padding: 30px 0 55px;
    }

    .p4t-management-team-container {
        padding: 0 25px;
    }

    .p4t-management-team-header h2 {
        font-size: 1.9rem;
    }

    .p4t-management-team-card-photo {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .p4t-management-team-container {
        padding: 0 20px;
    }

    .p4t-management-team-header h2 {
        font-size: 1.65rem;
    }

    .p4t-management-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .p4t-management-team-card-photo {
        height: 200px;
    }

    .p4t-management-team-card-info {
        padding: 16px 14px 18px;
    }

    .p4t-management-team-card-name {
        font-size: 0.95rem;
    }
}

/* ============================================
   P4T TEAM MEMBER PROFESSIONAL BIO
   Sticky portrait — text scrolls, image stays
   ============================================ */

.p4t-team-member-professional-bio {
    background-color: #ffffff;
    padding: 90px 0;
}

.p4t-team-member-professional-bio-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
}

/* ============================================
   TWO-COLUMN LAYOUT
   ============================================ */

.p4t-team-member-professional-bio-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: start;
}

/* ============================================
   LEFT — SCROLLABLE TEXT
   ============================================ */

.p4t-team-member-professional-bio-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Name & title block */
.p4t-team-member-professional-bio-identity {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid #eeeeee;
}

.p4t-team-member-professional-bio-role-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    align-self: flex-start;
}

.p4t-team-member-professional-bio-name {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 10px 0;
    letter-spacing: -0.4px;
}

.p4t-team-member-professional-bio-name span {
    color: #F37021;
}

.p4t-team-member-professional-bio-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1A5F7A;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Bio paragraphs */
.p4t-team-member-professional-bio-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p4t-team-member-professional-bio-body p {
    font-size: 1rem;
    line-height: 1.95;
    color: #555555;
    margin: 0;
    text-align: justify;
}

.p4t-team-member-professional-bio-body p strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Section subheadings within bio */
.p4t-team-member-professional-bio-subheading {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #F37021;
    margin: 12px 0 0 0;
}

/* Skills / tags row */
.p4t-team-member-professional-bio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.p4t-team-member-professional-bio-tags li {
    background-color: #fdf6f1;
    border: 1px solid rgba(243, 112, 33, 0.25);
    color: #1a1a1a;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 30px;
}

/* ============================================
   RIGHT — STICKY PORTRAIT
   ============================================ */

.p4t-team-member-professional-bio-portrait-wrap {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p4t-team-member-professional-bio-portrait {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.p4t-team-member-professional-bio-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Contact / social under portrait */
.p4t-team-member-professional-bio-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 24px;
    background-color: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 12px;
}

.p4t-team-member-professional-bio-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.p4t-team-member-professional-bio-contact-item:hover {
    color: #F37021;
}

.p4t-team-member-professional-bio-contact-item i {
    width: 34px;
    height: 34px;
    background-color: #F37021;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-team-member-professional-bio {
        padding: 70px 0;
    }

    .p4t-team-member-professional-bio-container {
        padding: 0 40px;
    }

    .p4t-team-member-professional-bio-grid {
        grid-template-columns: 1fr 380px;
        gap: 50px;
    }

    .p4t-team-member-professional-bio-name {
        font-size: 2.1rem;
    }

    .p4t-team-member-professional-bio-portrait-wrap {
        top: 80px;
    }
}

/* Mobile — stack vertically, no sticky */
@media (max-width: 767px) {
    .p4t-team-member-professional-bio {
        padding: 55px 0;
    }

    .p4t-team-member-professional-bio-container {
        padding: 0 25px;
    }

    .p4t-team-member-professional-bio-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* Portrait goes on top on mobile */
    .p4t-team-member-professional-bio-portrait-wrap {
        position: static;
        order: -1;
    }

    .p4t-team-member-professional-bio-portrait {
        aspect-ratio: 16 / 10;
    }

    .p4t-team-member-professional-bio-name {
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-team-member-professional-bio-container {
        padding: 0 20px;
    }

    .p4t-team-member-professional-bio-name {
        font-size: 1.55rem;
    }
}



/* ============================================
   HERO PAGES P4T MAIN
   Flexible hero for internal pages
   ============================================ */

.hero-pages-p4t-main {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #1a1a1a;
}

/* Background image */
.hero-pages-p4t-main-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-pages-p4t-main-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.85);
}

/* Overlay */
.hero-pages-p4t-main-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

/* Content */
.hero-pages-p4t-main-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 50px;
    max-width: 900px;
}

/* Breadcrumb / label */
.hero-pages-p4t-main-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-pages-p4t-main-label i {
    font-size: 0.85rem;
}

/* Main heading */
.hero-pages-p4t-main-title {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-pages-p4t-main-title span {
    color: #F37021;
}

/* Subtitle / description */
.hero-pages-p4t-main-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Decorative line under title */
.hero-pages-p4t-main-line {
    width: 80px;
    height: 4px;
    background-color: #F37021;
    margin: 0 auto 20px;
    border-radius: 2px;
}

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

/* Tablet */
@media (max-width: 991px) {
    .hero-pages-p4t-main {
        height: 420px;
    }

    .hero-pages-p4t-main-content {
        padding: 0 40px;
    }

    .hero-pages-p4t-main-title {
        font-size: 3rem;
    }

    .hero-pages-p4t-main-subtitle {
        font-size: 1.05rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-pages-p4t-main {
        height: 370px;
    }

    .hero-pages-p4t-main-content {
        padding: 0 25px;
    }

    .hero-pages-p4t-main-title {
        font-size: 2.2rem;
    }

    .hero-pages-p4t-main-subtitle {
        font-size: 0.98rem;
    }

    .hero-pages-p4t-main-line {
        width: 60px;
        height: 3px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .hero-pages-p4t-main {
        height: 320px;
    }

    .hero-pages-p4t-main-content {
        padding: 0 20px;
    }

    .hero-pages-p4t-main-title {
        font-size: 1.85rem;
    }

    .hero-pages-p4t-main-subtitle {
        font-size: 0.92rem;
    }
}




/* ============================================
   P4T FOOTER - 3 COLUMN DESIGN
   ============================================ */
.p4t-footer {
  background-color: #000000; /* Dark gray background */
  color: #ffffff;
  padding: 50px 0 0;
}

.p4t-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr; /* 3 columns with dividers */
  gap: 40px;
  align-items: start;
  padding: 0 50px 40px;
}

/* Vertical Dividers */
.p4t-footer-divider {
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  min-height: 200px;
}

/* Footer Columns */
.p4t-footer-column {
  padding: 0 20px;
}

.p4t-footer-column h4 {
  color: #F37021; /* Orange headings */
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 600;
}

.p4t-footer-column p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.p4t-footer-column a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.p4t-footer-column a:hover {
  color: #F37021; /* Orange hover */
}

/* Logo Column */
.p4t-footer-logo-column {
  text-align: center;
}

.p4t-footer-logo {
  margin-bottom: 25px;
}

.p4t-footer-logo img {
  max-width: 180px;
  height: auto;
}

.p4t-connect-title {
  color: #F37021; /* Orange */
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Social Media Links */
.p4t-social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.p4t-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.p4t-social-link:hover {
  background-color: #F37021; /* Orange hover */
  color: #FFFFFF !important; /* Dark icon on orange background */
  transform: translateY(-3px);
}

/* Footer Bottom - Copyright */
.p4t-footer-bottom {
  background-color: var(--p4t-primary-orange); /* Orange background */
  padding: 7px 50px;
  text-align: center;
  color: #ffffff;
  font-size: 0.8rem !important;
  width: 100%;
}

.p4t-footer-bottom p {
  margin: 0;
  color: #ffffff;
  font-size: 1rem !important;
}

.p4t-footer-bottom strong {
  font-weight:800;
}

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

/* Tablets and smaller desktops */
@media (max-width: 992px) {
  .p4t-footer {
    padding: 40px 0 0;
  }
  
  .p4t-footer-content {
    grid-template-columns: 1fr 2px 1fr; /* 2 columns on tablet */
    gap: 30px;
    padding: 0 30px 40px;
  }
  
  .p4t-footer-divider:last-of-type {
    display: none; /* Hide last divider on tablet */
  }
  
  .p4t-footer-logo-column {
    grid-column: 1 / -1; /* Logo spans full width on tablet */
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .p4t-footer-bottom {
    padding: 10px 30px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .p4t-footer {
    padding: 30px 0 0;
  }
  
  .p4t-footer-content {
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: 30px;
    padding: 0 25px 30px;
  }
  
  .p4t-footer-divider {
    display: none; /* Hide all dividers on mobile */
  }
  
  .p4t-footer-column {
    padding: 0;
    text-align: center;
  }
  
  .p4t-footer-column h4 {
    font-size: 1.2rem;
  }
  
  .p4t-footer-logo-column {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
  }
  
  .p4t-footer-bottom {
    padding: 10px 25px;
    font-size: 0.75rem;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .p4t-footer-content {
    padding: 0 20px 25px;
  }
  
  .p4t-footer-bottom {
    padding: 8px 20px;
  }
}


/* ============================================
   P4T WHY WE ALWAYS SUCCEED - STANDALONE SECTION
   Full-width banner that connects seamlessly with next section
   ============================================ */

.p4t-why-always-succeed-main {
    background: linear-gradient(135deg, #1A5F7A 0%, #0d3d4f 100%);
    padding: 50px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.p4t-why-always-succeed-main::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 55px solid rgba(255, 255, 255, 0.04);
    top: -100px;
    right: -80px;
}

.p4t-why-always-succeed-main::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 40px solid rgba(255, 255, 255, 0.04);
    bottom: -60px;
    left: -40px;
}

.p4t-why-always-succeed-container {
    max-width: 100%;
    width: 100%;
    padding: 0 50px;
    position: relative;
    z-index: 1;
}

.p4t-why-always-succeed-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(243, 112, 33, 0.2);
    border: 1px solid rgba(243, 112, 33, 0.5);
    color: #F37021;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.p4t-why-always-succeed-label i {
    font-size: 0.9rem;
}

.p4t-why-always-succeed-main h2 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 18px;
    max-width: 1200px;
    letter-spacing: -0.2px;
}

.p4t-why-always-succeed-main p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 1200px;
}

.p4t-why-always-succeed-main p strong {
    color: #ffffff;
    font-weight: 700;
}

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

/* Tablet */
@media (max-width: 991px) {
    .p4t-why-always-succeed-main {
        padding: 40px 0;
    }

    .p4t-why-always-succeed-container {
        padding: 0 40px;
    }

    .p4t-why-always-succeed-main h2 {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .p4t-why-always-succeed-main p {
        font-size: 1rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-why-always-succeed-main {
        padding: 35px 0;
    }

    .p4t-why-always-succeed-container {
        padding: 0 25px;
    }

    .p4t-why-always-succeed-label {
        margin-bottom: 16px;
    }

    .p4t-why-always-succeed-main h2 {
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    .p4t-why-always-succeed-main p {
        font-size: 0.98rem;
        line-height: 1.8;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-why-always-succeed-main {
        padding: 30px 0;
    }

    .p4t-why-always-succeed-container {
        padding: 0 20px;
    }

    .p4t-why-always-succeed-main h2 {
        font-size: 1.35rem;
    }

    .p4t-why-always-succeed-main p {
        font-size: 0.95rem;
    }
}



/* ============================================
   P4T HERO SLIDER 2
   Clean, professional hero section with slideshow
   No text overlay - people's faces are clearly visible
   ============================================ */

.p4t-hero-slider2 {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background-color: #f5f5f5;
}

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

.p4t-hero-slider2-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.p4t-hero-slider2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.p4t-hero-slider2-slide.p4t-hero-slider2-active {
    opacity: 1;
    z-index: 1;
}

.p4t-hero-slider2-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Subtle gradient overlay for better text readability without hiding faces */
.p4t-hero-slider2-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
}

/* ============================================
   CONTENT AREA - POSITIONED AT BOTTOM
   ============================================ */

.p4t-hero-slider2-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 50px 60px 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.3) 70%, transparent);
}

.p4t-hero-slider2-content-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 80px;
}

.p4t-hero-slider2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #F37021;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(243, 112, 33, 0.4);
}

.p4t-hero-slider2-badge i {
    font-size: 0.95rem;
}

.p4t-hero-slider2-description {
    font-size: 1.3rem;
    line-height: 1.65;
    color: #ffffff;
    margin: 0;
    max-width: 850px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.p4t-hero-slider2-actions {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.p4t-hero-slider2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.p4t-hero-slider2-btn-primary {
    background-color: #F37021;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(243, 112, 33, 0.4);
}

.p4t-hero-slider2-btn-primary:hover {
    background-color: #E85D04;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(243, 112, 33, 0.5);
    color: #ffffff;
}

.p4t-hero-slider2-btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.p4t-hero-slider2-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff;
}

.p4t-hero-slider2-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.p4t-hero-slider2-btn:hover i {
    transform: translateX(4px);
}

/* ============================================
   NAVIGATION CONTROLS
   ============================================ */

.p4t-hero-slider2-controls {
    position: absolute;
    bottom: 60px;
    right: 50px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.p4t-hero-slider2-arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 1rem;
}

.p4t-hero-slider2-arrow:hover {
    background-color: #F37021;
    border-color: #F37021;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(243, 112, 33, 0.4);
}

.p4t-hero-slider2-dots {
    display: flex;
    gap: 10px;
}

.p4t-hero-slider2-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.p4t-hero-slider2-dot.p4t-hero-slider2-dot-active {
    background-color: #F37021;
    border-color: #F37021;
    transform: scale(1.3);
}

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

/* Large Tablet */
@media (max-width: 1200px) {
    .p4t-hero-slider2-description {
        font-size: 1.15rem;
        max-width: 750px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .p4t-hero-slider2 {
        height: 75vh;
        min-height: 550px;
    }

    .p4t-hero-slider2-content {
        padding: 0 40px 50px 40px;
    }

    .p4t-hero-slider2-content-inner {
        padding-top: 60px;
    }

    .p4t-hero-slider2-description {
        font-size: 1.1rem;
        max-width: 650px;
    }

    .p4t-hero-slider2-controls {
        bottom: 50px;
        right: 40px;
    }

    .p4t-hero-slider2-actions {
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .p4t-hero-slider2 {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }

    .p4t-hero-slider2-content {
        padding: 0 25px 40px 25px;
    }

    .p4t-hero-slider2-content-inner {
        gap: 16px;
        padding-top: 50px;
    }

    .p4t-hero-slider2-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }

    .p4t-hero-slider2-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .p4t-hero-slider2-actions {
        gap: 12px;
    }

    .p4t-hero-slider2-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .p4t-hero-slider2-controls {
        bottom: 40px;
        right: 25px;
        gap: 12px;
    }

    .p4t-hero-slider2-arrow {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .p4t-hero-slider2-dot {
        width: 10px;
        height: 10px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .p4t-hero-slider2 {
        height: 65vh;
        min-height: 480px;
    }

    .p4t-hero-slider2-content {
        padding: 0 20px 35px 20px;
    }

    .p4t-hero-slider2-description {
        font-size: 0.95rem;
    }

    .p4t-hero-slider2-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .p4t-hero-slider2-controls {
        bottom: 35px;
        right: 20px;
    }
}

/* Landscape Mobile */
@media (max-width: 991px) and (max-height: 500px) {
    .p4t-hero-slider2 {
        height: 100vh;
        min-height: auto;
    }

    .p4t-hero-slider2-content {
        padding: 0 25px 30px 25px;
    }

    .p4t-hero-slider2-content-inner {
        padding-top: 40px;
    }

    .p4t-hero-slider2-description {
        font-size: 0.95rem;
    }
}