/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(220, 68%, 54%);
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --title-colors: #fff;
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  --head-color: #208245;
  --main-color: #2ef115;
    --secondary-color: #5f85d8; 
    /* --text-color:#f6f4f0; */
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 8px hsla(220, 68%, 12%, 0.1);
  background-color: var(--head-color);
  z-index: var(--z-fixed);
}
/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  margin-top: 10px;
}
.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  color: var(--title-colors);
  font-weight: var(--font-semi-bold);
  transition: color 0.3s;
}
.nav__logo i {
  font-size: 1.25rem;
}
.nav__logo:hover {
  color: var(--first-color);
}
.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}
.nav__toggle-menu, .nav__toggle-close {
  font-size: 1.25rem;
  color: var(--title-colors);
  position: absolute;
  display: grid;
  place-items: center;
  inset: 0;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}
.nav__toggle-close {
  opacity: 0;
}
@media screen and (max-width: 1118px) {
  .nav__menu {
    background-color: var(--body-color);
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    padding-block: 1.5rem 4rem;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0.5rem;
  }
  .nav__menu::-webkit-scrollbar-thumb {
    background-color: hsl(220, 12%, 70%);
  }
  
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}
.nav__link:hover {
  background-color: var(--first-color-lighten);
}
 .nav__button {
  display: inline-block;
  padding: 8px;
  background-color: #1eff00; /* Primary blue */
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  width: 100px;
  height: 40px;
  margin-left: 20px;
  margin-top: 20px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}

.nav__button:hover {
  background-color: #42b300; /* Darker blue on hover */
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__toggle-menu {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__toggle-close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__button {
  cursor: pointer;
}
.dropdown__arrow {
  font-size: 1.5rem;
  font-weight: initial;
  transition: transform 0.4s;
}
.dropdown__content, .dropdown__group, .dropdown__list {
  display: grid;
}
.dropdown__container {
  background-color: var(--first-color-lighten);
  height: 0;
  overflow: hidden;
  transition: height 0.4s;
}
.dropdown__content {
  row-gap: 1.75rem;
}
.dropdown__group {
  padding-left: 2.5rem;
  row-gap: 0.5rem;
}
.dropdown__group:first-child {
  margin-top: 1.25rem;
}
.dropdown__group:last-child {
  margin-bottom: 1.25rem;
}
.dropdown__icon i {
  font-size: 1.25rem;
  color: var(--first-color);
}
.dropdown__title {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.dropdown-title span{
  display: inline-flex;
  font-size: 25px;
}
.dropdown-title {
  display: flex;
  align-items: center; /* vertically center text and icon */
  gap: 4px;
  font-size: 30px; /* optional: space between text and icon */
}
.dropdown__list {
  row-gap: 0.25rem;
}
/* .dropdown__group .shaam li{
    width: 100%;
}
.sham li a{
  font-size: 18px;
  row-gap: 0.5rem;
} */
.dropdown__link {
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  transition: color 0.3s;
}
.dropdown__link:hover {
  color: var(--title-color);
}


/* Rotate dropdown icon */
.show-dropdown .dropdown__arrow {
  transform: rotate(180deg);
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 300px) {
  .dropdown__group {
    padding-left: 1.5rem;
  }
}
/* For large devices */
@media screen and (min-width: 1118px) {
  /* Nav */
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
    
  }
 
  .nav__link{
color: var(--title-colors);
  }
  .nav__button {
  display: inline-block;
  padding: 8px;
  background-color: #1eff00; /* Primary blue */
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  width: 100px;
  height: 40px;
  margin-top: 25px;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}

.nav__button:hover {
  background-color: #42b300; /* Darker blue on hover */
}
  .nav__toggle {
    display: none;
  }
  .nav__list {
    display: flex;
    column-gap: 2.5rem;
    height: 100%;
  }
  .nav li {
    display: flex;
  }
  .nav__link {
    padding: 0;
  }
  .nav__link:hover {
    background-color: initial;
  }
  /* Dropdown */
  .dropdown__button {
    column-gap: 0.25rem;
    pointer-events: none;
  }
  .dropdown__container {
    height: max-content;
    position: absolute;
    left: 0;
    right: 0;
    top: 6.5rem;
    background-color: var(--body-color);
    box-shadow: 0 6px 8px hsla(220, 68%, 12%, 0.05);
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .dropdown__content {
    grid-template-columns: repeat(4, max-content);
    column-gap: 6rem;
    max-width: 1120px;
    margin-inline: auto;
  }
  .dropdown__group {
    padding: 1.7rem 0;
    align-content: baseline;
    row-gap: 1.25rem;
  }
  .dropdown__group:first-child, .dropdown__group:last-child {
    margin: 0;
  }
  .dropdown__list {
    row-gap: 0.75rem;
  }
  .dropdown__list .sham{
    width: 100%;
  }
  .sham li{
    margin-bottom: 25px;
  }
  .sham li a{
    font-size: 20px;
  }
  .dropdown__icon {
    width: 60px;
    height: 60px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
  }
  .dropdown__icon i {
    font-size: 1rem;
  }
  .dropdown__title {
    font-size: var(--normal-font-size);
  }
  .dropdown__link {
    font-size: var(--small-font-size);
  }
  .dropdown__link:hover {
    color: var(--first-color);
  }
  .dropdown__item {
    cursor: pointer;
  }
  .dropdown__item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
  .dropdown__item:hover > .dropdown__container {
    top: 5.5rem;
    opacity: 1;
    pointer-events: initial;
    cursor: initial;
  }

}
/* image logo header */
/* ====== HEADER LOGO ====== */
.nav__logo {
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1000;
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__logo img {
    width: clamp(60px, 8vw, 80px);
    height: clamp(50px, 7vw, 70px);
    border-radius: 40%;
    object-fit: cover;
    object-position: center;
    border: 3px solid #42b300;
    box-shadow: 0 4px 15px rgba(66, 179, 0, 0.2);
    transition: all 0.3s ease;
    display: block;
}

.nav__logo:hover img {
    border-color: #ff0000;
    box-shadow: 0 6px 20px rgba(66, 179, 0, 0.3);
    transform: rotate(5deg);
}

/* Logo pulse animation on page load */
@keyframes logoPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.nav__logo img {
    animation: logoPulse 2s ease-in-out 1;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    .nav__logo img {
        width: clamp(70px, 7vw, 85px);
        height: clamp(70px, 7vw, 85px);
        border-width: 3px;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .nav__logo img {
        width: 70px;
        height: 70px;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .nav__logo img {
        width: 90px;
        height: 80px;
        border-width: 4px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .nav__logo {
        position: relative;
        z-index: 1001; /* Ensure logo stays above mobile menu */
    }
    
    .nav__logo img {
        width: 70px;
        height: 70px;
        border-width: 2px;
        box-shadow: 0 3px 10px rgba(66, 179, 0, 0.2);
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .nav__logo img {
        width: 55px;
        height: 55px;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .nav__logo img {
        width: 50px;
        height: 50px;
    }
}

/* When mobile menu is open */
@media screen and (max-width: 1118px) {
    .show-menu .nav__logo {
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
    }
    
    .show-menu .nav__logo img {
        background: white;
        padding: 3px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .nav__logo img {
        border-color: #52d300;
        box-shadow: 0 4px 15px rgba(82, 211, 0, 0.3);
    }
    
    .nav__logo:hover img {
        border-color: #ff5555;
        box-shadow: 0 6px 20px rgba(82, 211, 0, 0.4);
    }
    
    /* When mobile menu is open in dark mode */
    @media screen and (max-width: 1118px) {
        .show-menu .nav__logo img {
            background: #2d2d2d;
        }
    }
}



/* Accessibility: Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .nav__logo img {
        animation: none;
        transition: none;
    }
    
    .nav__logo:hover img {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .nav__logo img {
        border: 3px solid #000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }
    
    .nav__logo:hover img {
        border-color: #f00;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .nav__logo:hover img {
        transform: none;
        border-color: #42b300;
    }
    
    .nav__logo:active img {
        transform: scale(0.95);
        border-color: #ff0000;
    }
}

/* ============================================
   HOME SECTION - PROFESSIONAL NGO WEBSITE
   Green & Orange Theme | Clean & Modern
   Senior Developer Production CSS v4.0
   ============================================ */

/* ============================================
   SECTION CONTAINER - Full Width Layout
   ============================================ */

.section-container-home {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  margin-top: 0;
  position: relative;
  min-height: 100vh;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%),
    url('https://images.unsplash.com/photo-1511895426328-dc8714191300?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Professional Top Border - Enhanced Orange Presence */
.section-container-home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    #f57c00 0%, 
    #ff9800 30%, 
    #2e7d32 60%, 
    #4caf50 100%);
  z-index: 2;
}

/* Subtle Background Pattern */
.section-container-home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(245, 124, 0, 0.04) 0%, transparent 4%),
    radial-gradient(circle at 80% 70%, rgba(46, 125, 50, 0.03) 0%, transparent 4%);
  background-size: 70px 70px;
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   MAIN CONTAINER - 90px Top Padding
   ============================================ */

.home-main-container {
  max-width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 90px clamp(20px, 5vw, 80px) 90px clamp(20px, 5vw, 80px);
}

/* ============================================
   ORGANIZATION INFO CARD - Enhanced Readability
   ============================================ */

.home-left-side {
    margin-top: 30px;
  border-radius: 32px;
  box-shadow: 
    0 20px 40px -12px rgba(0, 0, 0, 0.1),
    0 4px 12px -4px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9); 
  padding: 50px 60px;
  width: 100%;
  max-width: 100%;
  transition: box-shadow 0.3s ease;
  position: relative;
}

.home-left-side:hover {
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.15);
}

/* Premium Title Styling - ORANGE THEME */
.home-left-side h2 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  background: linear-gradient(135deg, #e65100 0%, #f57c00 40%, #ff9800 70%, #f57c00 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
  padding-bottom: 20px;
  position: relative;
  letter-spacing: -0.01em;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Decorative Underline - Orange Gradient */
.home-left-side h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f57c00, #ff9800, #f57c00);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.home-left-side:hover h2::after {
  width: 120px;
}

/* Paragraph Styling - Maximum Readability */
.home-left-side p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 24px;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.home-left-side p:last-of-type {
  margin-bottom: 35px;
}

/* First Paragraph - Enhanced with Orange Accent */
.home-left-side p:first-of-type {
  font-weight: 500;
  color: #1f2937;
  border-left: 4px solid #f57c00;
  padding-left: 20px;
  font-size: 1.1rem;
  line-height: 1.75;
}

/* Professional Stats Bar - Green remains */
.home-stats {
  display: flex;
  gap: 50px;
  margin: 35px 0 40px;
  padding: 28px 0;
  border-top: 1px solid rgba(46, 125, 50, 0.15);
  border-bottom: 1px solid rgba(46, 125, 50, 0.15);
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  text-align: left;
  position: relative;
  padding: 5px 0;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, rgba(46, 125, 50, 0.2), transparent);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2e7d32;
  display: block;
  line-height: 1.2;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* ============================================
   DONATE BUTTON - Enhanced Orange Theme
   ============================================ */

.nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #f57c00, #e65100);
  color: white !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  padding: 16px 42px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.3);
  width: fit-content;
  min-width: 250px;
  text-transform: uppercase;
}

/* Hover Effect - Smooth Transition */
.nav__button:hover {
  background: linear-gradient(135deg, #e65100, #bf360c);
  gap: 16px;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230, 81, 0, 0.4);
  letter-spacing: 2px;
}

.nav__button:active {
  transform: translateY(0);
}

/* Focus State */
.nav__button:focus-visible {
  outline: 3px solid #f57c00;
  outline-offset: 4px;
  border-radius: 50px;
}


/* ============================================
   RESPONSIVE DESIGN - Maintains 90px Top Padding
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1440px) {
  .home-main-container {
    padding: 90px 100px;
  }
  
  .home-left-side {
    padding: 60px 70px;
  }
  
  .home-left-side h2 {
    font-size: 2.8rem;
  }
  
  .home-left-side p {
    font-size: 1.1rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .nav__button {
    padding: 18px 50px;
    min-width: 280px;
    font-size: 1.05rem;
  }
}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .home-main-container {
    padding: 90px 70px;
  }
  
  .home-left-side {
    padding: 50px 60px;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media screen and (max-width: 1199px) {
  .home-main-container {
    padding: 90px 50px;
  }
  
  .home-left-side {
    padding: 45px 50px;
  }
  
  .home-left-side h2 {
    font-size: 2.2rem;
  }
  
  .home-stats {
    gap: 40px;
  }
  
  .stat-item:not(:last-child)::after {
    right: -20px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media screen and (max-width: 991px) {
  .section-container-home {
    background-attachment: scroll;
    min-height: auto;
  }
  
  .home-main-container {
    padding: 90px 35px;
  }
  
  .home-left-side {
    padding: 40px 45px;
    border-radius: 28px;
  }
  
  .home-left-side h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    padding-bottom: 18px;
  }
  
  .home-left-side h2::after {
    width: 70px;
  }
  
  .home-left-side p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 20px;
  }
  
  .home-left-side p:first-of-type {
    font-size: 1.05rem;
    padding-left: 18px;
  }
  
  .home-stats {
    gap: 30px;
    margin: 30px 0 35px;
    padding: 25px 0;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .nav__button {
    padding: 14px 38px;
    min-width: 230px;
  }
}

/* Mobile Landscape (576px - 767px) */
@media screen and (max-width: 767px) {
  .home-main-container {
    padding: 90px 25px;
  }
  
  .home-left-side {
    padding: 35px 35px;
    border-left-width: 4px;
    border-radius: 24px;
  }
  
  .home-left-side h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }
  
  .home-left-side h2::after {
    width: 60px;
    height: 3px;
  }
  
  .home-left-side p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  
  .home-left-side p:first-of-type {
    font-size: 1rem;
    padding-left: 16px;
    border-left-width: 3px;
  }
  
  .home-left-side p:last-of-type {
    margin-bottom: 28px;
  }
  
  .home-stats {
    gap: 25px;
    margin: 25px 0 30px;
    padding: 20px 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .stat-item:not(:last-child)::after {
    display: none;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .nav__button {
    padding: 13px 32px;
    min-width: 210px;
    font-size: 0.9rem;
  }
  
  .cta-secondary {
    padding: 13px 28px;
    font-size: 0.9rem;
  }
  
  .home-cta {
    margin-top: 30px;
  }
}

/* Mobile Portrait (320px - 575px) */
@media screen and (max-width: 575px) {
  .home-main-container {
    padding: 90px 16px;
  }
  
  .home-left-side {
    padding: 28px 24px;
    border-radius: 20px;
    border-left-width: 3px;
  }
  
  .home-left-side h2 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
  
  .home-left-side h2::after {
    width: 50px;
    height: 3px;
  }
  
  .home-left-side p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  
  .home-left-side p:first-of-type {
    font-size: 0.95rem;
    padding-left: 14px;
  }
  
  .home-left-side p:last-of-type {
    margin-bottom: 24px;
  }
  
  .home-stats {
    gap: 20px;
    margin: 22px 0 25px;
    padding: 18px 0;
    flex-direction: column;
  }
  
  .stat-item {
    padding: 8px 0;
  }
  
  .stat-number {
    font-size: 1.4rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .nav__button {
    width: 100%;
    padding: 12px 24px;
    justify-content: center;
    min-width: auto;
    font-size: 0.85rem;
  }
  
  .home-cta {
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }
  
  .cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* Extra Small Devices */
@media screen and (max-width: 380px) {
  .home-main-container {
    padding: 90px 12px;
  }
  
  .home-left-side {
    padding: 22px 18px;
    border-radius: 18px;
  }
  
  .home-left-side h2 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .home-left-side h2::after {
    width: 40px;
    height: 2px;
  }
  
  .home-left-side p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  
  .home-left-side p:first-of-type {
    font-size: 0.9rem;
    padding-left: 12px;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
  .section-container-home {
    min-height: auto;
  }
  
  .home-main-container {
    padding: 90px 40px;
  }
  
  .home-left-side {
    padding: 30px 35px;
  }
  
  .home-left-side p {
    margin-bottom: 14px;
  }
  
  .home-left-side p:last-of-type {
    margin-bottom: 20px;
  }
  
  .home-stats {
    margin: 20px 0 25px;
    padding: 15px 0;
  }
  
  .nav__button {
    padding: 10px 30px;
  }
}

/* ============================================
   READABILITY ENHANCEMENTS
   ============================================ */

/* Better text contrast on all devices */
.home-left-side p {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improved line heights for readability */
.home-left-side h2,
.home-left-side p,
.stat-number,
.stat-label {
  text-rendering: optimizeLegibility;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus Visible */
.nav__button:focus-visible,
.cta-secondary:focus-visible {
  outline: 3px solid #f57c00;
  outline-offset: 4px;
  border-radius: 50px;
}

.home-left-side:focus-within {
  outline: 2px solid #f57c00;
  outline-offset: 3px;
  border-radius: 32px;
}

/* High Contrast */
@media (prefers-contrast: high) {
  .home-left-side {
    border: 2px solid #f57c00;
    background: white;
    backdrop-filter: none;
  }
  
  .nav__button {
    background: #e65100;
    color: white !important;
  }
  
  .home-left-side h2 {
    color: #e65100;
    background: none;
    -webkit-text-fill-color: #e65100;
  }
  
  .stat-number {
    color: #2e7d32;
  }
}

/* ACTIVITIES SECTION */
/* ============================================
   ACTIVITIES SECTION - MASTER CONTAINER
   ============================================ */

.section-container-activities {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.section-container-activities::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-activities::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   RIGHT SIDE - Activities Container
   ============================================ */

.home-right-side {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION HEADER
   ============================================ */

.activities-section-header {
  margin-bottom: 40px;
  text-align: center;
}

.activities-section-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  position: relative;
  display: inline-block;
  letter-spacing: -0.02em;
}

.activities-section-header h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  border-radius: 4px;
}

/* ============================================
   ACTIVITIES LAYOUT - 4 Columns, 3 Rows GRID
   ============================================ */

.activities-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 25px;
  min-height: 600px;
}

/* ============================================
   FEATURED ACTIVITY - 2 Columns × 2 Rows Span
   ============================================ */

.featured-activity {
  grid-column: span 2;
  grid-row: span 2;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(66, 179, 0, 0.06);
}

.featured-activity:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(66, 179, 0, 0.12);
  border-color: rgba(66, 179, 0, 0.15);
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: linear-gradient(135deg, #42b300, #2e7d32);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(66, 179, 0, 0.3);
}

/* Featured Image */
.featured-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-activity:hover .featured-image img {
  transform: scale(1.05);
}

/* ============================================
   FEATURED CONTENT - MINIMAL MARGINS
   ============================================ */

.featured-content {
  padding: 24px 28px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #ffffff;
}

.featured-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.featured-description {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 4px 0 0 0;
  opacity: 0.9;
}

/* Date paragraph - removes extra spacing */
.featured-description:last-of-type {
  margin: 2px 0 0 0;
}

.featured-date {
  font-size: 0.85rem;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.featured-date::before {
  content: '📅';
  font-size: 0.9rem;
}

.featured-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #42b300, #2e7d32);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 4px 15px rgba(66, 179, 0, 0.2);
  margin: 6px 0 0 0;
}

.featured-read-more:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(66, 179, 0, 0.35);
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: white;
  gap: 12px;
}

.featured-read-more::after {
  content: '→';
  transition: transform 0.3s ease;
}

.featured-read-more:hover::after {
  transform: translateX(4px);
}

/* ============================================
   ACTIVITIES LIST - Right Side Grid
   ============================================ */

.activities-list {
  grid-column: span 2;
  grid-row: span 2;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(66, 179, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activities-list:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(66, 179, 0, 0.12);
  border-color: rgba(66, 179, 0, 0.15);
}

/* List Header */
.list-header {
  padding: 24px 28px 16px;
  border-bottom: 2px solid rgba(66, 179, 0, 0.08);
  flex-shrink: 0;
}

.list-header h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-header h4::before {
  content: '📋';
  font-size: 1.2rem;
}

.list-header h4::after {
  content: '';
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(66, 179, 0, 0.2), transparent);
  margin-left: 12px;
}

/* ============================================
   LIST ITEMS - NORMAL DISPLAY (NO SCROLL)
   ============================================ */

.list-items {
  flex: 1;
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: visible;
}

/* Individual Activity List Item */
.activity-list-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(248, 250, 252, 0.5);
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  align-items: center;
  min-height: 85px;
}

.activity-list-item:hover {
  background: rgba(66, 179, 0, 0.04);
  border-color: rgba(66, 179, 0, 0.1);
  transform: translateX(6px);
}

/* List Item Image */
.list-item-image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}

.list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-list-item:hover .list-item-image img {
  transform: scale(1.08);
}

/* List Item Content */
.list-item-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.list-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-item-date {
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
}

.list-item-date::before {
  content: '📅';
  font-size: 0.7rem;
}

.list-item-link {
  font-size: 0.85rem;
  color: #42b300;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s ease;
  margin-top: 2px;
}

.list-item-link:hover {
  color: #f57c00;
  gap: 8px;
}

/* No Activities State */
.no-activities,
.no-featured {
  padding: 40px 20px;
  text-align: center;
  color: #9ca3af;
}

.no-activities p,
.no-featured p {
  font-size: 1rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-activities {
    padding: 100px 60px;
  }
  
  .activities-layout {
    gap: 30px;
    min-height: 700px;
  }
  
  .featured-image {
    height: 340px;
  }
  
  .featured-content {
    padding: 28px 34px 30px;
  }
  
  .featured-title {
    font-size: 2.2rem;
  }
  
  .featured-description {
    font-size: 1.05rem;
    margin: 6px 0 0 0;
  }
  
  .featured-date {
    font-size: 0.9rem;
  }
  
  .featured-read-more {
    padding: 12px 30px;
    font-size: 1rem;
    margin: 8px 0 0 0;
  }
  
  .list-items {
    padding: 20px 24px 24px;
    gap: 12px;
  }
  
  .activity-list-item {
    padding: 18px 24px;
    min-height: 95px;
  }
  
  .list-item-image {
    width: 80px;
    height: 80px;
  }
  
  .list-item-title {
    font-size: 1.05rem;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .activities-layout {
    gap: 22px;
  }
  
  .featured-image {
    height: 240px;
  }
  
  .featured-content {
    padding: 22px 24px 24px;
  }
  
  .featured-title {
    font-size: 1.5rem;
  }
  
  .featured-description {
    font-size: 0.95rem;
    margin: 4px 0 0 0;
  }
  
  .featured-read-more {
    padding: 9px 22px;
    font-size: 0.85rem;
    margin: 5px 0 0 0;
  }
  
  .list-items {
    padding: 14px 18px 18px;
    gap: 8px;
  }
  
  .activity-list-item {
    padding: 14px 18px;
    min-height: 80px;
  }
}

/* ============================================
   TABLET LANDSCAPE (992px - 1199px)
   ============================================ */

@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-activities {
    padding: 60px 30px;
  }
  
  .activities-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
  }
  
  .featured-activity {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .activities-list {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .featured-image {
    height: 220px;
  }
  
  .featured-content {
    padding: 20px 22px 22px;
  }
  
  .featured-title {
    font-size: 1.4rem;
  }
  
  .featured-description {
    font-size: 0.95rem;
    margin: 4px 0 0 0;
  }
  
  .featured-read-more {
    padding: 9px 22px;
    font-size: 0.85rem;
    margin: 5px 0 0 0;
  }
  
  .list-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 16px 20px 20px;
    overflow: visible;
    max-height: none;
  }
  
  .activity-list-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 18px;
    min-height: 180px;
    gap: 10px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.5);
  }
  
  .activity-list-item:hover {
    transform: translateY(-4px);
  }
  
  .list-item-image {
    width: 100%;
    height: 130px;
    border-radius: 12px;
  }
  
  .list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .list-item-content {
    width: 100%;
  }
  
  .list-item-title {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
  }
  
  .list-item-date {
    font-size: 0.8rem;
  }
  
  .list-item-link {
    font-size: 0.85rem;
  }
}

/* ============================================
   TABLET PORTRAIT (577px - 768px)
   ============================================ */

@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-activities {
    padding: 50px 24px;
  }
  
  .activities-section-header h3 {
    font-size: 2rem;
  }
  
  .activities-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    min-height: auto;
  }
  
  .featured-activity {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .activities-list {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .featured-image {
    height: 200px;
  }
  
  .featured-content {
    padding: 18px 20px 20px;
  }
  
  .featured-title {
    font-size: 1.3rem;
  }
  
  .featured-description {
    font-size: 0.9rem;
    margin: 3px 0 0 0;
  }
  
  .featured-read-more {
    padding: 8px 20px;
    font-size: 0.8rem;
    margin: 4px 0 0 0;
  }
  
  .featured-badge {
    top: 14px;
    left: 14px;
    padding: 6px 16px;
    font-size: 0.7rem;
  }
  
  .list-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 14px 16px 18px;
    overflow: visible;
    max-height: none;
  }
  
  .activity-list-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    min-height: 160px;
    gap: 8px;
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.5);
  }
  
  .activity-list-item:hover {
    transform: translateY(-3px);
  }
  
  .list-item-image {
    width: 100%;
    height: 110px;
    border-radius: 10px;
  }
  
  .list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .list-item-content {
    width: 100%;
  }
  
  .list-item-title {
    font-size: 0.9rem;
    -webkit-line-clamp: 2;
  }
  
  .list-item-date {
    font-size: 0.75rem;
  }
  
  .list-item-link {
    font-size: 0.8rem;
  }
}

/* ============================================
   MOBILE (320px - 576px)
   ============================================ */

@media screen and (max-width: 576px) {
  .section-container-activities {
    padding: 40px 16px;
  }
  
  .activities-section-header {
    margin-bottom: 28px;
  }
  
  .activities-section-header h3 {
    font-size: 1.6rem;
  }
  
  .activities-section-header h3::after {
    width: 50px;
    height: 3px;
  }
  
  .activities-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    min-height: auto;
  }
  
  .featured-activity {
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 18px;
  }
  
  .activities-list {
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 18px;
  }
  
  .featured-image {
    height: 160px;
  }
  
  .featured-content {
    padding: 16px 16px 18px;
  }
  
  .featured-title {
    font-size: 1.1rem;
  }
  
  .featured-description {
    font-size: 0.85rem;
    margin: 3px 0 0 0;
    line-height: 1.6;
  }
  
  .featured-date {
    font-size: 0.8rem;
  }
  
  .featured-read-more {
    padding: 8px 18px;
    font-size: 0.8rem;
    width: 100%;
    justify-content: center;
    margin: 4px 0 0 0;
  }
  
  .featured-read-more:hover {
    transform: translateX(0);
  }
  
  .featured-badge {
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    font-size: 0.65rem;
  }
  
  .list-header {
    padding: 16px 18px 12px;
  }
  
  .list-header h4 {
    font-size: 1.1rem;
  }
  
  .list-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px 16px;
    overflow: visible;
    max-height: none;
  }
  
  .activity-list-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 12px;
    padding: 12px 14px;
    min-height: 70px;
    border-radius: 12px;
    background: rgba(248, 250, 252, 0.5);
    align-items: center;
  }
  
  .activity-list-item:hover {
    transform: translateX(4px);
  }
  
  .list-item-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    flex-shrink: 0;
  }
  
  .list-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .list-item-content {
    width: 100%;
  }
  
  .list-item-title {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
  }
  
  .list-item-date {
    font-size: 0.7rem;
  }
  
  .list-item-link {
    font-size: 0.78rem;
  }
}

/* ============================================
   EXTRA SMALL DEVICES (320px)
   ============================================ */

@media screen and (max-width: 380px) {
  .section-container-activities {
    padding: 30px 10px;
  }
  
  .activities-section-header h3 {
    font-size: 1.3rem;
  }
  
  .featured-image {
    height: 140px;
  }
  
  .featured-content {
    padding: 14px 14px 16px;
  }
  
  .featured-title {
    font-size: 1rem;
  }
  
  .featured-description {
    font-size: 0.8rem;
    margin: 2px 0 0 0;
  }
  
  .featured-read-more {
    padding: 7px 16px;
    font-size: 0.75rem;
    margin: 3px 0 0 0;
  }
  
  .activity-list-item {
    grid-template-columns: 50px 1fr;
    gap: 10px;
    padding: 10px 12px;
    min-height: 60px;
  }
  
  .list-item-image {
    width: 50px;
    height: 50px;
  }
  
  .list-item-title {
    font-size: 0.78rem;
  }
}

/* ============================================
   REDUCED MOTION SUPPORT
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .featured-activity,
  .activities-list,
  .activity-list-item,
  .featured-read-more,
  .list-item-link {
    animation: none !important;
    transition: none !important;
  }
  
  .featured-activity:hover,
  .activities-list:hover,
  .activity-list-item:hover {
    transform: none !important;
  }
  
  .featured-activity:hover .featured-image img {
    transform: none !important;
  }
}

/* ============================================
   HIGH CONTRAST SUPPORT
   ============================================ */

@media (prefers-contrast: high) {
  .featured-activity,
  .activities-list {
    border: 2px solid #42b300;
  }
  
  .featured-read-more {
    background: #2e7d32;
    border: 2px solid #1b5e20;
  }
  
  .list-item-link {
    color: #2e7d32;
    text-decoration: underline;
  }
  
  .featured-badge {
    background: #2e7d32;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-activity {
  animation: slideUp 0.6s ease forwards;
  animation-delay: 0.1s;
}

.activities-list {
  animation: slideUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.activity-list-item {
  opacity: 0;
  animation: slideUp 0.4s ease forwards;
}

.activity-list-item:nth-child(1) { animation-delay: 0.3s; }
.activity-list-item:nth-child(2) { animation-delay: 0.35s; }
.activity-list-item:nth-child(3) { animation-delay: 0.4s; }
.activity-list-item:nth-child(4) { animation-delay: 0.45s; }
.activity-list-item:nth-child(5) { animation-delay: 0.5s; }
.activity-list-item:nth-child(6) { animation-delay: 0.55s; }
.activity-list-item:nth-child(7) { animation-delay: 0.6s; }
.activity-list-item:nth-child(8) { animation-delay: 0.65s; }


/* ============================================
   ORGANIZATION about mision, vision etc  SECTION - MASTER CONTAINER
   ============================================ */

.section-container-organization {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

/* Background decorative elements */
.section-container-organization::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-organization::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   SECTION HEADING - FULL WIDTH ROW
   ============================================ */

.section-heading-organization {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 50px;
  text-align: center;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  position: relative;
  grid-column: 1 / -1; /* Span all columns */
}

/* Decorative corner accents */
.section-heading-organization::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 60px;
  height: 60px;
  border-top: 3px solid #42b300;
  border-left: 3px solid #42b300;
  border-radius: 24px 0 0 0;
  opacity: 0.5;
}

.section-heading-organization::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid #f57c00;
  border-right: 3px solid #f57c00;
  border-radius: 0 0 24px 0;
  opacity: 0.5;
}

.section-heading-organization span {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 4px solid #f57c00;
  letter-spacing: -0.02em;
  position: relative;
}

.section-heading-organization span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 4px;
  background: #42b300;
  border-radius: 0 0 2px 2px;
}

.section-heading-organization p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ============================================
   PROJECT CONTAINER - GRID LAYOUT
   ============================================ */

.project-container-about-organization {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   INDIVIDUAL CARDS
   ============================================ */

.project-container-box-organization {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 24px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

/* Gradient border on hover */
.project-container-box-organization::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #42b300, #f57c00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.project-container-box-organization:hover::before {
  opacity: 1;
}

.project-container-box-organization:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(66, 179, 0, 0.08);
  border-color: rgba(66, 179, 0, 0.12);
}

/* ============================================
   CARD TITLE STYLING
   ============================================ */

.project-container-box-organization span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  position: relative;
  letter-spacing: -0.02em;
}

/* Icon styling */
.project-container-box-organization span::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(66, 179, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-container-box-organization:hover span::before {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(66, 179, 0, 0.15);
}

/* Individual Icons */
.project-container-box-organization:nth-child(1) span::before {
  content: '🎯';
}
.project-container-box-organization:nth-child(2) span::before {
  content: '👁';
}
.project-container-box-organization:nth-child(3) span::before {
  content: '🏁';
}
.project-container-box-organization:nth-child(4) span::before {
  content: '💎';
}

/* Animated Underline */
.project-container-box-organization span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.project-container-box-organization:hover span::after {
  width: 100%;
}

/* ============================================
   LIST STYLING
   ============================================ */

.project-container-box-organization ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project-container-box-organization ul li {
  color: #4b5563;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  line-height: 1.6;
  padding: 8px 0 8px 28px;
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: left;
}

/* Premium Animated Bullet Points */
.project-container-box-organization ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #42b300;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.3);
}

/* Hover Effect */
.project-container-box-organization ul li:hover {
  transform: translateX(6px);
  color: #1f2937;
  background: linear-gradient(90deg, rgba(66, 179, 0, 0.04), transparent);
  padding-left: 34px;
}

.project-container-box-organization ul li:hover::before {
  width: 8px;
  height: 8px;
  background: #f57c00;
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.12);
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(245, 124, 0, 0);
  }
}

/* ============================================
   CORE VALUES - 4th Card
   ============================================ */

.project-container-box-organization:nth-child(4) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(253, 126, 20, 0.02));
}

.project-container-box-organization:nth-child(4) ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 16px;
}

.project-container-box-organization:nth-child(4) ul li {
  padding: 6px 0 6px 26px;
  background: rgba(253, 126, 20, 0.02);
  border-radius: 6px;
  font-size: clamp(0.82rem, 0.85vw, 0.9rem);
}

.project-container-box-organization:nth-child(4) ul li::before {
  background: #f57c00;
}

.project-container-box-organization:nth-child(4) ul li:hover {
  background: linear-gradient(90deg, rgba(253, 126, 20, 0.06), transparent);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-organization {
    padding: 80px 60px 100px;
  }
  
  .section-heading-organization {
    padding: 50px 60px;
    border-radius: 28px;
  }
  
  .section-heading-organization span {
    font-size: 2.6rem;
  }
  
  .section-heading-organization p {
    font-size: 1.15rem;
  }
  
  .project-container-about-organization {
    gap: 10px;
    max-width: 1600px;
  }
  
  .project-container-box-organization {
    padding: 35px 30px 32px;
    min-height: 260px;
    border-radius: 24px;
  }
  
  .project-container-box-organization span {
    font-size: 1.6rem;
  }
  
  .project-container-box-organization span::before {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
  
  .project-container-box-organization ul li {
    font-size: 1rem;
    padding: 10px 0 10px 32px;
  }
  
  .project-container-box-organization:nth-child(4) ul {
    gap: 4px 20px;
  }
  
  .project-container-box-organization:nth-child(4) ul li {
    padding: 8px 0 8px 30px;
    font-size: 0.95rem;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-organization {
    padding: 60px 40px 80px;
  }
  
  .section-heading-organization {
    padding: 35px 40px;
  }
  
  .project-container-about-organization {
    gap: 8px;
  }
  
  .project-container-box-organization {
    padding: 26px 22px 24px;
    min-height: 200px;
  }
  
  .project-container-box-organization span {
    font-size: 1.3rem;
  }
  
  .project-container-box-organization ul li {
    font-size: 0.9rem;
    padding: 7px 0 7px 26px;
  }
  
  .project-container-box-organization:nth-child(4) ul {
    gap: 2px 12px;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-organization {
    padding: 50px 30px 70px;
  }
  
  .section-heading-organization {
    width: 95%;
    padding: 30px 35px;
  }
  
  .section-heading-organization span {
    font-size: 1.8rem;
  }
  
  .section-heading-organization p {
    font-size: 0.95rem;
  }
  
  .project-container-about-organization {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }
  
  .project-container-box-organization {
    padding: 24px 20px 22px;
    min-height: 180px;
    border-radius: 18px;
  }
  
  .project-container-box-organization span {
    font-size: 1.2rem;
  }
  
  .project-container-box-organization span::before {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  
  .project-container-box-organization ul li {
    font-size: 0.88rem;
    padding: 6px 0 6px 24px;
  }
  
  .project-container-box-organization:nth-child(4) ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 10px;
  }
  
  .project-container-box-organization:nth-child(4) ul li {
    padding: 5px 0 5px 22px;
    font-size: 0.85rem;
  }
}

/* Tablet Portrait (577px - 768px) */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-organization {
    padding: 40px 20px 60px;
    margin-top: 60px;
  }
  
  .section-heading-organization {
    width: 100%;
    padding: 25px 28px;
    border-radius: 20px;
  }
  
  .section-heading-organization span {
    font-size: 1.5rem;
    border-bottom-width: 3px;
    padding-bottom: 10px;
  }
  
  .section-heading-organization p {
    font-size: 0.9rem;
    margin-top: 14px;
    line-height: 1.7;
  }
  
  .section-heading-organization::before,
  .section-heading-organization::after {
    width: 40px;
    height: 40px;
  }
  
  .project-container-about-organization {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
  }
  
  .project-container-box-organization {
    padding: 20px 18px 20px;
    min-height: 160px;
    border-radius: 16px;
  }
  
  .project-container-box-organization span {
    font-size: 1.1rem;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  
  .project-container-box-organization span::before {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    border-radius: 10px;
  }
  
  .project-container-box-organization ul li {
    font-size: 0.85rem;
    padding: 5px 0 5px 22px;
    line-height: 1.5;
  }
  
  .project-container-box-organization ul li::before {
    width: 5px;
    height: 5px;
  }
  
  .project-container-box-organization:nth-child(4) ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 8px;
  }
  
  .project-container-box-organization:nth-child(4) ul li {
    padding: 4px 0 4px 20px;
    font-size: 0.82rem;
  }
}

/* Mobile (320px - 576px) */
@media screen and (max-width: 576px) {
  .section-container-organization {
    padding: 30px 14px 50px;
    margin-top: 40px;
  }
  
  .section-heading-organization {
    width: 100%;
    padding: 20px 18px;
    border-radius: 16px;
    margin-bottom: 30px;
  }
  
  .section-heading-organization::before,
  .section-heading-organization::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  
  .section-heading-organization span {
    font-size: 1.2rem;
    border-bottom-width: 3px;
    padding-bottom: 8px;
  }
  
  .section-heading-organization p {
    font-size: 0.85rem;
    margin-top: 12px;
    line-height: 1.6;
  }
  
  .project-container-about-organization {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
  }
  
  .project-container-box-organization {
    padding: 18px 16px 18px;
    min-height: 140px;
    border-radius: 14px;
  }
  
  .project-container-box-organization::before {
    display: none;
  }
  
  .project-container-box-organization span {
    font-size: 1rem;
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  
  .project-container-box-organization span::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  
  .project-container-box-organization ul li {
    font-size: 0.82rem;
    padding: 4px 0 4px 20px;
    line-height: 1.5;
  }
  
  .project-container-box-organization ul li::before {
    width: 4px;
    height: 4px;
  }
  
  .project-container-box-organization ul li:hover {
    padding-left: 26px;
    transform: translateX(4px);
  }
  
  .project-container-box-organization:nth-child(4) ul {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  
  .project-container-box-organization:nth-child(4) ul li {
    padding: 4px 0 4px 18px;
    font-size: 0.8rem;
  }
}

/* Extra Small Devices (320px) */
@media screen and (max-width: 380px) {
  .section-container-organization {
    padding: 20px 10px 40px;
    margin-top: 30px;
  }
  
  .section-heading-organization {
    padding: 16px 14px;
    border-radius: 12px;
  }
  
  .section-heading-organization span {
    font-size: 1rem;
  }
  
  .section-heading-organization p {
    font-size: 0.8rem;
    margin-top: 10px;
  }
  
  .project-container-box-organization {
    padding: 14px 12px 14px;
    min-height: 120px;
    border-radius: 12px;
  }
  
  .project-container-box-organization span {
    font-size: 0.9rem;
    gap: 6px;
  }
  
  .project-container-box-organization span::before {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .project-container-box-organization ul li {
    font-size: 0.78rem;
    padding: 3px 0 3px 18px;
  }
  
  .project-container-box-organization:nth-child(4) ul li {
    font-size: 0.76rem;
    padding: 3px 0 3px 16px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .project-container-box-organization,
  .project-container-box-organization ul li,
  .project-container-box-organization span::after {
    animation: none !important;
    transition: none !important;
  }
  
  .project-container-box-organization:hover {
    transform: none !important;
  }
  
  .section-heading-organization::before,
  .section-heading-organization::after {
    animation: none !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .project-container-box-organization {
    border: 2px solid #42b300;
    background: white;
  }
  
  .section-heading-organization {
    border: 2px solid #42b300;
    background: white;
  }
  
  .section-heading-organization span {
    border-bottom-color: #42b300;
  }
  
  .project-container-box-organization ul li::before {
    background: #42b300;
  }
  
  .project-container-box-organization::before {
    display: none;
  }
}

/* Focus States */
.project-container-box-organization:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 2px;
  border-radius: 16px;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #42b300, #f57c00);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2e7d32, #e65100);
}


/* ============================================
   FOCUS AREA & TARGET AREA SECTION - MASTER CONTAINER, 
   ============================================ */

.section-container-focus-target {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

/* Background decorative elements */
.section-container-focus-target::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-focus-target::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   PROJECT CONTAINER - 3 COLUMN GRID
   ============================================ */

.project-container-about-focus-target {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 400px;
}

/* ============================================
   INDIVIDUAL CARDS
   ============================================ */

.project-container-box-focus-target {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px 28px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* Gradient border on hover - premium effect */
.project-container-box-focus-target::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #42b300, #f57c00, #42b300);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.project-container-box-focus-target:hover::before {
  opacity: 1;
}

/* Top accent bar */
.project-container-box-focus-target::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px 24px 0 0;
}

.project-container-box-focus-target:hover::after {
  transform: scaleX(1);
}

/* Card hover effects */
.project-container-box-focus-target:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.08);
  border-color: rgba(66, 179, 0, 0.12);
}

/* ============================================
   CARD TITLE STYLING
   ============================================ */

.project-container-box-focus-target span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  position: relative;
  letter-spacing: -0.02em;
}

/* Icon styling - each card gets a unique icon */
.project-container-box-focus-target:nth-child(1) span::before {
  content: '🎯';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(66, 179, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-container-box-focus-target:nth-child(2) span::before {
  content: '👥';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(245, 124, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-container-box-focus-target:nth-child(3) span::before {
  content: '🌍';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(66, 179, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Icon hover effect */
.project-container-box-focus-target:hover span::before {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(66, 179, 0, 0.15);
}

.project-container-box-focus-target:nth-child(2):hover span::before {
  background: rgba(245, 124, 0, 0.15);
}

/* Animated Underline */
.project-container-box-focus-target span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.project-container-box-focus-target:hover span::after {
  width: 100%;
}

/* ============================================
   LIST STYLING
   ============================================ */

.project-container-box-focus-target ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-container-box-focus-target ul li {
  color: #4b5563;
  font-size: clamp(0.88rem, 0.9vw, 0.98rem);
  line-height: 1.6;
  padding: 10px 0 10px 30px;
  background: transparent;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: left;
  font-weight: 400;
}

/* Premium Animated Bullet Points */
.project-container-box-focus-target ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #42b300;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.3);
}

/* Different bullet color for second card */
.project-container-box-focus-target:nth-child(2) ul li::before {
  background: #f57c00;
  box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.3);
}

/* Different bullet color for third card */
.project-container-box-focus-target:nth-child(3) ul li::before {
  background: #42b300;
  box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.3);
}

/* Hover Effect - Premium */
.project-container-box-focus-target ul li:hover {
  transform: translateX(8px);
  color: #1f2937;
  background: linear-gradient(90deg, rgba(66, 179, 0, 0.04), transparent);
  padding-left: 36px;
  border-radius: 10px;
}

.project-container-box-focus-target:nth-child(2) ul li:hover {
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.04), transparent);
}

.project-container-box-focus-target:nth-child(3) ul li:hover {
  background: linear-gradient(90deg, rgba(66, 179, 0, 0.04), transparent);
}

.project-container-box-focus-target ul li:hover::before {
  width: 10px;
  height: 10px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245, 124, 0, 0.12);
  animation: rippleFocus 0.6s ease-out;
}

.project-container-box-focus-target:nth-child(2) ul li:hover::before {
  background: #42b300;
  box-shadow: 0 0 0 6px rgba(66, 179, 0, 0.12);
}

@keyframes rippleFocus {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(245, 124, 0, 0);
  }
}

.project-container-box-focus-target:nth-child(2) ul li:hover::before {
  animation-name: rippleFocusOrange;
}

@keyframes rippleFocusOrange {
  0% {
    box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(66, 179, 0, 0);
  }
}

/* ============================================
   CARD COUNTER / NUMBER BADGE
   ============================================ */

.project-container-box-focus-target .card-number {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(66, 179, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
  font-family: 'Georgia', serif;
}

.project-container-box-focus-target:hover .card-number {
  color: rgba(66, 179, 0, 0.08);
  transform: scale(1.1);
}

.project-container-box-focus-target:nth-child(2) .card-number {
  color: rgba(245, 124, 0, 0.04);
}

.project-container-box-focus-target:nth-child(2):hover .card-number {
  color: rgba(245, 124, 0, 0.08);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-focus-target {
    padding: 80px 60px 100px;
  }
  
  .project-container-about-focus-target {
    gap: 30px;
    max-width: 1600px;
    min-height: 450px;
  }
  
  .project-container-box-focus-target {
    padding: 38px 34px 34px;
    min-height: 380px;
    border-radius: 28px;
  }
  
  .project-container-box-focus-target span {
    font-size: 1.5rem;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }
  
  .project-container-box-focus-target span::before {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }
  
  .project-container-box-focus-target ul li {
    font-size: 1rem;
    padding: 12px 0 12px 34px;
    line-height: 1.7;
  }
  
  .project-container-box-focus-target .card-number {
    font-size: 5rem;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-focus-target {
    padding: 60px 40px 80px;
  }
  
  .project-container-about-focus-target {
    gap: 22px;
    min-height: 380px;
  }
  
  .project-container-box-focus-target {
    padding: 28px 24px 26px;
    min-height: 300px;
    border-radius: 20px;
  }
  
  .project-container-box-focus-target span {
    font-size: 1.2rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  
  .project-container-box-focus-target span::before {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .project-container-box-focus-target ul li {
    font-size: 0.9rem;
    padding: 8px 0 8px 28px;
  }
  
  .project-container-box-focus-target .card-number {
    font-size: 3.5rem;
  }
}

/* Tablet Landscape (992px - 1199px) - 2 columns */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-focus-target {
    padding: 50px 30px 70px;
  }
  
  .project-container-about-focus-target {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-height: auto;
  }
  
  .project-container-box-focus-target {
    padding: 26px 22px 24px;
    min-height: 280px;
    border-radius: 18px;
  }
  
  .project-container-box-focus-target span {
    font-size: 1.15rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .project-container-box-focus-target span::before {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  
  .project-container-box-focus-target ul li {
    font-size: 0.88rem;
    padding: 7px 0 7px 26px;
  }
  
  .project-container-box-focus-target .card-number {
    font-size: 3rem;
  }
  
  /* Third card spans full width on tablet */
  .project-container-box-focus-target:nth-child(3) {
    grid-column: span 2;
    min-height: 200px;
  }
  
  .project-container-box-focus-target:nth-child(3) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 20px;
  }
}

/* Tablet Portrait (577px - 768px) - 2 columns */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-focus-target {
    padding: 40px 20px 60px;
    margin-top: 60px;
  }
  
  .project-container-about-focus-target {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
    min-height: auto;
  }
  
  .project-container-box-focus-target {
    padding: 22px 18px 20px;
    min-height: 240px;
    border-radius: 16px;
  }
  
  .project-container-box-focus-target span {
    font-size: 1.05rem;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  
  .project-container-box-focus-target span::before {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  
  .project-container-box-focus-target ul li {
    font-size: 0.85rem;
    padding: 6px 0 6px 24px;
    line-height: 1.5;
  }
  
  .project-container-box-focus-target ul li::before {
    width: 5px;
    height: 5px;
  }
  
  .project-container-box-focus-target .card-number {
    font-size: 2.5rem;
    bottom: 12px;
    right: 16px;
  }
  
  /* Third card spans full width on tablet portrait */
  .project-container-box-focus-target:nth-child(3) {
    grid-column: span 2;
    min-height: 160px;
  }
  
  .project-container-box-focus-target:nth-child(3) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 16px;
  }
}

/* Mobile (320px - 576px) - 1 column */
@media screen and (max-width: 576px) {
  .section-container-focus-target {
    padding: 30px 14px 50px;
    margin-top: 40px;
  }
  
  .project-container-about-focus-target {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
    min-height: auto;
  }
  
  .project-container-box-focus-target {
    padding: 20px 16px 18px;
    min-height: 200px;
    border-radius: 14px;
  }
  
  .project-container-box-focus-target::before {
    display: none;
  }
  
  .project-container-box-focus-target::after {
    height: 3px;
  }
  
  .project-container-box-focus-target span {
    font-size: 1rem;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  
  .project-container-box-focus-target span::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  
  .project-container-box-focus-target ul li {
    font-size: 0.82rem;
    padding: 5px 0 5px 22px;
    line-height: 1.5;
  }
  
  .project-container-box-focus-target ul li::before {
    width: 4px;
    height: 4px;
  }
  
  .project-container-box-focus-target ul li:hover {
    padding-left: 28px;
    transform: translateX(4px);
  }
  
  .project-container-box-focus-target .card-number {
    font-size: 2rem;
    bottom: 10px;
    right: 14px;
  }
  
  /* Third card normal on mobile */
  .project-container-box-focus-target:nth-child(3) {
    grid-column: span 1;
    min-height: 180px;
  }
  
  .project-container-box-focus-target:nth-child(3) ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}

/* Extra Small Devices (320px) */
@media screen and (max-width: 380px) {
  .section-container-focus-target {
    padding: 20px 10px 40px;
    margin-top: 30px;
  }
  
  .project-container-about-focus-target {
    gap: 10px;
  }
  
  .project-container-box-focus-target {
    padding: 16px 12px 16px;
    min-height: 160px;
    border-radius: 12px;
  }
  
  .project-container-box-focus-target span {
    font-size: 0.9rem;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  
  .project-container-box-focus-target span::before {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .project-container-box-focus-target ul li {
    font-size: 0.78rem;
    padding: 4px 0 4px 20px;
  }
  
  .project-container-box-focus-target .card-number {
    font-size: 1.5rem;
    bottom: 8px;
    right: 10px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .project-container-box-focus-target,
  .project-container-box-focus-target ul li,
  .project-container-box-focus-target span::after,
  .project-container-box-focus-target::before,
  .project-container-box-focus-target::after {
    animation: none !important;
    transition: none !important;
  }
  
  .project-container-box-focus-target:hover {
    transform: none !important;
  }
  
  .project-container-box-focus-target:hover::before {
    opacity: 0 !important;
  }
  
  .project-container-box-focus-target:hover::after {
    transform: scaleX(0) !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .project-container-box-focus-target {
    border: 2px solid #42b300;
    background: white;
  }
  
  .project-container-box-focus-target:nth-child(2) {
    border-color: #f57c00;
  }
  
  .project-container-box-focus-target ul li::before {
    background: #42b300 !important;
  }
  
  .project-container-box-focus-target:nth-child(2) ul li::before {
    background: #f57c00 !important;
  }
  
  .project-container-box-focus-target::before {
    display: none;
  }
  
  .project-container-box-focus-target::after {
    display: none;
  }
}

/* Focus States */
.project-container-box-focus-target:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 2px;
  border-radius: 20px;
}

.project-container-box-focus-target:nth-child(2):focus-within {
  outline-color: #f57c00;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

@keyframes fadeInUpFocus {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-container-box-focus-target {
  opacity: 0;
  animation: fadeInUpFocus 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.project-container-box-focus-target:nth-child(1) {
  animation-delay: 0.1s;
}
.project-container-box-focus-target:nth-child(2) {
  animation-delay: 0.2s;
}
.project-container-box-focus-target:nth-child(3) {
  animation-delay: 0.3s;
}

/* ============================================
   APPROACH, startegic objective atc SECTION - MASTER CONTAINER
   ============================================ */

.section-container-approach {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

/* Background decorative elements */
.section-container-approach::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-approach::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   PROJECT CONTAINER - 3 COLUMN GRID
   ============================================ */

.project-container-about-approach {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 400px;
}

/* If you're not using a wrapper div, use this selector */
.project-container-box-approach {
  /* Individual card styles below */
}

/* ============================================
   INDIVIDUAL CARDS
   ============================================ */

.project-container-box-approach {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px 28px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* Gradient border on hover - premium effect */
.project-container-box-approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #42b300, #f57c00, #42b300);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: gradientShiftApproach 3s ease-in-out infinite;
}

@keyframes gradientShiftApproach {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.project-container-box-approach:hover::before {
  opacity: 1;
}

/* Top accent bar */
.project-container-box-approach::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px 24px 0 0;
}

.project-container-box-approach:hover::after {
  transform: scaleX(1);
}

/* Card hover effects */
.project-container-box-approach:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.08);
  border-color: rgba(66, 179, 0, 0.12);
}

/* ============================================
   CARD TITLE STYLING
   ============================================ */

.project-container-box-approach span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  position: relative;
  letter-spacing: -0.02em;
}

/* Icon styling - each card gets a unique icon */
.project-container-box-approach:nth-child(1) span::before {
  content: '🔄';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(66, 179, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-container-box-approach:nth-child(2) span::before {
  content: '📋';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(245, 124, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-container-box-approach:nth-child(3) span::before {
  content: '🎯';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(66, 179, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Icon hover effect */
.project-container-box-approach:hover span::before {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(66, 179, 0, 0.15);
}

.project-container-box-approach:nth-child(2):hover span::before {
  background: rgba(245, 124, 0, 0.15);
}

/* Animated Underline */
.project-container-box-approach span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.project-container-box-approach:hover span::after {
  width: 100%;
}

/* ============================================
   LIST STYLING
   ============================================ */

.project-container-box-approach ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.project-container-box-approach ul li {
  color: #4b5563;
  font-size: clamp(0.88rem, 0.9vw, 0.98rem);
  line-height: 1.6;
  padding: 10px 0 10px 30px;
  background: transparent;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: left;
  font-weight: 400;
}

/* Premium Animated Bullet Points */
.project-container-box-approach ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #42b300;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.3);
}

/* Different bullet color for second card */
.project-container-box-approach:nth-child(2) ul li::before {
  background: #f57c00;
  box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.3);
}

/* Different bullet color for third card */
.project-container-box-approach:nth-child(3) ul li::before {
  background: #42b300;
  box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.3);
}

/* Hover Effect - Premium */
.project-container-box-approach ul li:hover {
  transform: translateX(8px);
  color: #1f2937;
  background: linear-gradient(90deg, rgba(66, 179, 0, 0.04), transparent);
  padding-left: 36px;
  border-radius: 10px;
}

.project-container-box-approach:nth-child(2) ul li:hover {
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.04), transparent);
}

.project-container-box-approach:nth-child(3) ul li:hover {
  background: linear-gradient(90deg, rgba(66, 179, 0, 0.04), transparent);
}

.project-container-box-approach ul li:hover::before {
  width: 10px;
  height: 10px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245, 124, 0, 0.12);
  animation: rippleApproach 0.6s ease-out;
}

.project-container-box-approach:nth-child(2) ul li:hover::before {
  background: #42b300;
  box-shadow: 0 0 0 6px rgba(66, 179, 0, 0.12);
}

@keyframes rippleApproach {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(245, 124, 0, 0);
  }
}

.project-container-box-approach:nth-child(2) ul li:hover::before {
  animation-name: rippleApproachOrange;
}

@keyframes rippleApproachOrange {
  0% {
    box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(66, 179, 0, 0);
  }
}

/* ============================================
   CARD COUNTER / NUMBER BADGE
   ============================================ */

.project-container-box-approach .card-number {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(66, 179, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
  font-family: 'Georgia', serif;
}

.project-container-box-approach:hover .card-number {
  color: rgba(66, 179, 0, 0.08);
  transform: scale(1.1);
}

.project-container-box-approach:nth-child(2) .card-number {
  color: rgba(245, 124, 0, 0.04);
}

.project-container-box-approach:nth-child(2):hover .card-number {
  color: rgba(245, 124, 0, 0.08);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-approach {
    padding: 80px 60px 100px;
  }
  
  .project-container-about-approach {
    gap: 30px;
    max-width: 1600px;
    min-height: 450px;
  }
  
  .project-container-box-approach {
    padding: 38px 34px 34px;
    min-height: 380px;
    border-radius: 28px;
  }
  
  .project-container-box-approach span {
    font-size: 1.5rem;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }
  
  .project-container-box-approach span::before {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }
  
  .project-container-box-approach ul li {
    font-size: 1rem;
    padding: 12px 0 12px 34px;
    line-height: 1.7;
  }
  
  .project-container-box-approach .card-number {
    font-size: 5rem;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-approach {
    padding: 60px 40px 80px;
  }
  
  .project-container-about-approach {
    gap: 22px;
    min-height: 380px;
  }
  
  .project-container-box-approach {
    padding: 28px 24px 26px;
    min-height: 300px;
    border-radius: 20px;
  }
  
  .project-container-box-approach span {
    font-size: 1.2rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  
  .project-container-box-approach span::before {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .project-container-box-approach ul li {
    font-size: 0.9rem;
    padding: 8px 0 8px 28px;
  }
  
  .project-container-box-approach .card-number {
    font-size: 3.5rem;
  }
}

/* Tablet Landscape (992px - 1199px) - 2 columns */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-approach {
    padding: 50px 30px 70px;
  }
  
  .project-container-about-approach {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    min-height: auto;
  }
  
  .project-container-box-approach {
    padding: 26px 22px 24px;
    min-height: 280px;
    border-radius: 18px;
  }
  
  .project-container-box-approach span {
    font-size: 1.15rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .project-container-box-approach span::before {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  
  .project-container-box-approach ul li {
    font-size: 0.88rem;
    padding: 7px 0 7px 26px;
  }
  
  .project-container-box-approach .card-number {
    font-size: 3rem;
  }
  
  /* Third card spans full width on tablet */
  .project-container-box-approach:nth-child(3) {
    grid-column: span 2;
    min-height: 200px;
  }
  
  .project-container-box-approach:nth-child(3) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 20px;
  }
}

/* Tablet Portrait (577px - 768px) - 2 columns */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-approach {
    padding: 40px 20px 60px;
    margin-top: 60px;
  }
  
  .project-container-about-approach {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
    min-height: auto;
  }
  
  .project-container-box-approach {
    padding: 22px 18px 20px;
    min-height: 240px;
    border-radius: 16px;
  }
  
  .project-container-box-approach span {
    font-size: 1.05rem;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  
  .project-container-box-approach span::before {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  
  .project-container-box-approach ul li {
    font-size: 0.85rem;
    padding: 6px 0 6px 24px;
    line-height: 1.5;
  }
  
  .project-container-box-approach ul li::before {
    width: 5px;
    height: 5px;
  }
  
  .project-container-box-approach .card-number {
    font-size: 2.5rem;
    bottom: 12px;
    right: 16px;
  }
  
  /* Third card spans full width on tablet portrait */
  .project-container-box-approach:nth-child(3) {
    grid-column: span 2;
    min-height: 160px;
  }
  
  .project-container-box-approach:nth-child(3) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 16px;
  }
}

/* Mobile (320px - 576px) - 1 column */
@media screen and (max-width: 576px) {
  .section-container-approach {
    padding: 30px 14px 50px;
    margin-top: 40px;
  }
  
  .project-container-about-approach {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
    min-height: auto;
  }
  
  .project-container-box-approach {
    padding: 20px 16px 18px;
    min-height: 200px;
    border-radius: 14px;
  }
  
  .project-container-box-approach::before {
    display: none;
  }
  
  .project-container-box-approach::after {
    height: 3px;
  }
  
  .project-container-box-approach span {
    font-size: 1rem;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  
  .project-container-box-approach span::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  
  .project-container-box-approach ul li {
    font-size: 0.82rem;
    padding: 5px 0 5px 22px;
    line-height: 1.5;
  }
  
  .project-container-box-approach ul li::before {
    width: 4px;
    height: 4px;
  }
  
  .project-container-box-approach ul li:hover {
    padding-left: 28px;
    transform: translateX(4px);
  }
  
  .project-container-box-approach .card-number {
    font-size: 2rem;
    bottom: 10px;
    right: 14px;
  }
  
  /* Third card normal on mobile */
  .project-container-box-approach:nth-child(3) {
    grid-column: span 1;
    min-height: 180px;
  }
  
  .project-container-box-approach:nth-child(3) ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}

/* Extra Small Devices (320px) */
@media screen and (max-width: 380px) {
  .section-container-approach {
    padding: 20px 10px 40px;
    margin-top: 30px;
  }
  
  .project-container-about-approach {
    gap: 10px;
  }
  
  .project-container-box-approach {
    padding: 16px 12px 16px;
    min-height: 160px;
    border-radius: 12px;
  }
  
  .project-container-box-approach span {
    font-size: 0.9rem;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  
  .project-container-box-approach span::before {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .project-container-box-approach ul li {
    font-size: 0.78rem;
    padding: 4px 0 4px 20px;
  }
  
  .project-container-box-approach .card-number {
    font-size: 1.5rem;
    bottom: 8px;
    right: 10px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .project-container-box-approach,
  .project-container-box-approach ul li,
  .project-container-box-approach span::after,
  .project-container-box-approach::before,
  .project-container-box-approach::after {
    animation: none !important;
    transition: none !important;
  }
  
  .project-container-box-approach:hover {
    transform: none !important;
  }
  
  .project-container-box-approach:hover::before {
    opacity: 0 !important;
  }
  
  .project-container-box-approach:hover::after {
    transform: scaleX(0) !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .project-container-box-approach {
    border: 2px solid #42b300;
    background: white;
  }
  
  .project-container-box-approach:nth-child(2) {
    border-color: #f57c00;
  }
  
  .project-container-box-approach ul li::before {
    background: #42b300 !important;
  }
  
  .project-container-box-approach:nth-child(2) ul li::before {
    background: #f57c00 !important;
  }
  
  .project-container-box-approach::before {
    display: none;
  }
  
  .project-container-box-approach::after {
    display: none;
  }
}

/* Focus States */
.project-container-box-approach:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 2px;
  border-radius: 20px;
}

.project-container-box-approach:nth-child(2):focus-within {
  outline-color: #f57c00;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

@keyframes fadeInUpApproach {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-container-box-approach {
  opacity: 0;
  animation: fadeInUpApproach 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.project-container-box-approach:nth-child(1) {
  animation-delay: 0.1s;
}
.project-container-box-approach:nth-child(2) {
  animation-delay: 0.2s;
}
.project-container-box-approach:nth-child(3) {
  animation-delay: 0.3s;
}

/* ============================================
   PARTNERS SECTION - MASTER CONTAINER
   ============================================ */

.section-container-partners {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

/* Background decorative elements */
.section-container-partners::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-partners::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   GRID CONTAINER - 2 Rows
   ============================================ */

.project-container-about-partners {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 25px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   SECTION HEADING - FIRST ROW (Spans all columns)
   ============================================ */

.section-heading-partners {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 60%;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
  padding: 40px 50px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  position: relative;
}

/* Decorative corner accents */
.section-heading-partners::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 60px;
  height: 60px;
  border-top: 3px solid #42b300;
  border-left: 3px solid #42b300;
  border-radius: 24px 0 0 0;
  opacity: 0.5;
}

.section-heading-partners::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 60px;
  height: 60px;
  border-bottom: 3px solid #f57c00;
  border-right: 3px solid #f57c00;
  border-radius: 0 0 24px 0;
  opacity: 0.5;
}

.section-heading-partners span {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 4px solid #f57c00;
  letter-spacing: -0.02em;
  position: relative;
}

.section-heading-partners span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 4px;
  background: #42b300;
  border-radius: 0 0 2px 2px;
}

.section-heading-partners p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ============================================
   INDIVIDUAL CARDS - SECOND ROW (3 columns)
   ============================================ */

.project-container-box-partners {
  grid-row: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 32px 28px 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

/* Gradient border on hover - premium effect */
.project-container-box-partners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #42b300, #f57c00, #42b300);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: gradientShiftPartners 3s ease-in-out infinite;
}

@keyframes gradientShiftPartners {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.project-container-box-partners:hover::before {
  opacity: 1;
}

/* Top accent bar */
.project-container-box-partners::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px 24px 0 0;
}

.project-container-box-partners:hover::after {
  transform: scaleX(1);
}

/* Card hover effects */
.project-container-box-partners:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.08);
  border-color: rgba(66, 179, 0, 0.12);
}

/* ============================================
   CARD TITLE STYLING
   ============================================ */

.project-container-box-partners span {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  position: relative;
  letter-spacing: -0.02em;
}

/* Icon styling - each card gets a unique icon */
.project-container-box-partners:nth-child(1) span::before {
  content: '💰';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(66, 179, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-container-box-partners:nth-child(2) span::before {
  content: '🤝';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(245, 124, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.project-container-box-partners:nth-child(3) span::before {
  content: '🏛️';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(66, 179, 0, 0.08);
  border-radius: 12px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Icon hover effect */
.project-container-box-partners:hover span::before {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(66, 179, 0, 0.15);
}

.project-container-box-partners:nth-child(2):hover span::before {
  background: rgba(245, 124, 0, 0.15);
}

/* Animated Underline */
.project-container-box-partners span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.project-container-box-partners:hover span::after {
  width: 100%;
}

/* ============================================
   LIST STYLING
   ============================================ */

.project-container-box-partners ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-container-box-partners ul li {
  color: #4b5563;
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  line-height: 1.6;
  padding: 8px 0 8px 30px;
  background: transparent;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: left;
  font-weight: 400;
}

/* Premium Animated Bullet Points */
.project-container-box-partners ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #42b300;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
  box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.3);
}

/* Different bullet color for second card */
.project-container-box-partners:nth-child(2) ul li::before {
  background: #f57c00;
  box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.3);
}

/* Different bullet color for third card */
.project-container-box-partners:nth-child(3) ul li::before {
  background: #42b300;
  box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.3);
}

/* Hover Effect - Premium */
.project-container-box-partners ul li:hover {
  transform: translateX(8px);
  color: #1f2937;
  background: linear-gradient(90deg, rgba(66, 179, 0, 0.04), transparent);
  padding-left: 36px;
  border-radius: 10px;
}

.project-container-box-partners:nth-child(2) ul li:hover {
  background: linear-gradient(90deg, rgba(245, 124, 0, 0.04), transparent);
}

.project-container-box-partners:nth-child(3) ul li:hover {
  background: linear-gradient(90deg, rgba(66, 179, 0, 0.04), transparent);
}

.project-container-box-partners ul li:hover::before {
  width: 10px;
  height: 10px;
  background: #f57c00;
  box-shadow: 0 0 0 6px rgba(245, 124, 0, 0.12);
  animation: ripplePartners 0.6s ease-out;
}

.project-container-box-partners:nth-child(2) ul li:hover::before {
  background: #42b300;
  box-shadow: 0 0 0 6px rgba(66, 179, 0, 0.12);
}

@keyframes ripplePartners {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(245, 124, 0, 0);
  }
}

.project-container-box-partners:nth-child(2) ul li:hover::before {
  animation-name: ripplePartnersOrange;
}

@keyframes ripplePartnersOrange {
  0% {
    box-shadow: 0 0 0 0 rgba(66, 179, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(66, 179, 0, 0);
  }
}

/* ============================================
   CARD COUNTER / NUMBER BADGE
   ============================================ */

.project-container-box-partners .card-number {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(66, 179, 0, 0.04);
  line-height: 1;
  pointer-events: none;
  transition: all 0.4s ease;
  font-family: 'Georgia', serif;
}

.project-container-box-partners:hover .card-number {
  color: rgba(66, 179, 0, 0.08);
  transform: scale(1.1);
}

.project-container-box-partners:nth-child(2) .card-number {
  color: rgba(245, 124, 0, 0.04);
}

.project-container-box-partners:nth-child(2):hover .card-number {
  color: rgba(245, 124, 0, 0.08);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-partners {
    padding: 80px 60px 100px;
  }
  
  .project-container-about-partners {
    gap: 30px;
    max-width: 1600px;
  }
  
  .section-heading-partners {
    padding: 50px 60px;
    border-radius: 28px;
  }
  
  .section-heading-partners span {
    font-size: 2.6rem;
  }
  
  .section-heading-partners p {
    font-size: 1.15rem;
  }
  
  .project-container-box-partners {
    padding: 38px 34px 34px;
    min-height: 340px;
    border-radius: 28px;
  }
  
  .project-container-box-partners span {
    font-size: 1.4rem;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }
  
  .project-container-box-partners span::before {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
  }
  
  .project-container-box-partners ul li {
    font-size: 1rem;
    padding: 10px 0 10px 34px;
    line-height: 1.7;
  }
  
  .project-container-box-partners .card-number {
    font-size: 5rem;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-partners {
    padding: 60px 40px 80px;
  }
  
  .project-container-about-partners {
    gap: 22px;
  }
  
  .section-heading-partners {
    padding: 35px 40px;
    width: 70%;
  }
  
  .section-heading-partners span {
    font-size: 1.8rem;
  }
  
  .section-heading-partners p {
    font-size: 0.95rem;
  }
  
  .project-container-box-partners {
    padding: 28px 24px 26px;
    min-height: 280px;
    border-radius: 20px;
  }
  
  .project-container-box-partners span {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
  
  .project-container-box-partners span::before {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  
  .project-container-box-partners ul li {
    font-size: 0.88rem;
    padding: 7px 0 7px 28px;
  }
  
  .project-container-box-partners .card-number {
    font-size: 3.5rem;
  }
}

/* Tablet Landscape (992px - 1199px) - 2 columns */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-partners {
    padding: 50px 30px 70px;
  }
  
  .project-container-about-partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .section-heading-partners {
    grid-column: 1 / -1;
    width: 80%;
    padding: 30px 35px;
    border-radius: 20px;
  }
  
  .section-heading-partners span {
    font-size: 1.6rem;
  }
  
  .section-heading-partners p {
    font-size: 0.9rem;
  }
  
  .section-heading-partners::before,
  .section-heading-partners::after {
    width: 40px;
    height: 40px;
  }
  
  .project-container-box-partners {
    padding: 26px 22px 24px;
    min-height: 260px;
    border-radius: 18px;
  }
  
  .project-container-box-partners span {
    font-size: 1.05rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .project-container-box-partners span::before {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  
  .project-container-box-partners ul li {
    font-size: 0.85rem;
    padding: 6px 0 6px 26px;
  }
  
  .project-container-box-partners .card-number {
    font-size: 3rem;
  }
  
  /* Third card spans full width on tablet */
  .project-container-box-partners:nth-child(3) {
    grid-column: span 2;
    min-height: 200px;
  }
  
  .project-container-box-partners:nth-child(3) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 20px;
  }
}

/* Tablet Portrait (577px - 768px) - 2 columns */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-partners {
    padding: 40px 20px 60px;
    margin-top: 60px;
  }
  
  .project-container-about-partners {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0;
  }
  
  .section-heading-partners {
    grid-column: 1 / -1;
    width: 100%;
    padding: 25px 28px;
    border-radius: 18px;
  }
  
  .section-heading-partners span {
    font-size: 1.4rem;
    border-bottom-width: 3px;
    padding-bottom: 10px;
  }
  
  .section-heading-partners p {
    font-size: 0.85rem;
    margin-top: 14px;
    line-height: 1.7;
  }
  
  .section-heading-partners::before,
  .section-heading-partners::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  
  .project-container-box-partners {
    padding: 22px 18px 20px;
    min-height: 220px;
    border-radius: 16px;
  }
  
  .project-container-box-partners span {
    font-size: 1rem;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
  
  .project-container-box-partners span::before {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  
  .project-container-box-partners ul li {
    font-size: 0.82rem;
    padding: 5px 0 5px 24px;
    line-height: 1.5;
  }
  
  .project-container-box-partners ul li::before {
    width: 5px;
    height: 5px;
  }
  
  .project-container-box-partners .card-number {
    font-size: 2.5rem;
    bottom: 12px;
    right: 16px;
  }
  
  /* Third card spans full width on tablet portrait */
  .project-container-box-partners:nth-child(3) {
    grid-column: span 2;
    min-height: 160px;
  }
  
  .project-container-box-partners:nth-child(3) ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 16px;
  }
}

/* Mobile (320px - 576px) - 1 column */
@media screen and (max-width: 576px) {
  .section-container-partners {
    padding: 30px 14px 50px;
    margin-top: 40px;
  }
  
  .project-container-about-partners {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
  }
  
  .section-heading-partners {
    grid-column: 1;
    width: 100%;
    padding: 20px 18px;
    border-radius: 16px;
    margin-bottom: 0;
  }
  
  .section-heading-partners::before,
  .section-heading-partners::after {
    width: 25px;
    height: 25px;
    border-width: 2px;
  }
  
  .section-heading-partners span {
    font-size: 1.2rem;
    border-bottom-width: 3px;
    padding-bottom: 8px;
  }
  
  .section-heading-partners p {
    font-size: 0.82rem;
    margin-top: 12px;
    line-height: 1.6;
  }
  
  .project-container-box-partners {
    grid-row: auto;
    padding: 20px 16px 18px;
    min-height: 180px;
    border-radius: 14px;
  }
  
  .project-container-box-partners::before {
    display: none;
  }
  
  .project-container-box-partners::after {
    height: 3px;
  }
  
  .project-container-box-partners span {
    font-size: 0.95rem;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  
  .project-container-box-partners span::before {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  
  .project-container-box-partners ul li {
    font-size: 0.8rem;
    padding: 5px 0 5px 22px;
    line-height: 1.5;
  }
  
  .project-container-box-partners ul li::before {
    width: 4px;
    height: 4px;
  }
  
  .project-container-box-partners ul li:hover {
    padding-left: 28px;
    transform: translateX(4px);
  }
  
  .project-container-box-partners .card-number {
    font-size: 2rem;
    bottom: 10px;
    right: 14px;
  }
  
  /* Third card normal on mobile */
  .project-container-box-partners:nth-child(3) {
    grid-column: span 1;
    min-height: 160px;
  }
  
  .project-container-box-partners:nth-child(3) ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
}

/* Extra Small Devices (320px) */
@media screen and (max-width: 380px) {
  .section-container-partners {
    padding: 20px 10px 40px;
    margin-top: 30px;
  }
  
  .project-container-about-partners {
    gap: 10px;
  }
  
  .section-heading-partners {
    padding: 16px 14px;
    border-radius: 12px;
  }
  
  .section-heading-partners span {
    font-size: 1rem;
  }
  
  .section-heading-partners p {
    font-size: 0.78rem;
    margin-top: 10px;
  }
  
  .project-container-box-partners {
    padding: 16px 12px 16px;
    min-height: 150px;
    border-radius: 12px;
  }
  
  .project-container-box-partners span {
    font-size: 0.85rem;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 6px;
  }
  
  .project-container-box-partners span::before {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
  
  .project-container-box-partners ul li {
    font-size: 0.76rem;
    padding: 4px 0 4px 20px;
  }
  
  .project-container-box-partners .card-number {
    font-size: 1.5rem;
    bottom: 8px;
    right: 10px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .project-container-box-partners,
  .project-container-box-partners ul li,
  .project-container-box-partners span::after,
  .project-container-box-partners::before,
  .project-container-box-partners::after,
  .section-heading-partners {
    animation: none !important;
    transition: none !important;
  }
  
  .project-container-box-partners:hover {
    transform: none !important;
  }
  
  .project-container-box-partners:hover::before {
    opacity: 0 !important;
  }
  
  .project-container-box-partners:hover::after {
    transform: scaleX(0) !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .project-container-box-partners {
    border: 2px solid #42b300;
    background: white;
  }
  
  .project-container-box-partners:nth-child(2) {
    border-color: #f57c00;
  }
  
  .project-container-box-partners ul li::before {
    background: #42b300 !important;
  }
  
  .project-container-box-partners:nth-child(2) ul li::before {
    background: #f57c00 !important;
  }
  
  .project-container-box-partners::before {
    display: none;
  }
  
  .project-container-box-partners::after {
    display: none;
  }
  
  .section-heading-partners {
    border: 2px solid #42b300;
    background: white;
  }
  
  .section-heading-partners span {
    border-bottom-color: #42b300;
  }
}

/* Focus States */
.project-container-box-partners:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 2px;
  border-radius: 20px;
}

.project-container-box-partners:nth-child(2):focus-within {
  outline-color: #f57c00;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

@keyframes fadeInUpPartners {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading-partners {
  opacity: 0;
  animation: fadeInUpPartners 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.project-container-box-partners {
  opacity: 0;
  animation: fadeInUpPartners 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.project-container-box-partners:nth-child(1) {
  animation-delay: 0.2s;
}
.project-container-box-partners:nth-child(2) {
  animation-delay: 0.3s;
}
.project-container-box-partners:nth-child(3) {
  animation-delay: 0.4s;
}

/* ============================================
   LETTER SECTION - MASTER CONTAINER
   ============================================ */

.section-container-letter {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: -50px;
}

/* Background decorative elements */
.section-container-letter::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-letter::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   LETTER CONTAINER - GRID LAYOUT
   ============================================ */

.letter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ============================================
   FIRST ROW: SECTION HEADING (Spans full width)
   ============================================ */

.section-heading-letter {
  grid-column: 1 / -1;
  grid-row: 1;
  text-align: center;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  position: relative;
  width: 90%;
  margin: 0 auto;
}

/* Decorative corner accents */
.section-heading-letter::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 50px;
  height: 50px;
  border-top: 3px solid #42b300;
  border-left: 3px solid #42b300;
  border-radius: 24px 0 0 0;
  opacity: 0.5;
}

.section-heading-letter::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 50px;
  height: 50px;
  border-bottom: 3px solid #f57c00;
  border-right: 3px solid #f57c00;
  border-radius: 0 0 24px 0;
  opacity: 0.5;
}

.section-heading-letter h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 4px solid #f57c00;
  letter-spacing: -0.02em;
  position: relative;
  margin: 0;
}

.section-heading-letter h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  border-radius: 0 0 2px 2px;
}

/* ============================================
   SECOND ROW: TWO COLUMNS
   ============================================ */

/* Left Column - Full Image */
.letter-img {
  grid-column: 1;
  grid-row: 2;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(66, 179, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: #ffffff;
  min-height: 400px;
}

.letter-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.08);
  border-color: rgba(66, 179, 0, 0.3);
}

.letter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 400px;
}

.letter-img:hover img {
  transform: scale(1.02);
}

/* ============================================
   RIGHT COLUMN: DESCRIPTION CONTENT
   ============================================ */

.letter-desc {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(66, 179, 0, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.letter-desc:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.08);
  border-color: rgba(66, 179, 0, 0.12);
}

/* ============================================
   RIGHT COLUMN IMAGE - FULL WIDTH (NO BORDER-RADIUS)
   ============================================ */

.letter-desc img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-radius: 0 !important;
}

.letter-desc:hover img {
  transform: scale(1.02);
}

/* ============================================
   RIGHT COLUMN TEXT CONTENT
   ============================================ */

.letter-desc h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
  margin: 20px 24px 8px 24px;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.letter-desc h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  border-radius: 4px;
}

.letter-desc p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin: 10px 24px 24px 24px;
  opacity: 0.9;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-letter {
    padding: 80px 60px 100px;
  }
  
  .letter {
    gap: 40px;
    max-width: 1600px;
  }
  
  .section-heading-letter {
    padding: 40px 50px;
  }
  
  .section-heading-letter h3 {
    font-size: 2.6rem;
  }
  
  .letter-img {
    border-radius: 28px;
    min-height: 500px;
  }
  
  .letter-img img {
    min-height: 500px;
  }
  
  .letter-desc {
    border-radius: 28px;
  }
  
  .letter-desc img {
    height: 250px;
  }
  
  .letter-desc h2 {
    font-size: 1.8rem;
    margin: 24px 30px 10px 30px;
  }
  
  .letter-desc p {
    font-size: 1.05rem;
    margin: 12px 30px 28px 30px;
    line-height: 1.9;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-letter {
    padding: 60px 40px 80px;
  }
  
  .letter {
    gap: 30px;
  }
  
  .section-heading-letter h3 {
    font-size: 2rem;
  }
  
  .letter-img {
    min-height: 380px;
  }
  
  .letter-img img {
    min-height: 380px;
  }
  
  .letter-desc img {
    height: 180px;
  }
  
  .letter-desc h2 {
    font-size: 1.4rem;
    margin: 18px 20px 6px 20px;
  }
  
  .letter-desc p {
    font-size: 0.95rem;
    margin: 8px 20px 20px 20px;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-letter {
    padding: 50px 30px 70px;
  }
  
  .letter {
    gap: 25px;
    padding: 0 15px;
  }
  
  .section-heading-letter {
    padding: 25px 30px;
    width: 100%;
  }
  
  .section-heading-letter h3 {
    font-size: 1.7rem;
  }
  
  .section-heading-letter::before,
  .section-heading-letter::after {
    width: 35px;
    height: 35px;
  }
  
  .letter-img {
    border-radius: 18px;
    min-height: 320px;
  }
  
  .letter-img img {
    min-height: 320px;
  }
  
  .letter-desc {
    border-radius: 18px;
  }
  
  .letter-desc img {
    height: 160px;
  }
  
  .letter-desc h2 {
    font-size: 1.3rem;
    margin: 16px 18px 6px 18px;
  }
  
  .letter-desc p {
    font-size: 0.9rem;
    margin: 8px 18px 18px 18px;
    line-height: 1.7;
  }
}

/* Tablet Portrait (577px - 768px) - Single column */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-letter {
    padding: 40px 20px 60px;
    margin-top: -30px;
  }
  
  .letter {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    padding: 0 10px;
  }
  
  .section-heading-letter {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding: 20px 25px;
  }
  
  .section-heading-letter h3 {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
  
  .section-heading-letter::before,
  .section-heading-letter::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  
  .letter-img {
    grid-column: 1;
    grid-row: 2;
    min-height: 280px;
  }
  
  .letter-img img {
    min-height: 280px;
  }
  
  .letter-desc {
    grid-column: 1;
    grid-row: 3;
    border-radius: 18px;
  }
  
  .letter-desc img {
    height: 180px;
  }
  
  .letter-desc h2 {
    font-size: 1.3rem;
    margin: 16px 20px 6px 20px;
  }
  
  .letter-desc p {
    font-size: 0.9rem;
    margin: 8px 20px 20px 20px;
  }
}

/* Mobile (320px - 576px) - Single column */
@media screen and (max-width: 576px) {
  .section-container-letter {
    padding: 30px 14px 50px;
    margin-top: -20px;
  }
  
  .letter {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
    padding: 0;
  }
  
  .section-heading-letter {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
  }
  
  .section-heading-letter::before,
  .section-heading-letter::after {
    width: 25px;
    height: 25px;
    border-width: 2px;
    border-radius: 16px 0 0 0;
  }
  
  .section-heading-letter::after {
    border-radius: 0 0 16px 0;
  }
  
  .section-heading-letter h3 {
    font-size: 1.2rem;
    padding-bottom: 8px;
    border-bottom-width: 3px;
  }
  
  .section-heading-letter h3::after {
    height: 3px;
  }
  
  .letter-img {
    grid-column: 1;
    grid-row: 2;
    border-radius: 14px;
    min-height: 220px;
  }
  
  .letter-img img {
    min-height: 220px;
  }
  
  .letter-desc {
    grid-column: 1;
    grid-row: 3;
    border-radius: 14px;
  }
  
  .letter-desc img {
    height: 150px;
  }
  
  .letter-desc h2 {
    font-size: 1.1rem;
    margin: 14px 16px 4px 16px;
  }
  
  .letter-desc h2::after {
    width: 40px;
    height: 2px;
  }
  
  .letter-desc p {
    font-size: 0.85rem;
    margin: 6px 16px 16px 16px;
    line-height: 1.6;
  }
}

/* Extra Small Devices (320px) */
@media screen and (max-width: 380px) {
  .section-container-letter {
    padding: 20px 10px 40px;
    margin-top: -10px;
  }
  
  .section-heading-letter {
    padding: 14px 14px;
    border-radius: 12px;
  }
  
  .section-heading-letter h3 {
    font-size: 1rem;
    padding-bottom: 6px;
  }
  
  .section-heading-letter::before,
  .section-heading-letter::after {
    width: 20px;
    height: 20px;
  }
  
  .letter-img {
    border-radius: 12px;
    min-height: 180px;
  }
  
  .letter-img img {
    min-height: 180px;
  }
  
  .letter-desc {
    border-radius: 12px;
  }
  
  .letter-desc img {
    height: 120px;
  }
  
  .letter-desc h2 {
    font-size: 1rem;
    margin: 12px 14px 4px 14px;
  }
  
  .letter-desc p {
    font-size: 0.8rem;
    margin: 6px 14px 14px 14px;
    line-height: 1.5;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .letter-img,
  .letter-img img,
  .letter-desc,
  .letter-desc img {
    animation: none !important;
    transition: none !important;
  }
  
  .letter-img:hover,
  .letter-desc:hover {
    transform: none !important;
  }
  
  .letter-img:hover img,
  .letter-desc:hover img {
    transform: none !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .section-heading-letter {
    border: 2px solid #42b300;
    background: white;
  }
  
  .section-heading-letter h3 {
    border-bottom-color: #42b300;
  }
  
  .letter-img {
    border: 2px solid #42b300;
  }
  
  .letter-desc {
    border: 2px solid #42b300;
    background: white;
  }
  
  .letter-desc h2::after {
    background: #42b300;
  }
}

/* Focus States */
.letter-img:focus-within,
.letter-desc:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 3px;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

@keyframes fadeInUpLetter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading-letter {
  opacity: 0;
  animation: fadeInUpLetter 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.letter-img {
  opacity: 0;
  animation: fadeInUpLetter 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.letter-desc {
  opacity: 0;
  animation: fadeInUpLetter 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #42b300, #f57c00);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2e7d32, #e65100);
}
/* ============================================
   STAFF SECTION - MASTER CONTAINER
   ============================================ */

.section-container-activities {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

/* Background decorative elements */
.section-container-activities::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-activities::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   STAFFS CONTAINER
   ============================================ */

.staffs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION HEADING
   ============================================ */

.section-heading-focus {
  text-align: center;
  padding: 30px 40px 40px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  position: relative;
}

/* Decorative corner accents */
.section-heading-focus::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 50px;
  height: 50px;
  border-top: 3px solid #42b300;
  border-left: 3px solid #42b300;
  border-radius: 24px 0 0 0;
  opacity: 0.5;
}

.section-heading-focus::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 50px;
  height: 50px;
  border-bottom: 3px solid #f57c00;
  border-right: 3px solid #f57c00;
  border-radius: 0 0 24px 0;
  opacity: 0.5;
}

.section-heading-focus span {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 4px solid #f57c00;
  letter-spacing: -0.02em;
  position: relative;
  width: 70%;
}

.section-heading-focus span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  border-radius: 0 0 2px 2px;
}

.section-heading-focus p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ============================================
   STAFF GRID CONTAINER
   ============================================ */

.service-container2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 10px;
}

/* ============================================
   STAFF CARD - ATTRACTIVE DESIGN
   ============================================ */

.service-box1 {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px 20px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 220px;
}

/* Card gradient background on hover */
.service-box1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #42b300, #f57c00, #42b300);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: gradientShiftStaff 3s ease-in-out infinite;
}

@keyframes gradientShiftStaff {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.service-box1:hover::before {
  opacity: 1;
}

/* Top accent bar - thicker on hover */
.service-box1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
}

.service-box1:hover::after {
  transform: scaleX(1);
}

.service-box1:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.10);
  border-color: rgba(66, 179, 0, 0.15);
}

/* ============================================
   STAFF HEADING
   ============================================ */

.service-box-heading2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

/* ============================================
   STAFF IMAGE / ICON - ROUNDED RECTANGLE (10px)
   ============================================ */

.service-box-icon2 {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid rgba(66, 179, 0, 0.10);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  background: #f8fafc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* Glowing border effect */
.service-box-icon2::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  padding: 4px;
  background: linear-gradient(135deg, #42b300, #f57c00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.service-box1:hover .service-box-icon2::before {
  opacity: 1;
}

/* Image overlay gradient */
.service-box-icon2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.10));
  border-radius: 0 0 12px 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-box1:hover .service-box-icon2::after {
  opacity: 1;
}

.service-box-icon2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
}

.service-box1:hover .service-box-icon2 img {
  transform: scale(1.08);
}

/* ============================================
   STAFF TEXT CONTENT
   ============================================ */

.services-box-heading-text1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.services-box-heading-text1 span {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  margin-top: 4px;
}

/* Position badge - more attractive */
.services-box-heading-text1 strong {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #42b300, #2e7d32);
  padding: 5px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 4px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(66, 179, 0, 0.20);
  transition: all 0.3s ease;
}

.service-box1:hover .services-box-heading-text1 strong {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 179, 0, 0.30);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-activities {
    padding: 80px 60px 100px;
  }
  
  .section-heading-focus {
    padding: 40px 50px 50px;
  }
  
  .section-heading-focus span {
    font-size: 2.6rem;
  }
  
  .section-heading-focus p {
    font-size: 1.15rem;
  }
  
  .service-container2 {
    gap: 30px;
  }
  
  .service-box1 {
    padding: 32px 24px 28px;
    min-height: 250px;
    border-radius: 24px;
  }
  
  .service-box-icon2 {
    width: 120px;
    height: 120px;
    border-radius: 14px;
  }
  
  .service-box-icon2::before {
    border-radius: 16px;
  }
  
  .services-box-heading-text1 span {
    font-size: 1.15rem;
  }
  
  .services-box-heading-text1 strong {
    font-size: 0.85rem;
    padding: 6px 18px;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-activities {
    padding: 60px 40px 80px;
  }
  
  .section-heading-focus span {
    font-size: 2rem;
  }
  
  .section-heading-focus p {
    font-size: 0.95rem;
  }
  
  .service-container2 {
    gap: 20px;
  }
  
  .service-box1 {
    padding: 24px 18px 22px;
    min-height: 200px;
  }
  
  .service-box-icon2 {
    width: 90px;
    height: 90px;
    border-radius: 12px;
  }
  
  .services-box-heading-text1 span {
    font-size: 0.95rem;
  }
}

/* Tablet Landscape (992px - 1199px) - 3 columns */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-activities {
    padding: 50px 30px 70px;
  }
  
  .staffs {
    padding: 0 15px;
  }
  
  .section-heading-focus {
    padding: 25px 30px 30px;
  }
  
  .section-heading-focus span {
    font-size: 1.7rem;
    width: 80%;
  }
  
  .section-heading-focus p {
    font-size: 0.9rem;
  }
  
  .section-heading-focus::before,
  .section-heading-focus::after {
    width: 35px;
    height: 35px;
  }
  
  .service-container2 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .service-box1 {
    padding: 22px 16px 20px;
    min-height: 180px;
    border-radius: 18px;
  }
  
  .service-box-icon2 {
    width: 80px;
    height: 80px;
    border-radius: 10px;
  }
  
  .services-box-heading-text1 span {
    font-size: 0.9rem;
  }
  
  .services-box-heading-text1 strong {
    font-size: 0.75rem;
    padding: 4px 14px;
  }
}

/* Tablet Portrait (577px - 768px) - 2 columns */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-activities {
    padding: 40px 20px 60px;
    margin-top: 60px;
  }
  
  .staffs {
    padding: 0 10px;
  }
  
  .section-heading-focus {
    padding: 20px 25px 25px;
    border-radius: 18px;
  }
  
  .section-heading-focus span {
    font-size: 1.5rem;
    width: 100%;
    padding-bottom: 10px;
    border-bottom-width: 3px;
  }
  
  .section-heading-focus p {
    font-size: 0.85rem;
    margin-top: 14px;
    line-height: 1.7;
  }
  
  .section-heading-focus::before,
  .section-heading-focus::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  
  .service-container2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .service-box1 {
    padding: 20px 14px 18px;
    min-height: 170px;
    border-radius: 16px;
  }
  
  .service-box-icon2 {
    width: 70px;
    height: 70px;
    border-radius: 10px;
  }
  
  .services-box-heading-text1 span {
    font-size: 0.85rem;
  }
  
  .services-box-heading-text1 strong {
    font-size: 0.7rem;
    padding: 3px 12px;
  }
}

/* Mobile (320px - 576px) - 2 columns */
@media screen and (max-width: 576px) {
  .section-container-activities {
    padding: 30px 14px 50px;
    margin-top: 40px;
  }
  
  .staffs {
    padding: 0;
  }
  
  .section-heading-focus {
    padding: 16px 18px 20px;
    border-radius: 16px;
  }
  
  .section-heading-focus::before,
  .section-heading-focus::after {
    width: 25px;
    height: 25px;
    border-width: 2px;
    border-radius: 16px 0 0 0;
  }
  
  .section-heading-focus::after {
    border-radius: 0 0 16px 0;
  }
  
  .section-heading-focus span {
    font-size: 1.2rem;
    width: 100%;
    padding-bottom: 8px;
    border-bottom-width: 3px;
  }
  
  .section-heading-focus span::after {
    height: 3px;
  }
  
  .section-heading-focus p {
    font-size: 0.82rem;
    margin-top: 12px;
    line-height: 1.6;
  }
  
  .service-container2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .service-box1 {
    padding: 16px 12px 14px;
    min-height: 150px;
    border-radius: 14px;
  }
  
  .service-box1::before {
    border-radius: 14px;
  }
  
  .service-box1::after {
    border-radius: 14px 14px 0 0;
  }
  
  .service-box-icon2 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border-width: 2px;
  }
  
  .service-box-icon2::before {
    border-radius: 12px;
  }
  
  .services-box-heading-text1 span {
    font-size: 0.82rem;
  }
  
  .services-box-heading-text1 strong {
    font-size: 0.68rem;
    padding: 3px 10px;
  }
}

/* Extra Small Devices (320px) - 1 column */
@media screen and (max-width: 380px) {
  .section-container-activities {
    padding: 20px 10px 40px;
    margin-top: 30px;
  }
  
  .section-heading-focus {
    padding: 14px 14px 16px;
    border-radius: 12px;
  }
  
  .section-heading-focus span {
    font-size: 1rem;
    padding-bottom: 6px;
  }
  
  .section-heading-focus::before,
  .section-heading-focus::after {
    width: 20px;
    height: 20px;
  }
  
  .section-heading-focus p {
    font-size: 0.78rem;
    margin-top: 10px;
  }
  
  .service-container2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .service-box1 {
    padding: 16px 14px 14px;
    min-height: 100px;
    border-radius: 12px;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }
  
  .service-box-heading2 {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  
  .service-box-icon2 {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    flex-shrink: 0;
  }
  
  .services-box-heading-text1 {
    align-items: flex-start;
  }
  
  .services-box-heading-text1 span {
    font-size: 0.85rem;
    text-align: left;
  }
  
  .services-box-heading-text1 strong {
    font-size: 0.7rem;
    padding: 2px 12px;
    text-align: left;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .service-box1,
  .service-box1::before,
  .service-box1::after,
  .service-box-icon2 img,
  .service-box-icon2::before,
  .service-box-icon2::after,
  .services-box-heading-text1 strong {
    animation: none !important;
    transition: none !important;
  }
  
  .service-box1:hover {
    transform: none !important;
  }
  
  .service-box1:hover::before {
    opacity: 0 !important;
  }
  
  .service-box1:hover::after {
    transform: scaleX(0) !important;
  }
  
  .service-box1:hover .service-box-icon2 img {
    transform: none !important;
  }
  
  .service-box1:hover .services-box-heading-text1 strong {
    transform: none !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .section-heading-focus {
    border: 2px solid #42b300;
    background: white;
  }
  
  .section-heading-focus span {
    border-bottom-color: #42b300;
  }
  
  .service-box1 {
    border: 2px solid #42b300;
    background: white;
  }
  
  .service-box1::before {
    display: none;
  }
  
  .service-box1::after {
    display: none;
  }
  
  .services-box-heading-text1 strong {
    background: #2e7d32;
    color: white;
  }
  
  .service-box-icon2::before {
    display: none;
  }
  
  .service-box-icon2::after {
    display: none;
  }
}

/* Focus States */
.service-box1:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 2px;
  border-radius: 16px;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

@keyframes fadeInUpStaff {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading-focus {
  opacity: 0;
  animation: fadeInUpStaff 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.service-box1 {
  opacity: 0;
  animation: fadeInUpStaff 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-box1:nth-child(1) { animation-delay: 0.15s; }
.service-box1:nth-child(2) { animation-delay: 0.2s; }
.service-box1:nth-child(3) { animation-delay: 0.25s; }
.service-box1:nth-child(4) { animation-delay: 0.3s; }
.service-box1:nth-child(5) { animation-delay: 0.35s; }
.service-box1:nth-child(6) { animation-delay: 0.4s; }
.service-box1:nth-child(7) { animation-delay: 0.45s; }
.service-box1:nth-child(8) { animation-delay: 0.5s; }

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #42b300, #f57c00);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2e7d32, #e65100);
}

/* ============================================
   DONORS/PARTNERS SECTION - MASTER CONTAINER
   ============================================ */

.section-container-donors-part {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

/* Background decorative elements */
.section-container-donors-part::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-donors-part::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   DONORS CONTAINER
   ============================================ */

.section-container-donors-part {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION HEADING
   ============================================ */

.section-heading-partners-donors-part {
  text-align: center;
  padding: 30px 40px 35px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  position: relative;
}

/* Decorative corner accents */
.section-heading-partners-donors-part::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 50px;
  height: 50px;
  border-top: 3px solid #42b300;
  border-left: 3px solid #42b300;
  border-radius: 24px 0 0 0;
  opacity: 0.5;
}

.section-heading-partners-donors-part::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 50px;
  height: 50px;
  border-bottom: 3px solid #f57c00;
  border-right: 3px solid #f57c00;
  border-radius: 0 0 24px 0;
  opacity: 0.5;
}

.section-heading-partners-donors-part h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 4px solid #f57c00;
  letter-spacing: -0.02em;
  position: relative;
  margin: 0;
  text-transform: uppercase;
}

.section-heading-partners-donors-part h3::before {
  content: '🤝';
  font-size: 1.8rem;
  margin-right: 12px;
  display: inline-block;
  animation: handshakePulse 2s ease-in-out infinite;
}

@keyframes handshakePulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(-5deg);
  }
}

.section-heading-partners-donors-part h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  border-radius: 0 0 2px 2px;
}

/* ============================================
   DONORS GRID CONTAINER - 2 COLUMNS
   ============================================ */

.service-container-partners-donors-part {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 10px;
}

/* ============================================
   DONOR CARD - FULL WIDTH IMAGE
   ============================================ */

.service-box-partners-part {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
}

/* Gradient border on hover */
.service-box-partners-part::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #42b300, #f57c00, #42b300);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: gradientShiftDonors 3s ease-in-out infinite;
}

@keyframes gradientShiftDonors {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.service-box-partners-part:hover::before {
  opacity: 1;
}

/* Top accent bar */
.service-box-partners-part::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
}

.service-box-partners-part:hover::after {
  transform: scaleX(1);
}

.service-box-partners-part:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.10);
  border-color: rgba(66, 179, 0, 0.15);
}

/* ============================================
   DONOR HEADING
   ============================================ */

.service-box-heading-partners-donors-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}

/* ============================================
   DONOR IMAGE / LOGO - FULL WIDTH
   ============================================ */

.service-box-icon2-donors-part {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border: none;
  border-radius: 20px 20px 0 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  background: #f8fafc;
  box-shadow: none;
}

/* Glowing border effect - bottom only */
.service-box-icon2-donors-part::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.service-box-partners-part:hover .service-box-icon2-donors-part::before {
  opacity: 1;
}

/* Image overlay gradient */
.service-box-icon2-donors-part::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-box-partners-part:hover .service-box-icon2-donors-part::after {
  opacity: 1;
}

.service-box-icon2-donors-part img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 0;
  padding: 0;
  background: #ffffff;
}

.service-box-partners-part:hover .service-box-icon2-donors-part img {
  transform: scale(1.05);
}

/* ============================================
   DONOR NAME TEXT - INSIDE CARD BOTTOM
   ============================================ */

.services-box-heading-text-partners-donors-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 20px 20px;
  background: rgba(255, 255, 255, 0.98);
  flex: 1;
}

.services-box-heading-text-partners-donors-part span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-box-partners-part:hover .services-box-heading-text-partners-donors-part span {
  color: #42b300;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-donors-part {
    padding: 80px 60px 100px;
  }
  
  .section-heading-partners-donors-part {
    padding: 40px 50px 45px;
  }
  
  .section-heading-partners-donors-part h3 {
    font-size: 2.6rem;
  }
  
  .service-container-partners-donors-part {
    gap: 30px;
  }
  
  .service-box-partners-part {
    min-height: 250px;
    border-radius: 24px;
  }
  
  .service-box-partners-part::before {
    border-radius: 24px;
  }
  
  .service-box-partners-part::after {
    border-radius: 24px 24px 0 0;
  }
  
  .service-box-icon2-donors-part {
    height: 250px;
    border-radius: 24px 24px 0 0;
  }
  
  .services-box-heading-text-partners-donors-part {
    padding: 22px 24px 24px;
  }
  
  .services-box-heading-text-partners-donors-part span {
    font-size: 1.2rem;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-donors-part {
    padding: 60px 40px 80px;
  }
  
  .section-heading-partners-donors-part h3 {
    font-size: 2rem;
  }
  
  .service-container-partners-donors-part {
    gap: 20px;
  }
  
  .service-box-partners-part {
    min-height: 220px;
  }
  
  .service-box-icon2-donors-part {
    height: 180px;
  }
  
  .services-box-heading-text-partners-donors-part span {
    font-size: 1rem;
  }
}

/* Tablet Landscape (992px - 1199px) - 2 columns */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-donors-part {
    padding: 50px 30px 70px;
  }
  
  .section-heading-partners-donors-part {
    padding: 25px 30px 30px;
  }
  
  .section-heading-partners-donors-part h3 {
    font-size: 1.7rem;
  }
  
  .section-heading-partners-donors-part::before,
  .section-heading-partners-donors-part::after {
    width: 35px;
    height: 35px;
  }
  
  .service-container-partners-donors-part {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-box-partners-part {
    min-height: 200px;
    border-radius: 18px;
  }
  
  .service-box-partners-part::before {
    border-radius: 18px;
  }
  
  .service-box-partners-part::after {
    border-radius: 18px 18px 0 0;
  }
  
  .service-box-icon2-donors-part {
    height: 160px;
    border-radius: 18px 18px 0 0;
  }
  
  .services-box-heading-text-partners-donors-part {
    padding: 16px 18px 18px;
  }
  
  .services-box-heading-text-partners-donors-part span {
    font-size: 0.95rem;
  }
}

/* Tablet Portrait (577px - 768px) - 2 columns */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-donors-part {
    padding: 40px 20px 60px;
  }
  
  .section-heading-partners-donors-part {
    padding: 20px 25px 25px;
    border-radius: 18px;
  }
  
  .section-heading-partners-donors-part h3 {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
  
  .section-heading-partners-donors-part::before,
  .section-heading-partners-donors-part::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  
  .section-heading-partners-donors-part h3::before {
    font-size: 1.4rem;
  }
  
  .service-container-partners-donors-part {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .service-box-partners-part {
    min-height: 180px;
    border-radius: 16px;
  }
  
  .service-box-partners-part::before {
    border-radius: 16px;
  }
  
  .service-box-partners-part::after {
    border-radius: 16px 16px 0 0;
  }
  
  .service-box-icon2-donors-part {
    height: 140px;
    border-radius: 16px 16px 0 0;
  }
  
  .services-box-heading-text-partners-donors-part {
    padding: 14px 16px 16px;
  }
  
  .services-box-heading-text-partners-donors-part span {
    font-size: 0.9rem;
  }
}

/* Mobile (320px - 576px) - 1 column */
@media screen and (max-width: 576px) {
  .section-container-donors-part {
    padding: 30px 14px 50px;
  }
  
  .section-heading-partners-donors-part {
    padding: 16px 18px 20px;
    border-radius: 16px;
  }
  
  .section-heading-partners-donors-part::before,
  .section-heading-partners-donors-part::after {
    width: 25px;
    height: 25px;
    border-width: 2px;
    border-radius: 16px 0 0 0;
  }
  
  .section-heading-partners-donors-part::after {
    border-radius: 0 0 16px 0;
  }
  
  .section-heading-partners-donors-part h3 {
    font-size: 1.2rem;
    padding-bottom: 8px;
  }
  
  .section-heading-partners-donors-part h3::before {
    font-size: 1.2rem;
    margin-right: 8px;
  }
  
  .service-container-partners-donors-part {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .service-box-partners-part {
    min-height: 160px;
    border-radius: 14px;
  }
  
  .service-box-partners-part::before {
    border-radius: 14px;
  }
  
  .service-box-partners-part::after {
    border-radius: 14px 14px 0 0;
  }
  
  .service-box-icon2-donors-part {
    height: 140px;
    border-radius: 14px 14px 0 0;
  }
  
  .services-box-heading-text-partners-donors-part {
    padding: 14px 16px 16px;
  }
  
  .services-box-heading-text-partners-donors-part span {
    font-size: 0.9rem;
  }
}

/* Extra Small Devices (320px) - 1 column */
@media screen and (max-width: 380px) {
  .section-container-donors-part {
    padding: 20px 10px 40px;
  }
  
  .section-heading-partners-donors-part {
    padding: 14px 14px 16px;
    border-radius: 12px;
  }
  
  .section-heading-partners-donors-part h3 {
    font-size: 1rem;
    padding-bottom: 6px;
  }
  
  .section-heading-partners-donors-part::before,
  .section-heading-partners-donors-part::after {
    width: 20px;
    height: 20px;
  }
  
  .service-container-partners-donors-part {
    gap: 10px;
  }
  
  .service-box-partners-part {
    min-height: 140px;
    border-radius: 12px;
  }
  
  .service-box-partners-part::before {
    border-radius: 12px;
  }
  
  .service-box-partners-part::after {
    border-radius: 12px 12px 0 0;
  }
  
  .service-box-icon2-donors-part {
    height: 110px;
    border-radius: 12px 12px 0 0;
  }
  
  .services-box-heading-text-partners-donors-part {
    padding: 12px 14px 14px;
  }
  
  .services-box-heading-text-partners-donors-part span {
    font-size: 0.8rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .service-box-partners-part,
  .service-box-partners-part::before,
  .service-box-partners-part::after,
  .service-box-icon2-donors-part img,
  .service-box-icon2-donors-part::before,
  .service-box-icon2-donors-part::after,
  .section-heading-partners-donors-part h3::before {
    animation: none !important;
    transition: none !important;
  }
  
  .service-box-partners-part:hover {
    transform: none !important;
  }
  
  .service-box-partners-part:hover::before {
    opacity: 0 !important;
  }
  
  .service-box-partners-part:hover::after {
    transform: scaleX(0) !important;
  }
  
  .service-box-partners-part:hover .service-box-icon2-donors-part img {
    transform: none !important;
  }
  
  .service-box-partners-part:hover .services-box-heading-text-partners-donors-part span {
    color: #1f2937 !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .section-heading-partners-donors-part {
    border: 2px solid #42b300;
    background: white;
  }
  
  .section-heading-partners-donors-part h3 {
    border-bottom-color: #42b300;
  }
  
  .service-box-partners-part {
    border: 2px solid #42b300;
    background: white;
  }
  
  .service-box-partners-part::before {
    display: none;
  }
  
  .service-box-partners-part::after {
    display: none;
  }
  
  .service-box-icon2-donors-part::before {
    display: none;
  }
  
  .service-box-icon2-donors-part::after {
    display: none;
  }
}

/* Focus States */
.service-box-partners-part:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 2px;
  border-radius: 16px;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

@keyframes fadeInUpDonors {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading-partners-donors-part {
  opacity: 0;
  animation: fadeInUpDonors 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.service-box-partners-part {
  opacity: 0;
  animation: fadeInUpDonors 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-box-partners-part:nth-child(1) { animation-delay: 0.15s; }
.service-box-partners-part:nth-child(2) { animation-delay: 0.2s; }
.service-box-partners-part:nth-child(3) { animation-delay: 0.25s; }
.service-box-partners-part:nth-child(4) { animation-delay: 0.3s; }
.service-box-partners-part:nth-child(5) { animation-delay: 0.35s; }
.service-box-partners-part:nth-child(6) { animation-delay: 0.4s; }
.service-box-partners-part:nth-child(7) { animation-delay: 0.45s; }
.service-box-partners-part:nth-child(8) { animation-delay: 0.5s; }

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #42b300, #f57c00);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2e7d32, #e65100);
}

/* ============================================
   ACTIVITIES SECTION - MASTER CONTAINER
   ============================================ */

.section-container-activities {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

/* Background decorative elements */
.section-container-activities::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-activities::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   ALL ACTIVITIES CONTAINER - GRID LAYOUT
   ============================================ */

.all-activities {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* ============================================
   FIRST ROW: SECTION HEADING (Organization)
   ============================================ */

.section-heading-organization {
  text-align: center;
  padding: 30px 40px 35px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  position: relative;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* Decorative corner accents */
.section-heading-organization::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 50px;
  height: 50px;
  border-top: 3px solid #42b300;
  border-left: 3px solid #42b300;
  border-radius: 24px 0 0 0;
  opacity: 0.5;
}

.section-heading-organization::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 50px;
  height: 50px;
  border-bottom: 3px solid #f57c00;
  border-right: 3px solid #f57c00;
  border-radius: 0 0 24px 0;
  opacity: 0.5;
}

.section-heading-organization span {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-block;
  padding-bottom: 12px;
  border-bottom: 4px solid #f57c00;
  letter-spacing: -0.02em;
  position: relative;
}

.section-heading-organization span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40%;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  border-radius: 0 0 2px 2px;
}

.section-heading-organization p {
  font-size: 1.05rem;
  color: #4b5563;
  line-height: 1.8;
  margin-top: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

/* ============================================
   SECOND ROW: ACTIVITIES HEADING
   ============================================ */

.section-heading-partners-activities {
  text-align: center;
  padding: 15px 20px 20px;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.section-heading-partners-activities h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  display: inline-block;
  padding: 10px 30px;
  border-bottom: 3px solid #f57c00;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  margin: 0;
}

.section-heading-partners-activities h3::before {
  content: '📋';
  font-size: 1.5rem;
  margin-right: 10px;
  display: inline-block;
}

.section-heading-partners-activities h3::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  border-radius: 0 0 2px 2px;
}

/* ============================================
   THIRD ROW: ACTIVITIES GRID - 3 COLUMNS
   ============================================ */

.service-container-focus-activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 10px;
}

/* ============================================
   ACTIVITY CARD
   ============================================ */

.service-box-focus {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

/* Gradient border on hover */
.service-box-focus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #42b300, #f57c00, #42b300);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: gradientShiftActivities 3s ease-in-out infinite;
}

@keyframes gradientShiftActivities {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.service-box-focus:hover::before {
  opacity: 1;
}

/* Top accent bar */
.service-box-focus::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px 20px 0 0;
}

.service-box-focus:hover::after {
  transform: scaleX(1);
}

.service-box-focus:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.10);
  border-color: rgba(66, 179, 0, 0.15);
}

/* ============================================
   ACTIVITY HEADING
   ============================================ */

.service-box-heading-partners-activities {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* ============================================
   ACTIVITY IMAGE - FULL WIDTH
   ============================================ */

.service-box-icon2 {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border: none;
  border-radius: 20px 20px 0 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  background: #f8fafc;
}

/* Image overlay gradient */
.service-box-icon2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-box-focus:hover .service-box-icon2::after {
  opacity: 1;
}

.service-box-icon2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box-focus:hover .service-box-icon2 img {
  transform: scale(1.05);
}

/* ============================================
   ACTIVITY TEXT CONTENT
   ============================================ */

.services-box-heading-text-partners-activities {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px 20px;
  background: rgba(255, 255, 255, 0.98);
  flex: 1;
  gap: 6px;
}

.services-box-heading-text-partners-activities p {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

/* ============================================
   DATE STYLING - NO BACKGROUND, NO BORDER-RADIUS, MINIMAL MARGIN
   ============================================ */

.services-box-heading-text-partners-activities span {
  display: block;
  text-align: center;
  margin: 0;
  padding: 0;
}

.services-box-heading-text-partners-activities span a {
  color: #42b300;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0;
}

.services-box-heading-text-partners-activities span a:hover {
  color: #f57c00;
}

.services-box-heading-text-partners-activities span a strong {
  font-weight: 600;
  border-bottom: 1px solid #f57c00;
  padding-bottom: 1px;
  display: inline-block;
}

/* ============================================
   READ MORE BUTTON
   ============================================ */

.services-box-heading-text-partners-activities a:last-child {
  display: inline-block;
  padding: 10px 10px;
  width: 300px;
  height: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000 !important;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 4px;
  border: none;
  letter-spacing: 0.5px;
}

.services-box-heading-text-partners-activities a:last-child:hover {
  transform: translateY(-2px) scale(1.03);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-activities {
    padding: 80px 60px 100px;
  }
  
  .section-heading-organization {
    padding: 40px 50px 45px;
  }
  
  .section-heading-organization span {
    font-size: 2.6rem;
  }
  
  .section-heading-organization p {
    font-size: 1.15rem;
  }
  
  .section-heading-partners-activities h3 {
    font-size: 2.2rem;
    padding: 12px 35px;
  }
  
  .service-container-focus-activities {
    gap: 30px;
  }
  
  .service-box-focus {
    min-height: 360px;
    border-radius: 24px;
  }
  
  .service-box-focus::before {
    border-radius: 24px;
  }
  
  .service-box-focus::after {
    border-radius: 24px 24px 0 0;
  }
  
  .service-box-icon2 {
    height: 240px;
    border-radius: 24px 24px 0 0;
  }
  
  .services-box-heading-text-partners-activities {
    padding: 22px 24px 24px;
    gap: 8px;
  }
  
  .services-box-heading-text-partners-activities p {
    font-size: 1.1rem;
    min-height: 50px;
  }
  
  .services-box-heading-text-partners-activities span a {
    font-size: 0.9rem;
  }
  
  .services-box-heading-text-partners-activities a:last-child {
    padding: 12px 24px;
    width: 160px;
    font-size: 1rem;
    margin-top: 6px;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-activities {
    padding: 60px 40px 80px;
  }
  
  .section-heading-organization span {
    font-size: 2rem;
  }
  
  .section-heading-organization p {
    font-size: 0.95rem;
  }
  
  .section-heading-partners-activities h3 {
    font-size: 1.8rem;
  }
  
  .service-container-focus-activities {
    gap: 20px;
  }
  
  .service-box-focus {
    min-height: 300px;
  }
  
  .service-box-icon2 {
    height: 180px;
  }
  
  .services-box-heading-text-partners-activities p {
    font-size: 0.95rem;
  }
}

/* Tablet Landscape (992px - 1199px) - 2 columns */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-activities {
    padding: 50px 30px 70px;
  }
  
  .all-activities {
    padding: 0 15px;
  }
  
  .section-heading-organization {
    width: 100%;
    padding: 25px 30px 30px;
  }
  
  .section-heading-organization span {
    font-size: 1.7rem;
  }
  
  .section-heading-organization p {
    font-size: 0.9rem;
  }
  
  .section-heading-organization::before,
  .section-heading-organization::after {
    width: 35px;
    height: 35px;
  }
  
  .section-heading-partners-activities h3 {
    font-size: 1.6rem;
    padding: 8px 25px;
  }
  
  .service-container-focus-activities {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .service-box-focus {
    min-height: 280px;
    border-radius: 18px;
  }
  
  .service-box-focus::before {
    border-radius: 18px;
  }
  
  .service-box-focus::after {
    border-radius: 18px 18px 0 0;
  }
  
  .service-box-icon2 {
    height: 170px;
    border-radius: 18px 18px 0 0;
  }
  
  .services-box-heading-text-partners-activities {
    padding: 16px 18px 18px;
    gap: 6px;
  }
  
  .services-box-heading-text-partners-activities p {
    font-size: 0.9rem;
    min-height: 38px;
  }
  
  .services-box-heading-text-partners-activities span a {
    font-size: 0.8rem;
  }
  
  .services-box-heading-text-partners-activities a:last-child {
    padding: 8px 18px;
    width: 130px;
    font-size: 0.85rem;
    margin-top: 4px;
  }
}

/* Tablet Portrait (577px - 768px) - 2 columns */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-activities {
    padding: 40px 20px 60px;
    margin-top: 60px;
  }
  
  .all-activities {
    padding: 0 10px;
  }
  
  .section-heading-organization {
    width: 100%;
    padding: 20px 25px 25px;
    border-radius: 18px;
  }
  
  .section-heading-organization span {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
  
  .section-heading-organization p {
    font-size: 0.85rem;
    margin-top: 14px;
    line-height: 1.7;
  }
  
  .section-heading-organization::before,
  .section-heading-organization::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  
  .section-heading-partners-activities h3 {
    font-size: 1.4rem;
    padding: 8px 20px;
  }
  
  .section-heading-partners-activities h3::before {
    font-size: 1.2rem;
  }
  
  .service-container-focus-activities {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .service-box-focus {
    min-height: 250px;
    border-radius: 16px;
  }
  
  .service-box-focus::before {
    border-radius: 16px;
  }
  
  .service-box-focus::after {
    border-radius: 16px 16px 0 0;
  }
  
  .service-box-icon2 {
    height: 150px;
    border-radius: 16px 16px 0 0;
  }
  
  .services-box-heading-text-partners-activities {
    padding: 14px 16px 16px;
    gap: 4px;
  }
  
  .services-box-heading-text-partners-activities p {
    font-size: 0.85rem;
    min-height: 36px;
  }
  
  .services-box-heading-text-partners-activities span a {
    font-size: 0.75rem;
  }
  
  .services-box-heading-text-partners-activities a:last-child {
    padding: 8px 16px;
    width: 120px;
    font-size: 0.8rem;
    margin-top: 4px;
  }
}

/* Mobile (320px - 576px) - 1 column */
@media screen and (max-width: 576px) {
  .section-container-activities {
    padding: 30px 14px 50px;
    margin-top: 40px;
  }
  
  .all-activities {
    padding: 0;
  }
  
  .section-heading-organization {
    width: 100%;
    padding: 16px 18px 20px;
    border-radius: 16px;
  }
  
  .section-heading-organization::before,
  .section-heading-organization::after {
    width: 25px;
    height: 25px;
    border-width: 2px;
    border-radius: 16px 0 0 0;
  }
  
  .section-heading-organization::after {
    border-radius: 0 0 16px 0;
  }
  
  .section-heading-organization span {
    font-size: 1.2rem;
    padding-bottom: 8px;
    border-bottom-width: 3px;
  }
  
  .section-heading-organization span::after {
    height: 3px;
  }
  
  .section-heading-organization p {
    font-size: 0.82rem;
    margin-top: 12px;
    line-height: 1.6;
  }
  
  .section-heading-partners-activities {
    padding: 10px 0 15px;
    margin-bottom: 20px;
  }
  
  .section-heading-partners-activities h3 {
    font-size: 1.2rem;
    padding: 6px 16px;
    border-bottom-width: 2px;
  }
  
  .section-heading-partners-activities h3::before {
    font-size: 1rem;
    margin-right: 6px;
  }
  
  .service-container-focus-activities {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .service-box-focus {
    min-height: 280px;
    border-radius: 14px;
  }
  
  .service-box-focus::before {
    border-radius: 14px;
  }
  
  .service-box-focus::after {
    border-radius: 14px 14px 0 0;
  }
  
  .service-box-icon2 {
    height: 180px;
    border-radius: 14px 14px 0 0;
  }
  
  .services-box-heading-text-partners-activities {
    padding: 14px 16px 16px;
    gap: 4px;
  }
  
  .services-box-heading-text-partners-activities p {
    font-size: 0.9rem;
    min-height: 40px;
  }
  
  .services-box-heading-text-partners-activities span a {
    font-size: 0.78rem;
  }
  
  .services-box-heading-text-partners-activities a:last-child {
    padding: 10px 18px;
    width: 130px;
    font-size: 0.85rem;
    margin-top: 4px;
  }
}

/* Extra Small Devices (320px) */
@media screen and (max-width: 380px) {
  .section-container-activities {
    padding: 20px 10px 40px;
    margin-top: 30px;
  }
  
  .section-heading-organization {
    padding: 14px 14px 16px;
    border-radius: 12px;
  }
  
  .section-heading-organization span {
    font-size: 1rem;
    padding-bottom: 6px;
  }
  
  .section-heading-organization::before,
  .section-heading-organization::after {
    width: 20px;
    height: 20px;
  }
  
  .section-heading-organization p {
    font-size: 0.78rem;
    margin-top: 10px;
  }
  
  .section-heading-partners-activities h3 {
    font-size: 1rem;
    padding: 4px 12px;
  }
  
  .service-container-focus-activities {
    gap: 10px;
  }
  
  .service-box-focus {
    min-height: 250px;
    border-radius: 12px;
  }
  
  .service-box-focus::before {
    border-radius: 12px;
  }
  
  .service-box-focus::after {
    border-radius: 12px 12px 0 0;
  }
  
  .service-box-icon2 {
    height: 150px;
    border-radius: 12px 12px 0 0;
  }
  
  .services-box-heading-text-partners-activities {
    padding: 12px 14px 14px;
    gap: 4px;
  }
  
  .services-box-heading-text-partners-activities p {
    font-size: 0.82rem;
    min-height: 34px;
  }
  
  .services-box-heading-text-partners-activities span a {
    font-size: 0.72rem;
  }
  
  .services-box-heading-text-partners-activities a:last-child {
    padding: 8px 14px;
    width: 110px;
    font-size: 0.75rem;
    margin-top: 4px;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .service-box-focus,
  .service-box-focus::before,
  .service-box-focus::after,
  .service-box-icon2 img,
  .service-box-icon2::after,
  .services-box-heading-text-partners-activities a:last-child {
    animation: none !important;
    transition: none !important;
  }
  
  .service-box-focus:hover {
    transform: none !important;
  }
  
  .service-box-focus:hover::before {
    opacity: 0 !important;
  }
  
  .service-box-focus:hover::after {
    transform: scaleX(0) !important;
  }
  
  .service-box-focus:hover .service-box-icon2 img {
    transform: none !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .section-heading-organization {
    border: 2px solid #42b300;
    background: white;
  }
  
  .section-heading-organization span {
    border-bottom-color: #42b300;
  }
  
  .section-heading-partners-activities h3 {
    border-bottom-color: #42b300;
  }
  
  .service-box-focus {
    border: 2px solid #42b300;
    background: white;
  }
  
  .service-box-focus::before {
    display: none;
  }
  
  .service-box-focus::after {
    display: none;
  }
  
  .services-box-heading-text-partners-activities a:last-child {
    background: #2e7d32;
  }
}

/* Focus States */
.service-box-focus:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 2px;
  border-radius: 16px;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

@keyframes fadeInUpActivities {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-heading-organization {
  opacity: 0;
  animation: fadeInUpActivities 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.section-heading-partners-activities {
  opacity: 0;
  animation: fadeInUpActivities 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.15s;
}

.service-box-focus {
  opacity: 0;
  animation: fadeInUpActivities 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-box-focus:nth-child(1) { animation-delay: 0.2s; }
.service-box-focus:nth-child(2) { animation-delay: 0.25s; }
.service-box-focus:nth-child(3) { animation-delay: 0.3s; }
.service-box-focus:nth-child(4) { animation-delay: 0.35s; }
.service-box-focus:nth-child(5) { animation-delay: 0.4s; }
.service-box-focus:nth-child(6) { animation-delay: 0.45s; }
.service-box-focus:nth-child(7) { animation-delay: 0.5s; }
.service-box-focus:nth-child(8) { animation-delay: 0.55s; }
.service-box-focus:nth-child(9) { animation-delay: 0.6s; }

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #42b300, #f57c00);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2e7d32, #e65100);
}
/* ============================================
   ACTIVITY DETAIL SECTION - MASTER CONTAINER
   ============================================ */

.section-container-activity {
  padding: 60px 40px 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  position: relative;
  overflow: hidden;
  margin-top: 150px;
  min-height: 100vh;
}

/* Background decorative elements */
.section-container-activity::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(66, 179, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-container-activity::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ============================================
   SECTION HEADING - ACTIVITY TITLE
   ============================================ */

.section-heading-partners-activity {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.title {
  text-align: center;
  padding: 30px 40px 35px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  position: relative;
}

/* Decorative corner accents */
.title::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: 50px;
  height: 50px;
  border-top: 3px solid #42b300;
  border-left: 3px solid #42b300;
  border-radius: 24px 0 0 0;
  opacity: 0.5;
}

.title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 50px;
  height: 50px;
  border-bottom: 3px solid #f57c00;
  border-right: 3px solid #f57c00;
  border-radius: 0 0 24px 0;
  opacity: 0.5;
}

.title h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  position: relative;
  display: inline-block;
}

.title h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  border-radius: 4px;
}

/* ============================================
   SERVICE CONTAINER - SINGLE COLUMN
   ============================================ */

.service-container-focus-activity {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

/* ============================================
   ACTIVITY CARD - REPORT STYLE
   ============================================ */

.service-box-focus {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(66, 179, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Gradient border */
.service-box-focus::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, #42b300, #f57c00, #42b300);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  animation: gradientShiftActivityDetail 3s ease-in-out infinite;
}

@keyframes gradientShiftActivityDetail {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.service-box-focus:hover::before {
  opacity: 1;
}

/* Top accent bar */
.service-box-focus::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #42b300, #f57c00);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 24px 24px 0 0;
}

.service-box-focus:hover::after {
  transform: scaleX(1);
}

.service-box-focus:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(66, 179, 0, 0.08);
  border-color: rgba(66, 179, 0, 0.12);
}

/* ============================================
   ACTIVITY HEADING
   ============================================ */

.service-box-heading-partners-activity {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* ============================================
   ACTIVITY IMAGE - FULL WIDTH
   ============================================ */

.service-box-icon2-activity {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border: none;
  border-radius: 24px 24px 0 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  background: #f8fafc;
}

/* Image overlay gradient */
.service-box-icon2-activity::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
  opacity: 0.6;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 0 0 24px 24px;
}

.service-box-focus:hover .service-box-icon2-activity::after {
  opacity: 0.3;
}

.service-box-icon2-activity img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-box-focus:hover .service-box-icon2-activity img {
  transform: scale(1.02);
}

/* ============================================
   ACTIVITY TEXT CONTENT - REPORT STYLE
   ============================================ */

.services-box-heading-text-partners-activity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 30px 40px 40px;
  background: rgba(255, 255, 255, 0.98);
  flex: 1;
  gap: 12px;
}

/* Date styling - clean and minimal */
.services-box-heading-text-partners-activity span {
  display: block;
  margin: 0 0 8px 0;
  padding: 0;
}

.services-box-heading-text-partners-activity span a {
  color: #42b300;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 0;
}

.services-box-heading-text-partners-activity span a:hover {
  color: #f57c00;
}

.services-box-heading-text-partners-activity span a strong {
  font-weight: 600;
  border-bottom: 2px solid #f57c00;
  padding-bottom: 2px;
  display: inline-block;
}

/* Description - Report style */
.services-box-heading-text-partners-activity p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.9;
  margin: 0;
  text-align: left;
  opacity: 0.9;
  font-weight: 400;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop (1440px+) */
@media screen and (min-width: 1400px) {
  .section-container-activity {
    padding: 80px 60px 100px;
  }
  
  .title {
    padding: 40px 50px 45px;
  }
  
  .title h3 {
    font-size: 2.8rem;
  }
  
  .service-box-icon2-activity {
    height: 500px;
    border-radius: 28px 28px 0 0;
  }
  
  .service-box-icon2-activity::after {
    border-radius: 0 0 28px 28px;
  }
  
  .services-box-heading-text-partners-activity {
    padding: 35px 45px 45px;
  }
  
  .services-box-heading-text-partners-activity p {
    font-size: 1.2rem;
    line-height: 2;
  }
  
  .services-box-heading-text-partners-activity span a {
    font-size: 1rem;
  }
}

/* Desktop (1200px - 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
  .section-container-activity {
    padding: 60px 40px 80px;
  }
  
  .title h3 {
    font-size: 2.2rem;
  }
  
  .service-box-icon2-activity {
    height: 400px;
  }
  
  .services-box-heading-text-partners-activity {
    padding: 28px 35px 35px;
  }
  
  .services-box-heading-text-partners-activity p {
    font-size: 1.05rem;
  }
}

/* Tablet Landscape (992px - 1199px) */
@media screen and (max-width: 1199px) and (min-width: 769px) {
  .section-container-activity {
    padding: 50px 30px 70px;
  }
  
  .section-heading-partners-activity {
    padding: 0 15px;
  }
  
  .title {
    padding: 25px 30px 30px;
  }
  
  .title h3 {
    font-size: 1.8rem;
  }
  
  .title::before,
  .title::after {
    width: 35px;
    height: 35px;
  }
  
  .service-box-icon2-activity {
    height: 350px;
    border-radius: 20px 20px 0 0;
  }
  
  .service-box-icon2-activity::after {
    border-radius: 0 0 20px 20px;
  }
  
  .services-box-heading-text-partners-activity {
    padding: 24px 28px 28px;
  }
  
  .services-box-heading-text-partners-activity p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* Tablet Portrait (577px - 768px) */
@media screen and (max-width: 768px) and (min-width: 577px) {
  .section-container-activity {
    padding: 40px 20px 60px;
    margin-top: 100px;
  }
  
  .section-heading-partners-activity {
    padding: 0 10px;
  }
  
  .title {
    padding: 20px 25px 25px;
    border-radius: 18px;
  }
  
  .title h3 {
    font-size: 1.5rem;
  }
  
  .title::before,
  .title::after {
    width: 30px;
    height: 30px;
    border-width: 2px;
  }
  
  .title h3::after {
    width: 60px;
    height: 3px;
  }
  
  .service-box-focus {
    border-radius: 18px;
  }
  
  .service-box-focus::before {
    border-radius: 18px;
  }
  
  .service-box-focus::after {
    border-radius: 18px 18px 0 0;
  }
  
  .service-box-icon2-activity {
    height: 280px;
    border-radius: 18px 18px 0 0;
  }
  
  .service-box-icon2-activity::after {
    border-radius: 0 0 18px 18px;
  }
  
  .services-box-heading-text-partners-activity {
    padding: 20px 22px 24px;
  }
  
  .services-box-heading-text-partners-activity p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .services-box-heading-text-partners-activity span a {
    font-size: 0.85rem;
  }
}

/* Mobile (320px - 576px) */
@media screen and (max-width: 576px) {
  .section-container-activity {
    padding: 30px 14px 50px;
    margin-top: 80px;
  }
  
  .section-heading-partners-activity {
    padding: 0;
  }
  
  .title {
    padding: 16px 18px 20px;
    border-radius: 16px;
  }
  
  .title::before,
  .title::after {
    width: 25px;
    height: 25px;
    border-width: 2px;
    border-radius: 16px 0 0 0;
  }
  
  .title::after {
    border-radius: 0 0 16px 0;
  }
  
  .title h3 {
    font-size: 1.3rem;
  }
  
  .title h3::after {
    width: 50px;
    height: 3px;
    bottom: -6px;
  }
  
  .service-box-focus {
    border-radius: 14px;
  }
  
  .service-box-focus::before {
    border-radius: 14px;
  }
  
  .service-box-focus::after {
    border-radius: 14px 14px 0 0;
  }
  
  .service-box-icon2-activity {
    height: 220px;
    border-radius: 14px 14px 0 0;
  }
  
  .service-box-icon2-activity::after {
    border-radius: 0 0 14px 14px;
  }
  
  .services-box-heading-text-partners-activity {
    padding: 16px 16px 18px;
    gap: 8px;
  }
  
  .services-box-heading-text-partners-activity p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  
  .services-box-heading-text-partners-activity span a {
    font-size: 0.8rem;
  }
  
  .services-box-heading-text-partners-activity span a strong {
    border-bottom-width: 1px;
  }
}

/* Extra Small Devices (320px) */
@media screen and (max-width: 380px) {
  .section-container-activity {
    padding: 20px 10px 40px;
    margin-top: 60px;
  }
  
  .title {
    padding: 14px 14px 16px;
    border-radius: 12px;
  }
  
  .title h3 {
    font-size: 1.1rem;
  }
  
  .title::before,
  .title::after {
    width: 20px;
    height: 20px;
  }
  
  .title h3::after {
    width: 40px;
    height: 2px;
  }
  
  .service-box-icon2-activity {
    height: 180px;
    border-radius: 12px 12px 0 0;
  }
  
  .service-box-icon2-activity::after {
    border-radius: 0 0 12px 12px;
  }
  
  .services-box-heading-text-partners-activity {
    padding: 14px 14px 16px;
  }
  
  .services-box-heading-text-partners-activity p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .services-box-heading-text-partners-activity span a {
    font-size: 0.75rem;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .service-box-focus,
  .service-box-focus::before,
  .service-box-focus::after,
  .service-box-icon2-activity img {
    animation: none !important;
    transition: none !important;
  }
  
  .service-box-focus:hover {
    transform: none !important;
  }
  
  .service-box-focus:hover::before {
    opacity: 0 !important;
  }
  
  .service-box-focus:hover::after {
    transform: scaleX(0) !important;
  }
  
  .service-box-focus:hover .service-box-icon2-activity img {
    transform: none !important;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .title {
    border: 2px solid #42b300;
    background: white;
  }
  
  .title h3::after {
    background: #42b300;
  }
  
  .service-box-focus {
    border: 2px solid #42b300;
    background: white;
  }
  
  .service-box-focus::before {
    display: none;
  }
  
  .service-box-focus::after {
    display: none;
  }
  
  .services-box-heading-text-partners-activity span a {
    color: #2e7d32;
  }
  
  .services-box-heading-text-partners-activity span a strong {
    border-bottom-color: #2e7d32;
  }
}

/* Focus States */
.service-box-focus:focus-within {
  outline: 2px solid #42b300;
  outline-offset: 2px;
  border-radius: 16px;
}

/* ============================================
   ANIMATIONS - Scroll Reveal
   ============================================ */

@keyframes fadeInUpActivityDetail {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title {
  opacity: 0;
  animation: fadeInUpActivityDetail 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.service-box-focus {
  opacity: 0;
  animation: fadeInUpActivityDetail 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #42b300, #f57c00);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2e7d32, #e65100);
}

/* ====== FOOTER SECTION ====== */
.footer {
    width: 100%;
    padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 40px) 20px;
    background: linear-gradient(135deg, #78cc6d 0%, #42b300 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #ff9900, #ff0000);
    z-index: 1;
}

.footer-contents {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Footer Column Styling */
.footer-col {
    padding: 0 15px;
}

.col-title {
    min-height: 60px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.col-title img {
    width: 100px !important;
    height: 100px;
    border-radius: 50% !important;
    border: 3px solid white;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.col-title h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.col-title h3[style*="color: yellow"] {
    color: #FFD700 !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.col-contents {
    display: flex;
    flex-direction: column;
}

/* Footer Column 1 - Logo & Description */
.footer-col-1 .col-contents p {
    color: white;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.footer-col-1 .col-contents p[style*="font-weight: 700"] {
    font-weight: 700 !important;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    margin-bottom: 20px;
    border-left: 3px solid #FFD700;
    padding-left: 15px;
}

/* Footer Column 2 - Contact */
.footer-col-2 .col-contents .contact-row {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-col-2 .col-contents .contact-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.footer-col-2 .col-contents .contact-row span {
    color: white;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.6;
}

.footer-col-2 .col-contents .contact-row span:first-child {
    color: #FFD700;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Column 3 - Quick Links */
.footer-col-3 .col-contents {
    gap: 15px;
    margin-top: -20px !important;
}

.footer-col-3 .col-contents a {
    text-decoration: none;
    color: white;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
}

.footer-col-3 .col-contents a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-left: 3px solid #FFD700;
    color: #FFD700;
}

.footer-col-3 .col-contents a[style*="text-decoration: underline red"] {
    text-decoration: none !important;
    border-bottom: 2px solid #ff0000;
    padding-bottom: 8px;
    margin-bottom: 5px;
}

.footer-col-3 .col-contents a[style*="text-decoration: underline red"]:hover {
    border-bottom-color: #FFD700;
    background: rgba(255, 0, 0, 0.1);
}

/* Social Media Links */
.footer-col:nth-of-type(4) .col-contents a {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ff0000;
}

.footer-col:nth-of-type(4) .col-contents a:hover {
    border-left-color: #FFD700;
    background: rgba(255, 0, 0, 0.1);
}

/* Copyright Section */
.copy-rights {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    margin-top: 20px;
}

.copy-rights p {
    color: white;
    font-size: clamp(0.85rem, 1.1vw, 0.95rem);
    margin: 0;
}

.copy-rights p b {
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    .footer {
        padding: clamp(50px, 7vw, 70px) clamp(30px, 6vw, 50px) 25px;
    }
    
    .footer-contents {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
        margin-bottom: 60px;
    }
    
    .footer-col {
        padding: 0;
    }
    
    .col-title {
        margin-bottom: 30px;
    }
    
    .footer-col-3 .col-contents {
        gap: 18px;
    }
    
    .footer-col-3 .col-contents a {
        padding: 12px 20px;
    }
    
    .copy-rights {
        padding: 40px 0 0;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .footer-contents {
        grid-template-columns: repeat(4, 1fr);
        gap: 60px;
    }
    
    .col-title h3 {
        font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    }
    
    .footer-col-1 .col-contents p {
        font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    }
    
    .footer-col-2 .col-contents .contact-row span,
    .footer-col-3 .col-contents a {
        font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    }
    
    .copy-rights p {
        font-size: clamp(0.9rem, 1vw, 1rem);
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .footer {
        padding: 80px 60px 30px;
    }
    
    .footer-contents {
        max-width: 1400px;
        gap: 70px;
    }
    
    .col-title img {
        width: 120px !important;
        height: 120px;
    }
    
    .footer-col-3 .col-contents a {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-contents {
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .col-title {
        min-height: 50px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .col-title img {
        width: 80px !important;
        height: 80px;
    }
    
    .col-title h3 {
        font-size: 1.2rem;
    }
    
    .footer-col-1 .col-contents p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-col-1 .col-contents p[style*="font-weight: 700"] {
        font-size: 0.95rem;
        padding-left: 12px;
    }
    
    .footer-col-2 .col-contents .contact-row {
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .footer-col-2 .col-contents .contact-row span {
        font-size: 0.9rem;
    }
    
    .footer-col-2 .col-contents .contact-row span:first-child {
        font-size: 0.95rem;
    }
    
    .footer-col-3 .col-contents {
        gap: 12px;
    }
    
    .footer-col-3 .col-contents a {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .footer-col-3 .col-contents a[style*="text-decoration: underline red"] {
        padding-bottom: 6px;
    }
    
    .copy-rights {
        padding: 25px 0 0;
        margin-top: 15px;
    }
    
    .copy-rights p {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .footer {
        padding: 35px 15px 15px;
    }
    
    .footer-contents {
        gap: 30px;
    }
    
    .col-title {
        min-height: 45px;
        margin-bottom: 18px;
    }
    
    .col-title img {
        width: 70px !important;
        height: 70px;
    }
    
    .col-title h3 {
        font-size: 1.1rem;
    }
    
    .footer-col-1 .col-contents p {
        font-size: 0.85rem;
    }
    
    .footer-col-2 .col-contents .contact-row span,
    .footer-col-3 .col-contents a {
        font-size: 0.85rem;
    }
    
    .footer-col-3 .col-contents a {
        padding: 8px 12px;
    }
    
    .copy-rights p {
        font-size: 0.8rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .footer {
        padding: 30px 20px 15px;
    }
    
    .footer-contents {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 30px;
    }
    
    .footer-col-3 .col-contents a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}
