/*=============== 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;
        }
    }
}

/* Print Styles */
@media print {
    .nav__logo img {
        width: 80px;
        height: 80px;
        border: 2px solid #333;
        box-shadow: none;
        animation: none;
    }
    
    .nav__logo:hover img {
        transform: none;
        border-color: #333;
    }
}

/* 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;
    }
}

/* Main container for the whole page section */
.home-full-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ============================================
   ATTRACTIVE VIDEO SECTION - ONLY VIDEO (NO DESCRIPTION)
   Clean, modern, responsive, full-width video card
   ============================================ */
.video-gallery-section {
    margin-top: 3rem;  /* ADDED: increased top margin */
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #fef7f0 100%);
    border-radius: 2rem;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.02);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(185, 28, 28, 0.08);
}

/* Video header with decorative elements - minimal but attractive */
.video-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
    border-bottom: 2px solid #ffe2d6;
    padding-bottom: 0.8rem;
}

.video-title-section h2 {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(125deg, #991b1b, #dc2626, #7f1d1d);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.video-title-section h2 span {
    font-size: 2rem;
}

.video-subtitle {
    font-size: 0.85rem;
    color: #b45353;
    background: #fff0ed;
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 40px;
    font-weight: 500;
    margin-top: 0.4rem;
}

.video-stats {
    background: #ffffffcc;
    backdrop-filter: blur(4px);
    padding: 0.4rem 1rem;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* Single video container - clean and responsive */
.single-video-container {
    width: 100%;
    margin: 0.5rem 0 0;
}

.featured-video-card {
    background: #0a0a0a;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.featured-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 40px -14px rgba(185, 28, 28, 0.3);
    border-color: rgba(220, 38, 38, 0.3);
}

/* video wrapper with perfect 16:9 ratio */
.video-wrapper-responsive {
    position: relative;
    width: 100%;
    background: #000000;
    line-height: 0;
}

.video-wrapper-responsive video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

/* Custom play button overlay - elegant and modern */
.video-thumb-overlay {
    position: relative;
}

.play-icon-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    background: rgba(220, 38, 38, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.6rem;
    padding-left: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 2;
    pointer-events: none;
    font-family: Arial, sans-serif;
}

.video-thumb-overlay:hover .play-icon-large {
    transform: translate(-50%, -50%) scale(1.1);
    background: #b91c1c;
    box-shadow: 0 12px 30px rgba(185, 28, 28, 0.6);
    width: 92px;
    height: 92px;
    font-size: 2.9rem;
}

/* Modal/Lightbox for fullscreen video experience */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    padding: 1rem;
}

.modal-container {
    max-width: 1200px;
    width: 95%;
    background: #000;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
    animation: modalZoom 0.22s ease;
}

@keyframes modalZoom {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.video-wrapper-modal {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.video-wrapper-modal video,
.video-wrapper-modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: #000;
}

.close-modal-btn {
    position: absolute;
    top: -45px;
    right: 0px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 300;
    z-index: 10;
    font-family: monospace;
    line-height: 1;
}

.close-modal-btn:hover {
    background: #b91c1c;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .home-full-wrapper {
        padding: 1rem;
    }
    .video-gallery-section {
        margin-top: 2rem;  /* ADDED: responsive top margin */
        margin-bottom: 2rem;
        padding: 1.2rem;
    }
    .video-title-section h2 {
        font-size: 1.5rem;
    }
    .play-icon-large {
        width: 65px;
        height: 65px;
        font-size: 2rem;
        padding-left: 5px;
    }
    .video-thumb-overlay:hover .play-icon-large {
        width: 72px;
        height: 72px;
        font-size: 2.2rem;
    }
    .video-stats {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .video-gallery-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .video-gallery-section {
        margin-top: 1.5rem;  /* ADDED: smaller top margin on mobile */
    }
    .play-icon-large {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
    }
    .close-modal-btn {
        top: -38px;
        width: 34px;
        height: 34px;
        font-size: 1.6rem;
    }
}

/* Optional: remove default video controls outline, keep clean */
video:focus {
    outline: none;
}

/* subtle animation for header */
.video-title-section h2 span {
    display: inline-block;
    animation: gentleWave 2s infinite ease;
}

@keyframes gentleWave {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}







/*Home Page Section Styles with Split Layout */
.section-container-home {
    width: 100%;
    padding: clamp(60px, 8vw, 80px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.9)),
        url('https://images.unsplash.com/photo-1511895426328-dc8714191300?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Overlay for better readability */
.section-container-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #42b300, #ff0000);
    z-index: 2;
}

/* Main Container for Split Layout */
.home-main-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ====== LEFT SIDE: ORGANIZATION INFO ====== */
.home-left-side {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-left: 5px solid #42b300;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    padding: 40px;
    height: fit-content;
}

.home-left-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(66, 179, 0, 0.03),
        transparent
    );
    transform: rotate(45deg);
    z-index: -1;
}

.home-left-side h2 {
    color: #42b300;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(66, 179, 0, 0.2);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.home-left-side h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #42b300, #5cd923);
    border-radius: 2px;
}

.home-left-side p {
    color: #444;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 35px;
    text-align: justify;
    font-weight: 500;
}

/* Donate Button */
.home-left-side .nav__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #42b300, #5cd923);
    color: white;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: all 0.4s ease;
    box-shadow: 
        0 5px 15px rgba(66, 179, 0, 0.3),
        0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    width: 250px;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    z-index: 1;
}

.home-left-side .nav__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.home-left-side .nav__button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 25px rgba(66, 179, 0, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #5cd923, #42b300);
    letter-spacing: 3px;
}

.home-left-side .nav__button:hover::before {
    left: 100%;
}

.home-left-side .nav__button:active {
    transform: translateY(-2px);
}

/* ====== RIGHT SIDE: ACTIVITIES SECTION ====== */
.home-right-side {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-left: 5px solid #007bff;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: visible; /* Changed from hidden */
    padding: 40px;
    height: fit-content; /* Changed from max-height */
}

.home-right-side::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 123, 255, 0.03),
        transparent
    );
    transform: rotate(45deg);
    z-index: -1;
}

/* Activities Section Header */
.activities-section-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 123, 255, 0.2);
    position: relative;
}

.activities-section-header h3 {
    color: #007bff;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activities-section-header h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00b4ff);
    border-radius: 2px;
}

/* REMOVED: Activities Container with Scroll */
/* .activities-container is removed - no more scrolling wrapper */

/* Activities Grid - All activities visible */
.activities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Single Activity Card */
.activity-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.95));
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    padding: 25px;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 123, 255, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 123, 255, 0.3);
}

/* Activity Image */
.activity-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

/* Activity Title - Clean without symbols */
.activity-title {
    color: #222;
    font-size: clamp(1.1rem, 1.4vw, 1.25rem);
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Activity Date */
.activity-date {
    color: #666;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.activity-date a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.activity-date a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Read More Button */
.activity-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
    font-size: 0.95rem;
    width: fit-content;
}

.activity-read-more:hover {
    background: white;
    color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

/* No Activities Message */
.no-activities {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 2px dashed #ddd;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
    .section-container-home {
        margin-top: 60px !important;
        padding: 50px 15px;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .home-left-side,
    .home-right-side {
        padding: 25px;
    }
    
    .home-left-side h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .home-left-side h2::after {
        width: 70px;
    }
    
    .home-left-side p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .home-left-side .nav__button {
        width: 100%;
        max-width: 250px;
        padding: 12px 25px;
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    
    .activities-section-header h3 {
        font-size: 1.3rem;
    }
    
    .activities-grid {
        gap: 25px;
    }
    
    .activity-card {
        padding: 20px;
    }
    
    .activity-image {
        height: 160px;
    }
    
    .activity-title {
        font-size: 1.05rem;
    }
    
    .activity-read-more {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Tablet Devices (768px - 1023px) */
@media screen and (min-width: 768px) {
    .section-container-home {
        padding: clamp(70px, 8vw, 90px) clamp(30px, 6vw, 50px);
    }
    
    .home-main-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: start; /* Align tops of both columns */
    }
    
    .home-left-side,
    .home-right-side {
        padding: 35px;
        height: fit-content; /* Both sides adjust to content */
    }
    
    .home-left-side h2 {
        font-size: clamp(1.8rem, 2vw, 2rem);
    }
    
    .home-left-side p {
        font-size: clamp(1rem, 1.2vw, 1.1rem);
        line-height: 1.8;
    }
    
    .home-left-side .nav__button {
        width: 100%;
        max-width: 250px;
        padding: 14px 30px;
        font-size: 1.1rem;
    }
    
    .activities-section-header h3 {
        font-size: clamp(1.4rem, 1.8vw, 1.6rem);
    }
    
    .activities-grid {
        gap: 25px;
    }
    
    .activity-card {
        padding: 25px;
    }
    
    .activity-image {
        height: 160px;
    }
    
    .activity-title {
        font-size: 1.1rem;
    }
    
    .activity-read-more {
        padding: 9px 22px;
        font-size: 0.9rem;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .section-container-home {
        padding: clamp(80px, 9vw, 100px) clamp(40px, 8%, 60px);
        min-height: 80vh;
        display: flex;
        align-items: flex-start; /* Changed from center to top */
        padding-top: 80px; /* Add top padding */
    }
    
    .home-main-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 50px;
        max-width: 1400px;
        align-items: start; /* Align tops of both columns */
    }
    
    .home-left-side,
    .home-right-side {
        padding: 40px;
        height: fit-content; /* Both sides adjust to content */
    }
    
    .home-left-side h2 {
        font-size: clamp(2rem, 2.5vw, 2.2rem);
        margin-bottom: 30px;
    }
    
    .home-left-side p {
        font-size: clamp(1.1rem, 1.2vw, 1.15rem);
        line-height: 1.9;
        margin-bottom: 35px;
    }
    
    .home-left-side .nav__button {
        width: 280px;
        padding: 16px 35px;
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .activities-section-header h3 {
        font-size: clamp(1.6rem, 2vw, 1.8rem);
    }
    
    .activities-grid {
        gap: 30px;
    }
    
    .activity-card {
        padding: 30px;
    }
    
    .activity-image {
        height: 180px;
    }
    
    .activity-title {
        font-size: 1.15rem;
    }
    
    .activity-read-more {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .home-main-container {
        gap: 60px;
    }
    
    .home-left-side,
    .home-right-side {
        padding: 50px;
    }
    
    .home-left-side h2 {
        font-size: 2.2rem;
    }
    
    .home-left-side p {
        font-size: 1.2rem;
        line-height: 2;
    }
    
    .home-left-side .nav__button {
        width: 300px;
        padding: 18px 40px;
        font-size: 1.3rem;
    }
    
    .activities-section-header h3 {
        font-size: 1.9rem;
    }
    
    .activities-grid {
        gap: 35px;
    }
    
    .activity-card {
        padding: 35px;
    }
    
    .activity-image {
        height: 200px;
    }
    
    .activity-title {
        font-size: 1.2rem;
    }
    
    .activity-read-more {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .section-container-home {
        padding: 40px 12px;
    }
    
    .home-left-side,
    .home-right-side {
        padding: 20px;
    }
    
    .home-left-side h2 {
        font-size: 1.3rem;
    }
    
    .home-left-side p {
        font-size: 0.9rem;
    }
    
    .home-left-side .nav__button {
        font-size: 1rem;
        padding: 10px 20px;
        width: 100%;
    }
    
    .activities-section-header h3 {
        font-size: 1.2rem;
    }
    
    .activities-grid {
        gap: 20px;
    }
    
    .activity-card {
        padding: 15px;
    }
    
    .activity-image {
        height: 140px;
    }
    
    .activity-title {
        font-size: 1rem;
    }
    
    .activity-read-more {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .section-container-home {
        margin-top: 50px !important;
        padding: 40px 20px;
        min-height: auto;
    }
    
    .home-main-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .home-left-side,
    .home-right-side {
        padding: 25px;
    }
    
    .activity-image {
        height: 120px;
    }
    
    .activity-card {
        padding: 20px;
    }
}

.all-content{
    display: flex;
    flex-direction: column;
    grid-gap: 35px;
    width: 100%;
    overflow: hidden;
} 

/* ====== ABOUT US SECTION ====== */
#about-us {
    padding: 60px clamp(20px, 5vw, 40px);
    background-color: white;
    width: 100%;
    box-sizing: border-box;
}

/* Organization Section Styles */
.section-container-organization {
    width: 100%;
    padding: clamp(60px, 8vw, 80px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f8f0 100%);
    position: relative;
    overflow: hidden;
}

.section-container-organization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #42b300, #ff0000);
    z-index: 1;
}

.section-heading-organization {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    text-align: center;
    padding: 0 20px;
}

.section-heading-organization span {
    color: #42b300;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 3px solid red !important;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
}

.section-heading-organization span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #42b300;
    border-radius: 2px;
}

.section-heading-organization p {
    color: #555;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(15px, 3vw, 30px);
}

/* Organization Grid Container */
.project-container-about-organization {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Organization Box */
.project-container-box-organization {
    background: white;
    border-radius: 20px;
    padding: clamp(25px, 4vw, 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-container-box-organization:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(66, 179, 0, 0.15);
    border-color: #42b300;
}

.project-container-box-organization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--category-color), #42b300);
    z-index: 1;
}

/* Category-specific colors */
.project-container-box-organization:nth-child(1) {
    --category-color: #42b300; /* Mission - Green */
}

.project-container-box-organization:nth-child(2) {
    --category-color: #007bff; /* Vision - Blue */
}

.project-container-box-organization:nth-child(3) {
    --category-color: #6f42c1; /* Proposes - Purple */
}

.project-container-box-organization:nth-child(4) {
    --category-color: #fd7e14; /* Core Values - Orange */
}

/* Title Styling */
.project-container-box-organization span {
    color: var(--category-color) !important;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f7f0;
    width: 100%;
    position: relative;
}

.project-container-box-organization span::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--category-color);
    border-radius: 2px;
}

/* Add icons before titles */
.project-container-box-organization:nth-child(1) span::after {
    content: '🎯';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.project-container-box-organization:nth-child(2) span::after {
    content: '👁';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.project-container-box-organization:nth-child(3) span::after {
    content: '🏁';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.project-container-box-organization:nth-child(4) span::after {
    content: '📃';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

/* List Styling */
.project-container-box-organization ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.project-container-box-organization ul li {
    color: #444;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.6;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--category-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 40px;
    text-align: left;
}

.project-container-box-organization ul li:hover {
    background: #f0f7f0;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-container-box-organization ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* For Core Values box, show all items in list */
.project-container-box-organization:nth-child(4) ul li {
    padding-left: 35px;
}

.project-container-box-organization:nth-child(4) ul li::before {
    content: '•';
    font-size: 1.5rem;
    left: 12px;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    .section-container-organization {
        padding: clamp(70px, 8vw, 90px) clamp(30px, 6vw, 50px);
        margin-top: 80px;
    }
    
    .section-heading-organization {
        width: 80%;
        margin-bottom: 60px;
    }
    
    .section-heading-organization span {
        font-size: clamp(2rem, 2.8vw, 2.3rem);
        margin-bottom: 35px;
    }
    
    .section-heading-organization p {
        font-size: clamp(1.1rem, 1.3vw, 1.2rem);
        line-height: 1.9;
    }
    
    .project-container-about-organization {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .project-container-box-organization span {
        font-size: clamp(1.4rem, 1.8vw, 1.6rem);
        margin-bottom: 30px;
        padding-left: 40px;
    }
    
    .project-container-box-organization span::after {
        left: 0;
    }
    
    .project-container-box-organization ul {
        gap: 15px;
    }
    
    .project-container-box-organization ul li {
        font-size: clamp(1rem, 1.2vw, 1.1rem);
        padding: 14px 20px;
        padding-left: 45px;
    }
    
    /* For Core Values box on tablet */
    .project-container-box-organization:nth-child(4) {
        grid-column: span 2;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .section-container-organization {
        padding: clamp(80px, 9vw, 100px) clamp(40px, 8%, 60px);
    }
    
    .section-heading-organization {
        width: 70%;
    }
    
    .project-container-about-organization {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1100px;
    }
    
    .project-container-box-organization {
        padding: 35px 40px;
    }
    
    .project-container-box-organization span {
        font-size: clamp(1.5rem, 1.6vw, 1.7rem);
        padding-left: 45px;
    }
    
    .project-container-box-organization span::after {
        font-size: 1.7rem;
    }
    
    .project-container-box-organization ul li {
        font-size: clamp(1.05rem, 1.1vw, 1.1rem);
        line-height: 1.7;
    }
    
    /* For Core Values box on desktop - make it two columns */
    .project-container-box-organization:nth-child(4) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .section-heading-organization span {
        font-size: 2.5rem;
    }
    
    .project-container-about-organization {
        max-width: 1300px;
        gap: 45px;
    }
    
    .project-container-box-organization {
        padding: 40px 45px;
    }
    
    .project-container-box-organization span {
        font-size: 1.8rem;
        padding-left: 50px;
    }
    
    .project-container-box-organization span::after {
        font-size: 1.8rem;
    }
    
    .project-container-box-organization ul li {
        font-size: 1.15rem;
        padding: 15px 25px;
        padding-left: 50px;
    }
    
    /* For Core Values box on large desktop - make it three columns */
    .project-container-box-organization:nth-child(4) ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .section-container-organization {
        margin-top: 60px !important;
        padding: 50px 15px;
    }
    
    .section-heading-organization {
        width: 100%;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .section-heading-organization span {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    
    .section-heading-organization span::after {
        width: 70px;
    }
    
    .section-heading-organization p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0;
        text-align: left;
    }
    
    .project-container-about-organization {
        gap: 25px;
        padding: 0 5px;
    }
    
    .project-container-box-organization {
        padding: 20px;
    }
    
    .project-container-box-organization span {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
        padding-left: 35px;
        text-align: left;
    }
    
    .project-container-box-organization span::after {
        left: 0;
        font-size: 1.3rem;
    }
    
    .project-container-box-organization span::before {
        width: 50px;
    }
    
    .project-container-box-organization ul {
        gap: 10px;
    }
    
    .project-container-box-organization ul li {
        font-size: 0.9rem;
        padding: 10px 12px;
        padding-left: 35px;
        line-height: 1.5;
    }
    
    .project-container-box-organization ul li::before {
        left: 10px;
        font-size: 1.1rem;
    }
    
    .project-container-box-organization:nth-child(4) ul li {
        padding-left: 30px;
    }
    
    .project-container-box-organization:nth-child(4) ul li::before {
        left: 8px;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .section-container-organization {
        padding: 40px 12px;
        margin-top: 50px !important;
    }
    
    .section-heading-organization span {
        font-size: 1.3rem;
    }
    
    .section-heading-organization p {
        font-size: 0.9rem;
    }
    
    .project-container-box-organization {
        padding: 15px;
    }
    
    .project-container-box-organization span {
        font-size: 1.1rem;
        padding-left: 30px;
    }
    
    .project-container-box-organization span::after {
        font-size: 1.1rem;
    }
    
    .project-container-box-organization ul li {
        font-size: 0.85rem;
        padding: 8px 10px;
        padding-left: 30px;
    }
    
    .project-container-box-organization ul li::before {
        left: 8px;
        font-size: 1rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .section-container-organization {
        margin-top: 50px !important;
        padding: 40px 20px;
    }
    
    .project-container-about-organization {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-container-box-organization {
        padding: 15px;
    }
}

/* Clean Focus & Target Section Styles */
.section-container-focus-target {
    width: 100%;
    padding: clamp(80px, 10vw, 100px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 100px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.section-container-focus-target::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #42b300, #007bff, #fd7e14);
    z-index: 1;
}

.project-container-about-focus-target {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Individual Box Styling - Clean Version */
.project-container-box-focus-target {
    background: white;
    border-radius: 16px;
    padding: clamp(35px, 5vw, 45px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-container-box-focus-target:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

/* Color coding and category styling */
.project-container-box-focus-target:nth-child(1) {
    --category-color: #42b300;
    --category-light: rgba(66, 179, 0, 0.08);
    border-left: 4px solid #42b300;
}

.project-container-box-focus-target:nth-child(2) {
    --category-color: #007bff;
    --category-light: rgba(0, 123, 255, 0.08);
    border-left: 4px solid #007bff;
}

.project-container-box-focus-target:nth-child(3) {
    --category-color: #fd7e14;
    --category-light: rgba(253, 126, 20, 0.08);
    border-left: 4px solid #fd7e14;
}

/* Title Styling - Clean */
.project-container-box-focus-target span {
    color: var(--category-color) !important;
    font-size: clamp(1.5rem, 2.5vw, 1.9rem);
    font-weight: 700;
    margin: 0 0 30px 0;
    display: block;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--category-light);
    width: 100%;
    position: relative;
}

.project-container-box-focus-target span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--category-color);
}

/* List Styling - Clean and Readable */
.project-container-box-focus-target ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* Special styling for Target Group paragraph */
.project-container-box-focus-target:nth-child(2) ul p {
    background: var(--category-light);
    border-radius: 10px;
    padding: 20px;
    margin: 0 0 25px 0;
    font-weight: 600;
    color: var(--category-color);
    font-size: clamp(1.1rem, 1.4vw, 1.2rem);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.project-container-box-focus-target:nth-child(2) ul p:hover {
    background: rgba(var(--category-color-rgb), 0.12);
}

/* List items - Clean without symbols */
.project-container-box-focus-target ul li {
    color: #374151;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    line-height: 1.6;
    padding: 16px 20px 16px 20px;
    background: #f9fafb;
    border-radius: 10px;
    border-left: 3px solid var(--category-color);
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
}

.project-container-box-focus-target ul li:hover {
    background: white;
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Simple bullet points */
.project-container-box-focus-target:nth-child(1) ul li::before {
    content: '•';
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    display: inline-block;
}

.project-container-box-focus-target:nth-child(2) ul li::before {
    content: '•';
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    display: inline-block;
}

.project-container-box-focus-target:nth-child(3) ul li::before {
    content: '•';
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
    display: inline-block;
}

/* ====== CLEAN RESPONSIVE DESIGN ====== */

/* Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
    .section-container-focus-target {
        margin-top: 60px !important;
        padding: 50px 15px;
    }
    
    .project-container-about-focus-target {
        gap: 30px;
        padding: 0 10px;
    }
    
    .project-container-box-focus-target {
        padding: 25px;
    }
    
    .project-container-box-focus-target span {
        font-size: 1.4rem;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    
    .project-container-box-focus-target ul {
        gap: 10px;
    }
    
    .project-container-box-focus-target ul li {
        font-size: 1rem;
        padding: 14px 16px 14px 16px;
        line-height: 1.5;
    }
    
    .project-container-box-focus-target:nth-child(2) ul p {
        padding: 18px;
        font-size: 1.05rem;
        margin-bottom: 20px;
    }
    
    .project-container-box-focus-target ul li::before {
        margin-right: 8px;
    }
}

/* Tablet Devices (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section-container-focus-target {
        padding: clamp(70px, 8vw, 90px) clamp(25px, 4vw, 40px);
    }
    
    .project-container-about-focus-target {
        gap: 40px;
        max-width: 800px;
    }
    
    .project-container-box-focus-target {
        width: 100%;
    }
    
    .project-container-box-focus-target span {
        font-size: clamp(1.6rem, 2vw, 1.8rem);
    }
    
    /* Multi-column lists for tablets */
    .project-container-box-focus-target:nth-child(1) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .project-container-box-focus-target:nth-child(2) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .project-container-box-focus-target:nth-child(2) ul p {
        grid-column: span 2;
        padding: 22px;
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .project-container-box-focus-target:nth-child(3) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .project-container-box-focus-target ul li {
        font-size: 1.05rem;
        padding: 18px 20px 18px 20px;
        line-height: 1.6;
    }
    
    .project-container-box-focus-target ul li::before {
        margin-right: 10px;
    }
}

/* Desktop Devices (1024px and above) */
@media screen and (min-width: 1024px) {
    .section-container-focus-target {
        padding: clamp(80px, 10vw, 100px) clamp(30px, 5%, 50px);
    }
    
    .project-container-about-focus-target {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 1200px;
    }
    
    .project-container-box-focus-target {
        padding: 40px 50px;
        width: 100%;
        max-width: none;
    }
    
    .project-container-box-focus-target span {
        font-size: clamp(1.7rem, 2.2vw, 1.9rem);
        margin-bottom: 35px;
        padding-bottom: 18px;
    }
    
    /* Desktop multi-column layouts for lists */
    .project-container-box-focus-target:nth-child(1) ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .project-container-box-focus-target:nth-child(2) ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .project-container-box-focus-target:nth-child(2) ul p {
        grid-column: span 3;
        padding: 25px 30px;
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .project-container-box-focus-target:nth-child(3) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-container-box-focus-target ul li {
        font-size: 1.1rem;
        padding: 20px 25px;
        line-height: 1.7;
        min-height: auto;
        display: block;
        align-items: flex-start;
    }
    
    .project-container-box-focus-target ul li::before {
        margin-right: 12px;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .project-container-about-focus-target {
        max-width: 1400px;
        gap: 70px;
    }
    
    .project-container-box-focus-target {
        padding: 45px 55px;
    }
    
    .project-container-box-focus-target span {
        font-size: 2rem;
    }
    
    .project-container-box-focus-target:nth-child(1) ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .project-container-box-focus-target:nth-child(2) ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    .project-container-box-focus-target:nth-child(2) ul p {
        grid-column: span 4;
        padding: 28px 35px;
        font-size: 1.25rem;
    }
    
    .project-container-box-focus-target ul li {
        font-size: 1.15rem;
        padding: 22px 28px;
        line-height: 1.7;
    }
    
    .project-container-box-focus-target ul li::before {
        margin-right: 14px;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .section-container-focus-target {
        padding: 40px 12px;
    }
    
    .project-container-box-focus-target {
        padding: 20px;
    }
    
    .project-container-box-focus-target span {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .project-container-box-focus-target ul {
        gap: 8px;
    }
    
    .project-container-box-focus-target ul li {
        font-size: 0.95rem;
        padding: 12px 14px;
        line-height: 1.5;
    }
    
    .project-container-box-focus-target:nth-child(2) ul p {
        padding: 16px;
        font-size: 1rem;
        margin-bottom: 18px;
    }
    
    .project-container-box-focus-target ul li::before {
        margin-right: 6px;
        font-size: 1rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .section-container-focus-target {
        margin-top: 50px !important;
        padding: 30px 20px;
    }
    
    .project-container-about-focus-target {
        gap: 20px;
    }
    
    .project-container-box-focus-target {
        padding: 20px;
    }
    
    /* Two column layout for lists in landscape */
    .project-container-box-focus-target:nth-child(1) ul,
    .project-container-box-focus-target:nth-child(2) ul,
    .project-container-box-focus-target:nth-child(3) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .project-container-box-focus-target:nth-child(2) ul p {
        grid-column: span 2;
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .project-container-box-focus-target ul li {
        padding: 14px 16px;
    }
}




/* Focus Area Section Styles */
.section-container-focus {
    width: 100%;
    padding: clamp(60px, 8vw, 80px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 100px;
    background: linear-gradient(135deg, #f5f8ff 0%, #f0f8f0 100%);
    position: relative;
    overflow: hidden;
}

.section-container-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #42b300, #007bff, #ff0000);
    z-index: 1;
}

.section-container-focus::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 179, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.project-container-about-focus {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Individual Focus Box */
.project-container-box-focus {
    background: white;
    border-radius: 20px;
    padding: clamp(25px, 4vw, 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--category-color);
}

.project-container-box-focus:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(66, 179, 0, 0.15);
    border-color: #42b300;
}

/* Color coding for different boxes */
.project-container-box-focus:nth-child(1) {
    --category-color: #42b300; /* FOCUS AREA */
}

.project-container-box-focus:nth-child(2) {
    --category-color: #007bff; /* TARGET GROUP */
}

.project-container-box-focus:nth-child(3) {
    --category-color: #6f42c1; /* APPROACH */
}

.project-container-box-focus:nth-child(4) {
    --category-color: #fd7e14; /* GEOGRAPHICAL AREAS */
}

.project-container-box-focus:nth-child(5) {
    --category-color: #20c997; /* Key Programs and Services */
}

.project-container-box-focus:nth-child(6) {
    --category-color: #dc3545; /* Strategic Objectives */
}

.project-container-box-focus:nth-child(7) {
    --category-color: #6610f2; /* Accomplishments */
}

/* Icon before title */
.project-container-box-focus::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--category-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

.project-container-box-focus::after {
    content: attr(data-icon);
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 1.5rem;
    z-index: 2;
}

/* Setting icons for each box */
.project-container-box-focus:nth-child(1)::after { content: '🎯'; }
.project-container-box-focus:nth-child(2)::after { content: '👥'; }
.project-container-box-focus:nth-child(3)::after { content: '🤝'; }
.project-container-box-focus:nth-child(4)::after { content: '🗺️'; }
.project-container-box-focus:nth-child(5)::after { content: '⚙️'; }
.project-container-box-focus:nth-child(6)::after { content: '📋'; }
.project-container-box-focus:nth-child(7)::after { content: '🏆'; }

/* Title Styling */
.project-container-box-focus span {
    color: var(--category-color) !important;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f7f0;
    width: 100%;
    position: relative;
    padding-right: 60px;
}

.project-container-box-focus span::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--category-color);
    border-radius: 2px;
}

/* List Styling */
.project-container-box-focus ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.project-container-box-focus ul li {
    color: #444;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.6;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--category-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 40px;
    text-align: left;
}

.project-container-box-focus ul li:hover {
    background: #f0f7f0;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Custom bullet points based on category */
.project-container-box-focus:nth-child(1) ul li::before {
    content: '•';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.project-container-box-focus:nth-child(2) ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.project-container-box-focus:nth-child(3) ul li::before {
    content: '➤';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.project-container-box-focus:nth-child(4) ul li::before {
    content: '📍';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-size: 1.1rem;
}

.project-container-box-focus:nth-child(5) ul li::before {
    content: '★';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.project-container-box-focus:nth-child(6) ul li::before {
    content: '①';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.project-container-box-focus:nth-child(6) ul li:nth-child(2)::before { content: '②'; }
.project-container-box-focus:nth-child(6) ul li:nth-child(3)::before { content: '③'; }
.project-container-box-focus:nth-child(6) ul li:nth-child(4)::before { content: '④'; }
.project-container-box-focus:nth-child(6) ul li:nth-child(5)::before { content: '⑤'; }
.project-container-box-focus:nth-child(6) ul li:nth-child(6)::before { content: '⑥'; }

.project-container-box-focus:nth-child(7) ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Paragraph styling within lists */
.project-container-box-focus ul p {
    color: #555;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.7;
    margin: 0 0 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--category-color);
    text-align: left;
}

/* Nested list styling */
.project-container-box-focus ul ul {
    margin: 10px 0;
    padding-left: 20px;
}

.project-container-box-focus ul ul li {
    background: #fff;
    border-left: 3px solid #ddd;
    padding-left: 30px;
    font-size: 0.9em;
}

.project-container-box-focus ul ul li::before {
    content: '›';
    left: 10px;
    font-size: 1.1rem;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    .section-container-focus {
        padding: clamp(70px, 8vw, 90px) clamp(30px, 6vw, 50px);
        margin-top: 80px;
    }
    
    .project-container-about-focus {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    /* Make some boxes span full width */
    .project-container-box-focus:nth-child(3),
    .project-container-box-focus:nth-child(7) {
        grid-column: span 2;
    }
    
    .project-container-box-focus span {
        font-size: clamp(1.4rem, 1.8vw, 1.6rem);
        margin-bottom: 30px;
    }
    
    .project-container-box-focus::before {
        width: 60px;
        height: 60px;
    }
    
    .project-container-box-focus::after {
        top: 40px;
        right: 40px;
        font-size: 1.8rem;
    }
    
    .project-container-box-focus ul {
        gap: 15px;
    }
    
    .project-container-box-focus ul li {
        font-size: clamp(1rem, 1.2vw, 1.1rem);
        padding: 14px 20px;
        padding-left: 45px;
    }
    
    .project-container-box-focus ul p {
        font-size: clamp(1rem, 1.2vw, 1.1rem);
        padding: 18px;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .section-container-focus {
        padding: clamp(80px, 9vw, 100px) clamp(40px, 8%, 60px);
    }
    
    .project-container-about-focus {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1300px;
    }
    
    .project-container-box-focus {
        padding: 35px 40px;
    }
    
    /* Adjust grid spans for desktop */
    .project-container-box-focus:nth-child(3) {
        grid-column: span 3;
    }
    
    .project-container-box-focus:nth-child(5),
    .project-container-box-focus:nth-child(6),
    .project-container-box-focus:nth-child(7) {
        grid-column: span 3;
    }
    
    .project-container-box-focus span {
        font-size: clamp(1.5rem, 1.6vw, 1.7rem);
    }
    
    .project-container-box-focus::before {
        width: 70px;
        height: 70px;
    }
    
    .project-container-box-focus::after {
        top: 45px;
        right: 45px;
        font-size: 2rem;
    }
    
    .project-container-box-focus ul li {
        font-size: clamp(1.05rem, 1.1vw, 1.1rem);
        line-height: 1.7;
    }
    
    /* Multi-column layout for lists in larger boxes */
    .project-container-box-focus:nth-child(1) ul,
    .project-container-box-focus:nth-child(2) ul,
    .project-container-box-focus:nth-child(4) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .project-container-box-focus:nth-child(5) ul,
    .project-container-box-focus:nth-child(6) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .project-container-about-focus {
        max-width: 1400px;
        gap: 45px;
    }
    
    .project-container-box-focus {
        padding: 40px 45px;
    }
    
    .project-container-box-focus span {
        font-size: 1.8rem;
    }
    
    .project-container-box-focus::before {
        width: 80px;
        height: 80px;
    }
    
    .project-container-box-focus::after {
        top: 50px;
        right: 50px;
        font-size: 2.2rem;
    }
    
    .project-container-box-focus ul li {
        font-size: 1.15rem;
        padding: 15px 25px;
        padding-left: 50px;
    }
    
    .project-container-box-focus ul p {
        font-size: 1.15rem;
        padding: 20px;
    }
    
    /* More columns for larger screens */
    .project-container-box-focus:nth-child(5) ul {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .project-container-box-focus:nth-child(6) ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .section-container-focus {
        margin-top: 60px !important;
        padding: 50px 15px;
    }
    
    .project-container-about-focus {
        gap: 25px;
        padding: 0 5px;
    }
    
    .project-container-box-focus {
        padding: 20px;
    }
    
    .project-container-box-focus span {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
        padding-right: 50px;
    }
    
    .project-container-box-focus::before {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .project-container-box-focus::after {
        top: 25px;
        right: 25px;
        font-size: 1.2rem;
    }
    
    .project-container-box-focus span::before {
        width: 50px;
    }
    
    .project-container-box-focus ul {
        gap: 10px;
    }
    
    .project-container-box-focus ul li {
        font-size: 0.9rem;
        padding: 10px 12px;
        padding-left: 35px;
        line-height: 1.5;
    }
    
    .project-container-box-focus ul p {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .project-container-box-focus ul li::before {
        left: 10px;
        font-size: 1.1rem;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .section-container-focus {
        padding: 40px 12px;
        margin-top: 50px !important;
    }
    
    .project-container-box-focus {
        padding: 15px;
    }
    
    .project-container-box-focus span {
        font-size: 1.1rem;
        padding-right: 45px;
    }
    
    .project-container-box-focus::before {
        width: 35px;
        height: 35px;
        top: 12px;
        right: 12px;
    }
    
    .project-container-box-focus::after {
        top: 22px;
        right: 22px;
        font-size: 1.1rem;
    }
    
    .project-container-box-focus ul li {
        font-size: 0.85rem;
        padding: 8px 10px;
        padding-left: 30px;
    }
    
    .project-container-box-focus ul p {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    .project-container-box-focus ul li::before {
        left: 8px;
        font-size: 1rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .section-container-focus {
        margin-top: 50px !important;
        padding: 40px 20px;
    }
    
    .project-container-about-focus {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-container-box-focus {
        padding: 15px;
    }
    
    .project-container-box-focus:nth-child(3),
    .project-container-box-focus:nth-child(7) {
        grid-column: span 2;
    }
}




/* Focus area */
/* ====== FOCUS AREA SECTION ====== */
.section-container {
    width: 100%;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f7f0 100%);
}

.profile-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.user-profile {
    background: white;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    border-top: 5px solid #42b300;
    overflow: hidden;
    position: relative;
}

.user-profile:hover {
    box-shadow: 0 15px 40px rgba(66, 179, 0, 0.15);
    transform: translateY(-8px);
    border-color: #42b300;
}

.user-profile-container {
    padding: clamp(30px, 4vw, 45px);
}

.user-profile-text {
    padding-bottom: 15px;
    margin-bottom: 25px;
    text-align: center;
    width: 100% !important;
    position: relative;
}

.user-profile-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #42b300);
    border-radius: 2px;
}

.user-profile-text[style*="border-bottom: 2px solid red"] {
    border-bottom: 2px solid transparent !important;
}

.user-profile-text span {
    color: #42b300;
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    padding-bottom: 15px;
    position: relative;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.user-profile-text span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #42b300);
    border-radius: 2px;
}

/* Adjust width for specific sections */
.user-profile-text[style*="width: 30%"],
.user-profile-text[style*="width: 40%"] {
    width: auto !important;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.focus-container {
    width: 100%;
    margin-top: 20px;
}

.service-box-focus {
    background: white;
    border-radius: 15px;
    padding: clamp(25px, 3vw, 40px);
    border: 2px solid #f0f7f0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box-focus:hover {
    box-shadow: 0 12px 35px rgba(66, 179, 0, 0.1);
    border-color: #42b300;
}

.service-box-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #42b300, #ff0000);
    z-index: 1;
}

.service-box-heading-partners {
    width: 100%;
    position: relative;
    z-index: 2;
}

.services-box-heading-text-partners {
    width: 100%;
}

.services-box-heading-text-partners span {
    display: block;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f7f0;
    position: relative;
}

.services-box-heading-text-partners span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 3px;
    background: #42b300;
    border-radius: 2px;
}

.services-box-heading-text-partners span a {
    color: #42b300 !important;
    text-decoration: none;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-block;
}

.services-box-heading-text-partners span a:hover {
    color: #3a9e00 !important;
    transform: translateX(5px);
}

.services-box-heading-text-partners span a strong {
    border-bottom: 2px solid red !important;
    padding-bottom: 5px;
    font-weight: 900;
    position: relative;
}

.services-box-heading-text-partners span a strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.services-box-heading-text-partners p {
    color: #444;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.9 !important;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
    padding-right: 15px;
}

.services-box-heading-text-partners p::before {
    content: '▸';
    color: #42b300;
    font-size: 1.5em;
    font-weight: bold;
    position: absolute;
    left: 10px;
    top: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-box-focus:hover .services-box-heading-text-partners p::before {
    color: #ff0000;
    transform: translateX(5px);
}

/* Remove extra colon from first items */
.services-box-heading-text-partners p:first-child::before {
    content: '★';
}

/* List styling inside paragraphs (Achievements section) */
.services-box-heading-text-partners p ul {
    padding-left: 25px;
    margin: 15px 0;
}

.services-box-heading-text-partners p ul li {
    color: #555;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style-type: none;
}

.services-box-heading-text-partners p ul li::before {
    content: '✓';
    color: #42b300;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1em;
    background: #f0f7f0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove border bottom from services sections */
#services.section-container[style*="border-bottom: 2px solid red"] {
    border-bottom: none !important;
    margin-top: 0 !important;
    padding: 0;
    background: transparent;
}

/* Remove negative margins */
#services.section-container[style*="margin-top: -20px"],
#services.section-container[style*="margin-top: -60px"] {
    margin-top: 0 !important;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    .section-container {
        padding: clamp(50px, 7vw, 90px) clamp(30px, 6vw, 50px);
        margin-top:200px;
        
    }    
    .user-profile {
        margin-bottom: 50px;
    }
    
    .user-profile-container {
        padding: 35px 45px;
    }
    
    .user-profile-text span {
        font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    }
    
    .user-profile-text::before {
        width: 100px;
    }
    
    .service-box-focus {
        padding: 30px 40px;
    }
    
    .services-box-heading-text-partners p {
        font-size: clamp(1.1rem, 1.3vw, 1.15rem);
        line-height: 2 !important;
        padding-left: 35px;
    }
    
    .services-box-heading-text-partners p::before {
        left: 12px;
        font-size: 1.6em;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .user-profile {
        border-radius: 25px;
    }
    .user-profile-container {
        padding: 40px 60px;
    }
    
    .user-profile-text span {
        font-size: clamp(2rem, 2.2vw, 2.4rem);
    }
    
    .service-box-focus {
        padding: 35px 50px;
    }
    
    .services-box-heading-text-partners span a {
        font-size: clamp(1.5rem, 1.8vw, 1.9rem);
    }
    
    .services-box-heading-text-partners p {
        font-size: clamp(1.15rem, 1.25vw, 1.2rem);
        line-height: 2.1 !important;
        padding-left: 40px;
    }
    
    /* Two column layout for lists */
    .services-box-heading-text-partners p ul {
        columns: 2;
        column-gap: 40px;
    }
    
    .services-box-heading-text-partners p ul li {
        break-inside: avoid;
        margin-bottom: 12px;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .profile-container {
        max-width: 1400px;
    }
    
    .user-profile-text span {
        font-size: 2.5rem;
    }
    
    .services-box-heading-text-partners p {
        font-size: 1.25rem;
        line-height: 2.2 !important;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .section-container {
        padding: 40px 15px;
        margin-top: 150px !important; 
    }
    .user-profile {
        margin-bottom: 30px;
        border-radius: 15px;
    }
    
    .user-profile-container {
        padding: 25px 20px;
    }
    
    .user-profile-text {
        margin-bottom: 15px;
    }
    
    .user-profile-text span {
        font-size: 1.4rem;
        letter-spacing: 1px;
        padding-bottom: 12px;
    }
    
    .user-profile-text::before {
        width: 60px;
    }
    
    .user-profile-text span::after {
        width: 70px;
    }
    
    .user-profile-text[style*="width: 30%"],
    .user-profile-text[style*="width: 40%"] {
        max-width: 100%;
    }
    
    .service-box-focus {
        padding: 20px;
        border-radius: 12px;
    }
    
    .services-box-heading-text-partners span {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .services-box-heading-text-partners span a {
        font-size: 1.3rem;
    }
    
    .services-box-heading-text-partners p {
        font-size: 0.95rem;
        line-height: 1.7 !important;
        padding-left: 25px;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .services-box-heading-text-partners p::before {
        left: 5px;
        font-size: 1.3em;
        top: 2px;
    }
    
    .services-box-heading-text-partners p ul {
        padding-left: 20px;
    }
    
    .services-box-heading-text-partners p ul li {
        font-size: 0.9rem;
        padding-left: 22px;
        margin-bottom: 8px;
    }
    
    .services-box-heading-text-partners p ul li::before {
        width: 18px;
        height: 18px;
        font-size: 0.9em;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .section-container {
        padding: 30px 12px;
        margin-top: 100px !important;
    }
    
    .user-profile-container {
        padding: 20px 15px;
    }
    
    .user-profile-text span {
        font-size: 1.2rem;
    }
    
    .services-box-heading-text-partners p {
        font-size: 0.9rem;
        padding-left: 22px;
    }
    
    .services-box-heading-text-partners p ul li {
        font-size: 0.85rem;
    }
}


/* ====== TESTIMONIALS SECTION ====== */
/* Testimonials Section Styling */
.section-container-testiminols {
    width: 100%;
    padding: 40px 15px;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Heading Styling */
.section-heading-partners-testiminols {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading-partners-testiminols h3 {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    padding-bottom: 8px;
    margin-bottom: 0;
    border-bottom: 3px solid #ff4757 !important;
    text-transform: uppercase;
}

/* Swiper Container */
.swiper {
    width: 100%;
    height: 280px;
    padding: 10px 0 40px !important;
    position: relative;
}

.swiper-wrapper {
    align-items: center;
}

/* Swiper Slide */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: scale(0.9);
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.85;
    transform: scale(0.95);
}

/* Testimonial Box */
.testimonials-box {
    width: 100%;
    max-width: 240px;
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    position: relative;
    transition: all 0.3s ease;
}

.testimonials-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.15);
    border-color: #ff4757;
}

/* Star Ratings */
.testimonials-reviews {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.testimonials-reviews i {
    color: #FFC107;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.testimonials-reviews i:hover {
    transform: scale(1.2);
    color: #ff9800;
}

/* Client Profile */
.client-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.client-profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(255, 71, 87, 0.2);
}

.client-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.client-profile-img:hover img {
    transform: scale(1.05);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 15px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.2s ease;
    margin: 0 4px !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: #ff4757;
    transform: scale(1.2);
}

/* Testimonial Message */
.testimonials-message {
    text-align: center;
    margin-top: 25px;
    font-size: 1rem;
    color: #333;
    font-weight: 400;
    padding: 12px 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonials-message span {
    color: #ff4757;
    font-weight: 600;
    font-size: 1.2rem;
    display: inline-block;
}

/* Error/No Data Messages */
h5 {
    text-align: center;
    padding: 25px;
    color: #666;
    font-size: 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (min-width: 576px) {
    .section-heading-partners-testiminols h3 {
        font-size: 2rem;
    }
    
    .swiper {
        height: 300px;
        padding: 15px 0 45px !important;
    }
    
    .testimonials-box {
        max-width: 260px;
        padding: 22px 18px;
    }
    
    .client-profile-img {
        width: 140px;
        height: 140px;
    }
    
    .testimonials-reviews i {
        font-size: 1.2rem;
    }
    
    .testimonials-message {
        font-size: 1.1rem;
        padding: 15px 25px;
    }
    
    .testimonials-message span {
        font-size: 1.3rem;
    }
}

@media (min-width: 768px) {
    .section-container-testiminols {
        padding: 50px 20px;
    }
    
    .section-heading-partners-testiminols {
        margin-bottom: 35px;
    }
    
    .section-heading-partners-testiminols h3 {
        font-size: 2.2rem;
        padding-bottom: 10px;
    }
    
    .swiper {
        height: 320px;
        padding: 20px 0 50px !important;
    }
    
    .testimonials-box {
        max-width: 280px;
        padding: 25px 20px;
    }
    
    .client-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .testimonials-reviews i {
        font-size: 1.3rem;
    }
    
    .testimonials-message {
        font-size: 1.2rem;
        margin-top: 30px;
    }
}

@media (min-width: 992px) {
    .section-container-testiminols {
        padding: 60px 25px;
    }
    
    .section-heading-partners-testiminols h3 {
        font-size: 2.5rem;
        padding-bottom: 12px;
    }
    
    .swiper {
        height: 340px;
        padding: 25px 0 55px !important;
    }
    
    .testimonials-box {
        max-width: 300px;
        padding: 30px 25px;
    }
    
    .client-profile-img {
        width: 160px;
        height: 160px;
        border-width: 4px;
    }
    
    .testimonials-reviews i {
        font-size: 1.4rem;
    }
}

@media (min-width: 1200px) {
    .swiper {
        height: 360px;
    }
    
    .testimonials-box {
        max-width: 320px;
    }
    
    .client-profile-img {
        width: 170px;
        height: 170px;
    }
}

/* Animation for section entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-container-testiminols {
    animation: fadeInUp 0.6s ease-out;
}

/* Swiper Navigation Arrows (Optional) */
.swiper-button-next,
.swiper-button-prev {
    color: #ff4757;
    background: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ff4757;
    color: white;
    transform: scale(1.1);
}
/* ====== LETTER SECTION ====== */
#letter {
    background: white;
    border-radius: 20px;
    margin-top: 40px;
}

#letter .section-heading {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

#letter .section-heading h3 {
    color: #42b300;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 800;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff0000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

#letter #banner {
    width: 100%;
    min-height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#letter .banner-img {
    width: 100%;
    margin-bottom: 30px;
}

#letter .banner-img-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ff0000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#letter .banner-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

#letter .banner-desc {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 30px;
}

#letter .banner-desc h2 {
    color: #42b300;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#letter .banner-desc p {
    color: #555;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.8;
    text-align: justify;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    .user-profile {
        margin-bottom: 40px;
    }
    
    .user-profile-text {
        width: auto !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    #letter .section-heading {
        width: 80%;
        margin: 0 auto 40px;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .section-container {
        padding: clamp(50px, 6vw, 80px) clamp(40px, 8%, 100px);
    }
    
    .user-profile-container {
        padding: 40px 50px;
    }
    
    .user-profile-text span {
        font-size: clamp(1.8rem, 2.2vw, 2.2rem);
    }
    
    #letter #banner {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }
    
    #letter .banner-img {
        flex: 1;
        margin-bottom: 0;
    }
    
    #letter .banner-desc {
        flex: 1;
        margin-top: 0;
        text-align: left;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .profile-container {
        max-width: 1400px;
    }
    
    .user-profile-text {
        width: 35% !important;
    }
    
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .section-container {
        padding: 30px 15px;
    }
    
    .user-profile {
        margin-bottom: 25px;
    }
    
    .user-profile-container {
        padding: 20px;
    }
    
    .user-profile-text {
        width: 100% !important;
        margin-bottom: 15px;
    }
    
    .user-profile-text span {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .user-profile-text::after {
        width: 60px;
    }
    
    .service-box-focus {
        padding: 15px;
    }
    
    #letter .section-heading h3 {
        font-size: 1.3rem;
    }
    
    #letter .banner-desc {
        padding: 20px;
    }
    
    #letter .banner-desc h2 {
        font-size: 1.3rem;
    }
    
    #letter .banner-desc p {
        font-size: 0.95rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .user-profile-text span {
        font-size: 1.2rem;
    }
    
    .client-profile-img {
        width: 120px;
        height: 120px;
    }
}


/* ====== WHAT WE FOCUS ON SECTION ====== */
#services.section-container {
    width: 100%;
    padding: clamp(60px, 8vw, 80px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7e9 100%);
    position: relative;
    overflow: hidden;
}

#services.section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #42b300, #ff0000);
    z-index: 1;
}

#services.section-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(66, 179, 0, 0.1) 0%, rgba(66, 179, 0, 0) 70%);
    z-index: 0;
}

.section-heading-focus {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-heading-focus span {
    color: #42b300;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    width: auto;
    max-width: 800px;
}

.section-heading-focus span::before,
.section-heading-focus span::after {
    content: '✦';
    color: #ff0000;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.section-heading-focus span::before {
    left: -40px;
}

.section-heading-focus span::after {
    right: -40px;
}

.section-heading-focus p {
    color: #333;
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    line-height: 1.9;
    margin: 0 auto;
    text-align: justify;
    max-width: 1000px;
    padding: clamp(25px, 4vw, 40px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #42b300;
    border-right: 5px solid #ff0000;
    position: relative;
}

.section-heading-focus p::before {
    content: '"';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #42b300;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.section-heading-focus p::after {
    content: '"';
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #ff0000;
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    #services.section-container {
        margin-top: 80px;
        padding: clamp(70px, 8vw, 90px) clamp(30px, 6vw, 50px);
    }
    
    .section-heading-focus span {
        font-size: clamp(2.2rem, 3vw, 2.8rem);
        margin-bottom: 40px;
        padding-bottom: 25px;
    }
    
    .section-heading-focus span::before {
        left: -50px;
    }
    
    .section-heading-focus span::after {
        right: -50px;
    }
    
    .section-heading-focus p {
        font-size: clamp(1.1rem, 1.4vw, 1.25rem);
        line-height: 2;
        padding: 30px 50px;
    }
    
    .section-heading-focus p::before {
        top: -30px;
        font-size: 5rem;
    }
    
    .section-heading-focus p::after {
        bottom: -50px;
        font-size: 5rem;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    #services.section-container {
        padding: clamp(80px, 9vw, 100px) clamp(40px, 8%, 60px);
    }
    
    .section-heading-focus span {
        font-size: clamp(2.5rem, 3.2vw, 3rem);
        margin-bottom: 50px;
    }
    
    .section-heading-focus p {
        font-size: clamp(1.15rem, 1.3vw, 1.3rem);
        line-height: 2.1;
        padding: 40px 60px;
        max-width: 1100px;
    }
    
    .section-heading-focus p::before {
        top: -35px;
        font-size: 6rem;
    }
    
    .section-heading-focus p::after {
        bottom: -55px;
        font-size: 6rem;
    }
    
    #services.section-container::after {
        width: 400px;
        height: 400px;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .section-heading-focus span {
        font-size: 3.2rem;
        max-width: 900px;
    }
    
    .section-heading-focus p {
        font-size: 1.35rem;
        line-height: 2.2;
        padding: 50px 70px;
        max-width: 1200px;
    }
    
    .section-heading-focus p::before {
        top: -40px;
        font-size: 7rem;
    }
    
    .section-heading-focus p::after {
        bottom: -60px;
        font-size: 7rem;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    #services.section-container {
        margin-top: 60px !important;
        padding: 50px 20px;
    }
    
    .section-heading-focus span {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding-bottom: 15px;
        margin-bottom: 25px;
        width: 100% !important;
        max-width: 100%;
    }
    
    .section-heading-focus span::before,
    .section-heading-focus span::after {
        display: none;
    }
    
    .section-heading-focus p {
        font-size: 1rem;
        line-height: 1.8;
        padding: 25px 20px;
        text-align: left;
        border-left: 4px solid #42b300;
        border-right: 4px solid #ff0000;
    }
    
    .section-heading-focus p::before {
        top: -20px;
        font-size: 3rem;
    }
    
    .section-heading-focus p::after {
        bottom: -35px;
        font-size: 3rem;
    }
    
    #services.section-container::after {
        width: 200px;
        height: 200px;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    #services.section-container {
        margin-top: 50px !important;
        padding: 40px 15px;
    }
    
    .section-heading-focus span {
        font-size: 1.3rem;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    
    .section-heading-focus p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 20px 15px;
    }
    
    .section-heading-focus p::before {
        top: -15px;
        font-size: 2.5rem;
    }
    
    .section-heading-focus p::after {
        bottom: -30px;
        font-size: 2.5rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    #services.section-container {
        margin-top: 50px !important;
        padding: 40px 30px;
    }
    
    .section-heading-focus p {
        font-size: 1rem;
        line-height: 1.7;
        padding: 25px 30px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    #services.section-container {
        background: linear-gradient(135deg, #1a2c1a 0%, #0f1f0f 100%);
    }
    
    .section-heading-focus span {
        color: #52d300;
    }
    
    .section-heading-focus span::before,
    .section-heading-focus span::after {
        color: #ff5555;
    }
    
    .section-heading-focus p {
        background: #2d2d2d;
        color: #e0e0e0;
        border-left-color: #52d300;
        border-right-color: #ff5555;
    }
    
    .section-heading-focus p::before {
        color: #52d300;
    }
    
    .section-heading-focus p::after {
        color: #ff5555;
    }
    
    #services.section-container::after {
        background: radial-gradient(circle, rgba(82, 211, 0, 0.1) 0%, rgba(82, 211, 0, 0) 70%);
    }
    
    #services.section-container::before {
        background: linear-gradient(90deg, #ff5555, #52d300, #ff5555);
    }
}

/* Animation for focus section */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-heading-focus {
    animation: fadeInUp 0.8s ease-out;
}

/* ====== STAFF SECTION ====== */
#services.section-container {
    width: 100%;
    padding: 0 clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 110px; /* Added 110px top margin */
}

/* Staff Introduction */
#services .section-heading:first-of-type {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 0; /* Reset padding-top since margin is now on container */
}

#services .section-heading:first-of-type span {
    color: #42b300;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 3px solid red !important;
    margin-bottom: 25px;
}

#services .section-heading:first-of-type p {
    color: #555;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    padding: 0 clamp(15px, 3vw, 30px);
}

/* Department Heading */
#services .section-heading:last-of-type {
    margin: -80px auto 40px !important;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

#services .section-heading:last-of-type h3 {
    color: #42b300;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ff0000;
    display: inline-block;
}

/* Staff Container */
.service-container2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
    padding: 0 10px;
}

/* Staff Card */
.service-box1 {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

.service-box1:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(66, 179, 0, 0.2);
    border-color: #42b300;
}

.service-box1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #42b300, #3a9e00);
    z-index: 1;
}

/* Staff Image */
.service-box-icon2 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 5px solid #42b300;
    box-shadow: 0 8px 20px rgba(66, 179, 0, 0.3);
    transition: all 0.3s ease;
}

.service-box1:hover .service-box-icon2 {
    transform: scale(1.05);
    border-color: #3a9e00;
    box-shadow: 0 12px 25px rgba(66, 179, 0, 0.4);
}

.service-box-icon2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-box1:hover .service-box-icon2 img {
    transform: scale(1.1);
}

/* Staff Text */
.services-box-heading-text1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.services-box-heading-text1 span {
    color: #333;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.services-box-heading-text1 strong {
    color: #42b300;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 600;
    background: #f0f7f0;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    border: 1px solid #d4ecd4;
    line-height: 1.4;
    width: 100%;
    max-width: 250px;
}

/* No Staff Message */
#services h5 {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    padding: 40px;
    grid-column: 1 / -1;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

/* Horizontal Line */
hr {
    border: none;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #42b300);
    margin: 30px auto;
    border-radius: 2px;
    opacity: 0.8;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    #services.section-container {
        margin-top: 90px; /* Adjusted for tablet */
    }
    
    #services .section-heading:first-of-type {
        margin-bottom: 50px;
    }
    
    #services .section-heading:first-of-type span {
        font-size: clamp(2rem, 2.5vw, 2.2rem);
    }
    
    #services .section-heading:first-of-type p {
        font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    }
    
    #services .section-heading:last-of-type {
        margin: -60px auto 50px !important;
    }
    
    #services .section-heading:last-of-type h3 {
        font-size: clamp(1.8rem, 2.2vw, 2rem);
    }
    
    .service-container2 {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 35px;
        padding: 0 15px;
    }
    
    .service-box1 {
        padding: 30px;
    }
    
    .service-box-icon2 {
        width: 200px;
        height: 200px;
    }
    
    hr {
        width: 60%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    #services.section-container {
        margin-top: 110px; /* Maintain 110px on desktop */
    }
    
    .service-container2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 30px auto 0;
    }
    
    .service-box1 {
        padding: 35px 30px;
    }
    
    .services-box-heading-text1 span {
        font-size: clamp(1.2rem, 1.3vw, 1.3rem);
    }
    
    .services-box-heading-text1 strong {
        font-size: clamp(1rem, 1.1vw, 1.1rem);
    }
    
    hr {
        width: 50%;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    #services.section-container {
        margin-top: 120px; /* Slightly larger on very large screens */
    }
    
    .service-container2 {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        gap: 45px;
    }
    
    .service-box-icon2 {
        width: 220px;
        height: 220px;
    }
    
    #services .section-heading:first-of-type p {
        max-width: 1000px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    #services.section-container {
        margin-top: 70px !important; /* Reduced for mobile */
        padding: 0 15px;
    }
    
    #services .section-heading:first-of-type {
        margin-bottom: 30px;
    }
    
    #services .section-heading:first-of-type span {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    #services .section-heading:first-of-type p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0 10px;
        text-align: left;
    }
    
    #services .section-heading:last-of-type {
        margin: -50px auto 30px !important;
        padding: 0;
    }
    
    #services .section-heading:last-of-type h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
        padding-bottom: 10px;
    }
    
    .service-container2 {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 5px;
    }
    
    .service-box1 {
        padding: 20px;
    }
    
    .service-box-icon2 {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .services-box-heading-text1 span {
        font-size: 1.1rem;
    }
    
    .services-box-heading-text1 strong {
        font-size: 0.95rem;
        padding: 8px 15px;
    }
    
    hr {
        width: 90%;
        margin: 20px auto;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    #services.section-container {
        margin-top: 60px !important; /* Further reduced for very small screens */
        padding: 0 10px;
    }
    
    #services .section-heading:first-of-type span {
        font-size: 1.3rem;
    }
    
    #services .section-heading:first-of-type p {
        font-size: 0.9rem;
    }
    
    #services .section-heading:last-of-type h3 {
        font-size: 1.2rem;
    }
    
    .service-box-icon2 {
        width: 130px;
        height: 130px;
    }
    
    .services-box-heading-text1 span {
        font-size: 1rem;
    }
    
    .services-box-heading-text1 strong {
        font-size: 0.9rem;
    }
}

/* Medium Mobile Devices (480px - 768px) */
@media screen and (min-width: 481px) and (max-width: 767px) {
    #services.section-container {
        margin-top: 80px; /* Intermediate size for medium mobile */
    }
    
    #services .section-heading:first-of-type span {
        font-size: 1.7rem;
    }
    
    #services .section-heading:first-of-type p {
        font-size: 1.05rem;
    }
    
    .service-container2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-box-icon2 {
        width: 160px;
        height: 160px;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    #services.section-container {
        margin-top: 60px; /* Reduced for landscape */
    }
    
    #services .section-heading:first-of-type {
        margin-bottom: 25px;
    }
    
    .service-container2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-box-icon2 {
        width: 120px;
        height: 120px;
        margin-bottom: 15px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .service-box1 {
        background: #2d2d2d;
        border-color: #444;
    }
    
    .services-box-heading-text1 span {
        color: #fff;
    }
    
    .services-box-heading-text1 strong {
        background: #1a2c1a;
        border-color: #2d4d2d;
        color: #52d300;
    }
    
    #services .section-heading:first-of-type p {
        color: #e0e0e0;
    }
    
    #services h5 {
        background: #2d2d2d;
        color: #bbb;
    }
    
    hr {
        background: linear-gradient(90deg, #ff5555, #52d300);
    }
}

/* Smooth transition for margin on resize */
#services.section-container {
    transition: margin-top 0.3s ease;
}

/* Print Media */
@media print {
    #services.section-container {
        margin-top: 50px; /* Reduced for printing */
    }
    
    .service-box1 {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}



/* ====== FUND RAISING SECTION ====== */
/* ====== FUND RAISING & PARTNERS SECTION ====== */
.section-container-partners {
    width: 100%;
    padding: clamp(60px, 8vw, 80px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7e9 100%);
    position: relative;
    overflow: hidden;
}

.section-container-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #42b300, #ff0000);
    z-index: 1;
}

.section-heading-partners {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    text-align: center;
    padding: 0 20px;
}

.section-heading-partners span {
    color: #42b300;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 3px solid red !important;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
}

.section-heading-partners span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #42b300;
    border-radius: 2px;
}

.section-heading-partners p {
    color: #555;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 clamp(15px, 3vw, 30px);
}

/* Partners Grid Container */
.project-container-about-partners {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Partner Box */
.project-container-box-partners {
    background: white;
    border-radius: 20px;
    padding: clamp(25px, 4vw, 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.project-container-box-partners:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(66, 179, 0, 0.15);
    border-color: #42b300;
}

.project-container-box-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--category-color), #42b300);
    z-index: 1;
}

/* Color coding for different categories */
.project-container-box-partners:nth-child(1) {
    --category-color: #42b300;
}

.project-container-box-partners:nth-child(2) {
    --category-color: #007bff;
}

.project-container-box-partners:nth-child(3) {
    --category-color: #6f42c1;
}

.project-container-box-partners:nth-child(4) {
    --category-color: #fd7e14;
}

/* Title Styling */
.project-container-box-partners span {
    color: var(--category-color) !important;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f7f0;
    width: 100%;
    position: relative;
}

.project-container-box-partners span::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--category-color);
    border-radius: 2px;
}

/* List Styling */
.project-container-box-partners ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.project-container-box-partners ul li {
    color: #444;
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    line-height: 1.6;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--category-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 40px;
    text-align: left;
}

.project-container-box-partners ul li:hover {
    background: #f0f7f0;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.project-container-box-partners ul li::before {
    content: '✓';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--category-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    .section-container-partners {
        padding: clamp(70px, 8vw, 90px) clamp(30px, 6vw, 50px);
        margin-top: 80px;
    }
    
    .section-heading-partners {
        width: 80%;
        margin-bottom: 60px;
    }
    
    .section-heading-partners span {
        font-size: clamp(2rem, 2.8vw, 2.3rem);
        margin-bottom: 35px;
    }
    
    .section-heading-partners p {
        font-size: clamp(1.1rem, 1.3vw, 1.2rem);
        line-height: 1.9;
    }
    
    .project-container-about-partners {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .project-container-box-partners span {
        font-size: clamp(1.4rem, 1.8vw, 1.6rem);
        margin-bottom: 30px;
    }
    
    .project-container-box-partners ul {
        gap: 15px;
    }
    
    .project-container-box-partners ul li {
        font-size: clamp(1rem, 1.2vw, 1.1rem);
        padding: 14px 20px;
        padding-left: 45px;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .section-container-partners {
        padding: clamp(80px, 9vw, 100px) clamp(40px, 8%, 60px);
    }
    
    .section-heading-partners {
        width: 70%;
    }
    
    .project-container-about-partners {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1100px;
    }
    
    .project-container-box-partners {
        padding: 35px 40px;
    }
    
    .project-container-box-partners span {
        font-size: clamp(1.5rem, 1.6vw, 1.7rem);
    }
    
    .project-container-box-partners ul li {
        font-size: clamp(1.05rem, 1.1vw, 1.1rem);
        line-height: 1.7;
    }
    
    /* Two column layout for lists in larger boxes */
    .project-container-box-partners:nth-child(3) ul,
    .project-container-box-partners:nth-child(2) ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .project-container-box-partners:nth-child(3) ul li,
    .project-container-box-partners:nth-child(2) ul li {
        break-inside: avoid;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .section-heading-partners span {
        font-size: 2.5rem;
    }
    
    .project-container-about-partners {
        max-width: 1300px;
        gap: 45px;
    }
    
    .project-container-box-partners {
        padding: 40px 45px;
    }
    
    .project-container-box-partners span {
        font-size: 1.8rem;
    }
    
    .project-container-box-partners ul li {
        font-size: 1.15rem;
        padding: 15px 25px;
        padding-left: 50px;
    }
    
    .project-container-box-partners:nth-child(3) ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .section-container-partners {
        margin-top: 60px !important;
        padding: 50px 15px;
    }
    
    .section-heading-partners {
        width: 100%;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .section-heading-partners span {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding-bottom: 12px;
        margin-bottom: 20px;
    }
    
    .section-heading-partners span::after {
        width: 70px;
    }
    
    .section-heading-partners p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding: 0;
        text-align: left;
    }
    
    .project-container-about-partners {
        gap: 25px;
        padding: 0 5px;
    }
    
    .project-container-box-partners {
        padding: 20px;
    }
    
    .project-container-box-partners span {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .project-container-box-partners span::before {
        width: 50px;
    }
    
    .project-container-box-partners ul {
        gap: 10px;
    }
    
    .project-container-box-partners ul li {
        font-size: 0.9rem;
        padding: 10px 12px;
        padding-left: 35px;
        line-height: 1.5;
    }
    
    .project-container-box-partners ul li::before {
        left: 10px;
        font-size: 1.1rem;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .section-container-partners {
        padding: 40px 12px;
        margin-top: 50px !important;
    }
    
    .section-heading-partners span {
        font-size: 1.3rem;
    }
    
    .section-heading-partners p {
        font-size: 0.9rem;
    }
    
    .project-container-box-partners {
        padding: 15px;
    }
    
    .project-container-box-partners span {
        font-size: 1.1rem;
    }
    
    .project-container-box-partners ul li {
        font-size: 0.85rem;
        padding: 8px 10px;
        padding-left: 30px;
    }
    
    .project-container-box-partners ul li::before {
        left: 8px;
        font-size: 1rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .section-container-partners {
        margin-top: 50px !important;
        padding: 40px 20px;
    }
    
    .project-container-about-partners {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-container-box-partners {
        padding: 15px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .section-container-partners {
        background: linear-gradient(135deg, #1a2c1a 0%, #0f1f0f 100%);
    }
    
    .section-container-partners::before {
        background: linear-gradient(90deg, #ff5555, #52d300, #ff5555);
    }
    
    .section-heading-partners span {
        color: #52d300;
    }
    
    .section-heading-partners span::after {
        background: #52d300;
    }
    
    .section-heading-partners p {
        color: #e0e0e0;
    }
    
    .project-container-box-partners {
        background: #2d2d2d;
        border-color: #444;
    }
    
    .project-container-box-partners:hover {
        border-color: #52d300;
    }
    
    /* Color coding adjustments for dark mode */
    .project-container-box-partners:nth-child(1) {
        --category-color: #52d300;
    }
    
    .project-container-box-partners:nth-child(2) {
        --category-color: #3d8fd9;
    }
    
    .project-container-box-partners:nth-child(3) {
        --category-color: #8768d1;
    }
    
    .project-container-box-partners:nth-child(4) {
        --category-color: #ffa94d;
    }
    
    .project-container-box-partners span {
        border-bottom-color: #444;
    }
    
    .project-container-box-partners ul li {
        color: #e0e0e0;
        background: #3d3d3d;
        border-left-color: var(--category-color);
    }
    
    .project-container-box-partners ul li:hover {
        background: #4a4a4a;
    }
    
    .project-container-box-partners ul li::before {
        color: var(--category-color);
    }
}

/* Print Styles */
@media print {
    .section-container-partners {
        margin-top: 50px !important;
        background: white !important;
        padding: 40px 20px;
    }
    
    .section-container-partners::before {
        background: #333;
        height: 2px;
    }
    
    .section-heading-partners span {
        color: #333;
        border-bottom: 2px solid #333 !important;
    }
    
    .section-heading-partners span::after {
        display: none;
    }
    
    .section-heading-partners p {
        color: #555;
    }
    
    .project-container-box-partners {
        break-inside: avoid;
        box-shadow: none;
        border: 2px solid #ddd;
    }
    
    .project-container-box-partners::before {
        background: #333;
    }
    
    .project-container-box-partners span {
        color: #333 !important;
        border-bottom: 1px solid #ddd !important;
    }
    
    .project-container-box-partners ul li {
        color: #333;
        background: white;
        border-left: 3px solid #999;
    }
}

/* donors under partners */

/* ====== DONORS/PARTNERS SECTION ====== */
/* Donors/Partners Section Styles */
.section-container-donors {
    width: 100%;
    padding: clamp(80px, 10vw, 100px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 100px;
    background: linear-gradient(135deg, #f5f8ff 0%, #f8f9fa 50%, #fff5f5 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Top gradient border */
.section-container-donors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ff0000, #42b300, #007bff, #ff0000);
    z-index: 2;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Background pattern */
.section-container-donors::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, 
        rgba(66, 179, 0, 0.08) 0%, 
        rgba(66, 179, 0, 0.03) 40%, 
        transparent 70%);
    z-index: -1;
}

/* Section Heading */
.section-heading-partners-donors {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
}

.section-heading-partners-donors h3 {
    display: inline-block;
    color: #42b300;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    padding-bottom: 15px;
    margin-bottom: 0;
    position: relative;
    letter-spacing: 1.5px;
}

.section-heading-partners-donors h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #42b300, #5cd923);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(66, 179, 0, 0.3);
}

/* Partners Grid Container */
.service-container-partners-donors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Individual Partner Box */
.service-box-partners {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.98));
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    min-height: 280px;
}

.service-box-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(66, 179, 0, 0.05), rgba(255, 255, 255, 0.1));
    z-index: -1;
    border-radius: 25px;
}

.service-box-partners:hover {
    transform: 
        translateY(-15px) 
        scale(1.05) 
        rotateX(5deg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(66, 179, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    border-color: rgba(66, 179, 0, 0.3);
}

.bg-gredient-donors {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98), 
        rgba(248, 249, 250, 0.95));
}

/* Partner Card Content */
.service-box-heading-partners-donors {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    gap: 30px;
    height: 100%;
    text-align: center;
    position: relative;
}

/* Partner Logo Container */
.service-box-icon2-donors {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-box-icon2-donors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(66, 179, 0, 0.05), rgba(255, 255, 255, 0.1));
    z-index: -1;
    border-radius: 20px;
}

.service-box-partners:hover .service-box-icon2-donors {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(66, 179, 0, 0.1);
}

.service-box-icon2-donors img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.service-box-partners:hover .service-box-icon2-donors img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Partner Name */
.services-box-heading-text-partners-donors {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.services-box-heading-text-partners-donors span {
    color: #333;
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    display: inline-block;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    width: 100%;
    max-width: 300px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-box-partners:hover .services-box-heading-text-partners-donors span {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(66, 179, 0, 0.1);
    color: #42b300;
}

/* Decorative elements */
.service-box-partners::after {
    content: '🤝';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.1;
    transform: rotate(15deg);
    transition: all 0.5s ease;
}

.service-box-partners:hover::after {
    opacity: 0.2;
    transform: rotate(25deg) scale(1.2);
}

/* No Partners Message */
.service-container-partners-donors h5 {
    grid-column: 1 / -1;
    text-align: center;
    color: #666;
    font-size: 1.3rem;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px dashed #ddd;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
    .section-container-donors {
        margin-top: 60px !important;
        padding: 60px 15px;
    }
    
    .section-heading-partners-donors {
        margin-bottom: 40px;
    }
    
    .section-heading-partners-donors h3 {
        font-size: 1.6rem;
        padding-bottom: 12px;
    }
    
    .section-heading-partners-donors h3::after {
        width: 80px;
        height: 3px;
    }
    
    .service-container-partners-donors {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
        padding: 0 10px;
    }
    
    .service-box-partners {
        min-height: 240px;
        border-radius: 20px;
    }
    
    .service-box-heading-partners-donors {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .service-box-icon2-donors {
        width: 140px;
        height: 140px;
        padding: 20px;
    }
    
    .services-box-heading-text-partners-donors span {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
    
    .service-box-partners::after {
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }
}

/* Tablet Devices (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .section-container-donors {
        padding: clamp(70px, 8vw, 90px) clamp(25px, 4vw, 40px);
    }
    
    .section-heading-partners-donors {
        margin-bottom: 50px;
    }
    
    .section-heading-partners-donors h3 {
        font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    }
    
    .service-container-partners-donors {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 35px;
    }
    
    .service-box-partners {
        min-height: 260px;
    }
    
    .service-box-heading-partners-donors {
        padding: 35px 25px;
        gap: 28px;
    }
    
    .service-box-icon2-donors {
        width: 160px;
        height: 160px;
    }
    
    .services-box-heading-text-partners-donors span {
        font-size: 1.2rem;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .section-container-donors {
        padding: clamp(80px, 10vw, 100px) clamp(30px, 5%, 50px);
    }
    
    .section-heading-partners-donors {
        margin-bottom: 60px;
    }
    
    .service-container-partners-donors {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 45px;
        max-width: 1300px;
    }
    
    .service-box-partners {
        min-height: 300px;
    }
    
    .service-box-heading-partners-donors {
        padding: 40px 30px;
        gap: 30px;
    }
    
    .service-box-icon2-donors {
        width: 180px;
        height: 180px;
    }
    
    .services-box-heading-text-partners-donors span {
        font-size: 1.3rem;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .service-container-partners-donors {
        max-width: 1400px;
        gap: 50px;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
    
    .service-box-partners {
        min-height: 320px;
    }
    
    .service-box-heading-partners-donors {
        padding: 45px 35px;
        gap: 35px;
    }
    
    .service-box-icon2-donors {
        width: 200px;
        height: 200px;
    }
    
    .services-box-heading-text-partners-donors span {
        font-size: 1.4rem;
        padding: 18px 30px;
    }
    
    .section-heading-partners-donors h3 {
        font-size: 2.5rem;
    }
}

/* Extra Small Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .service-container-partners-donors {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .service-box-partners {
        min-height: 220px;
        border-radius: 18px;
    }
    
    .service-box-heading-partners-donors {
        padding: 25px 15px;
        gap: 20px;
    }
    
    .service-box-icon2-donors {
        width: 120px;
        height: 120px;
        padding: 15px;
    }
    
    .services-box-heading-text-partners-donors span {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .section-heading-partners-donors h3 {
        font-size: 1.4rem;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .section-container-donors {
        padding: 40px 20px;
        margin-top: 50px !important;
    }
    
    .service-container-partners-donors {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .service-box-partners {
        min-height: 200px;
    }
    
    .service-box-heading-partners-donors {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .service-box-icon2-donors {
        width: 100px;
        height: 100px;
        padding: 15px;
    }
}

/* activities */
/* Activities Section Container */
.section-container-activities {
    width: 100%;
    padding: 20px 15px;
    position: relative;
    background: #f8f9fa;
}

/* Our Work in Action Section - UPDATED WITH MARGIN */
.section-heading-focus {
    max-width: 1200px;
    margin: 100px auto 40px; /* Added 100px top margin */
    text-align: center;
    padding: 0 15px;
}

.section-heading-focus span {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 3px solid #ff4757 !important;
}

.section-heading-focus p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Activities Section Heading */
.section-heading-partners-activities {
    max-width: 1200px;
    margin: 0 auto 30px;
    text-align: center;
    padding: 0 15px;
}

.section-heading-partners-activities h3 {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    padding-bottom: 8px;
    margin-bottom: 0;
    text-transform: uppercase;
    border-bottom: 1px solid #ff4757 !important;
    border-radius: 5px;
}

/* Activities Grid Container */
.service-container-focus-activities {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 0 15px;
}

/* Activity Card - EQUAL HEIGHT */
.service-box-focus {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 380px; /* FIXED HEIGHT FOR ALL CARDS */
}

.service-box-focus:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 71, 87, 0.15);
    border-color: #ff4757;
}

/* Activity Card Header */
.service-box-heading-partners-activities {
    width: 100%;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Activity Image - EQUAL SIZE FOR ALL */
.service-box-icon2 {
    width: 100%;
    height: 200px; /* FIXED HEIGHT FOR ALL IMAGES */
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
    border-radius: 10% 10% 0 0; /* Changed from 50% to 10% for top corners only */
}

.service-box-icon2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-box-focus:hover .service-box-icon2 img {
    transform: scale(1.05);
}

/* Activity Content */
.services-box-heading-text-partners-activities {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 180px; /* Fixed minimum height for text area */
}

/* Activity Title - WITH TEXT WRAPPING */
.services-box-heading-text-partners-activities p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    min-height: 3.4em; /* Fixed height for all titles */
    max-height: 3.4em; /* Prevents longer titles from breaking layout */
}

/* Activity Date */
.services-box-heading-text-partners-activities span {
    display: block;
    margin-bottom: 15px;
}

.services-box-heading-text-partners-activities span a {
    font-size: 0.95rem;
    color: #42b300;
    text-decoration: none;
    transition: all 0.3s ease;
}

.services-box-heading-text-partners-activities span a strong {
    padding-bottom: 2px;
    border-bottom: 1px solid #ff4757;
}

.services-box-heading-text-partners-activities span a:hover {
    color: #ff4757;
}

/* Read More Button */
.services-box-heading-text-partners-activities > a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white !important;
    background: #42b300;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    width: 150px;
    margin-top: auto;
    align-self: flex-start;
}

.services-box-heading-text-partners-activities > a:hover {
    background: #ff4757;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.2);
}

/* Error Messages */
h5 {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px dashed #ddd;
    margin: 30px auto;
    max-width: 500px;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-heading-focus {
        margin: 70px auto 30px; /* Responsive top margin */
    }
    
    .section-heading-focus span {
        font-size: 1.8rem;
    }
    
    .section-heading-focus p {
        font-size: 1rem;
    }
    
    .section-heading-partners-activities h3 {
        font-size: 1.6rem;
    }
    
    .service-container-focus-activities {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-box-focus {
        min-height: 360px;
    }
    
    .service-box-icon2 {
        height: 180px; /* Fixed height on tablet */
        border-radius: 10% 10% 0 0; /* Consistent 10% border radius */
    }
    
    .services-box-heading-text-partners-activities {
        padding: 15px;
        min-height: 180px;
    }
    
    .services-box-heading-text-partners-activities p {
        font-size: 1.1rem;
        -webkit-line-clamp: 2;
        min-height: 3.1em;
        max-height: 3.1em;
    }
}

@media (max-width: 576px) {
    .section-container-activities {
        padding: 15px 10px;
    }
    
    .section-heading-focus {
        margin: 50px auto 25px; /* Smaller top margin on mobile */
        padding: 0 10px;
    }
    
    .section-heading-focus span {
        font-size: 1.6rem;
        padding-bottom: 8px;
        margin-bottom: 15px;
    }
    
    .section-heading-focus p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .section-heading-partners-activities h3 {
        font-size: 1.4rem;
        padding-bottom: 6px;
    }
    
    .service-container-focus-activities {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .service-box-focus {
        min-height: 350px;
    }
    
    .service-box-icon2 {
        height: 170px; /* Fixed height on mobile */
        border-radius: 10% 10% 0 0; /* Consistent 10% border radius */
    }
    
    .services-box-heading-text-partners-activities {
        padding: 12px;
        min-height: 180px;
    }
    
    .services-box-heading-text-partners-activities p {
        font-size: 1rem;
        -webkit-line-clamp: 2;
        min-height: 2.8em;
        max-height: 2.8em;
    }
    
    .services-box-heading-text-partners-activities > a {
        padding: 8px 16px;
        font-size: 0.9rem;
        width: 140px;
    }
}

@media (min-width: 992px) {
    .section-heading-focus {
        margin: 100px auto 40px; /* Maintain 100px top margin on desktop */
    }
    
    .section-heading-focus span {
        font-size: 2.5rem;
    }
    
    .section-heading-partners-activities h3 {
        font-size: 2rem;
    }
    
    .service-container-focus-activities {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 30px;
    }
    
    .service-box-focus {
        min-height: 400px;
    }
    
    .service-box-icon2 {
        height: 220px; /* Fixed height on desktop */
        border-radius: 10% 10% 0 0; /* Consistent 10% border radius */
    }
    
    .services-box-heading-text-partners-activities {
        min-height: 180px;
    }
}

@media (min-width: 1200px) {
    .section-heading-focus {
        margin: 120px auto 50px; /* Slightly larger top margin on large screens */
    }
}

/* Animation for section entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-box-focus {
    animation: fadeInUp 0.5s ease-out;
}

/* Staggered animation for cards */
.service-box-focus:nth-child(1) { animation-delay: 0.1s; }
.service-box-focus:nth-child(2) { animation-delay: 0.2s; }
.service-box-focus:nth-child(3) { animation-delay: 0.3s; }
.service-box-focus:nth-child(4) { animation-delay: 0.4s; }
.service-box-focus:nth-child(5) { animation-delay: 0.5s; }
.service-box-focus:nth-child(6) { animation-delay: 0.6s; }

/* Ensure all cards have equal height */
.service-container-focus-activities {
    align-items: stretch;
}

/* Image placeholder for empty images */
.service-box-icon2:empty::before {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #ccc;
}

/* Card gradient top border on hover */
.service-box-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff4757, #42b300);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-box-focus:hover::before {
    opacity: 1;
}

/* Ensure all text content fits within card */
.services-box-heading-text-partners-activities {
    overflow: hidden;
}

/* Text truncation for very long titles */
.services-box-heading-text-partners-activities p {
    word-break: break-word;
    hyphens: auto;
}

/* Image hover border radius transition */
.service-box-icon2 {
    transition: border-radius 0.3s ease;
}

.service-box-focus:hover .service-box-icon2 {
    border-radius: 8% 8% 0 0; /* Slightly less rounded on hover for effect */
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}
/* one activities */
/* ====== SINGLE ACTIVITY DETAIL SECTION ====== */
.section-container-activity {
    width: 100%;
    padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 40px);
    box-sizing: border-box;
    margin-top: 150px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f7e9 100%);
    min-height: calc(100vh - 200px);
    position: relative;
}

.section-container-activity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #42b300, #ff0000);
    z-index: 1;
}
.section-heading-partners-activity {
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 50px);
    padding: 0 20px;
    width: 100% !important;
    margin-top: 5px !important;
    position: relative;
    z-index: 2;
}

.section-heading-partners-activity h3 {
    color: #42b300;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase !important;
    letter-spacing: 1.5px;
    padding-bottom: 15px;
    border-bottom: 1px solid red !important;
    border-radius: 5px !important;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 800px;
    line-height: 1.3;
}

.section-heading-partners-activity h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #42b300;
    border-radius: 2px;
}

.service-container-focus-activity {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 10px;
}

.service-box-focus {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-box-focus:hover {
    box-shadow: 0 20px 50px rgba(66, 179, 0, 0.15);
    border-color: #42b300;
}

.service-box-focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #42b300, #ff0000);
    z-index: 1;
}

.service-box-heading-partners-activity {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(25px, 4vw, 40px);
}

.service-box-icon2-activity {
    width: 100%;
    height: clamp(300px, 40vw, 500px);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
    border: 3px solid #f0f7f0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-box-focus:hover .service-box-icon2-activity {
    border-color: #42b300;
    box-shadow: 0 12px 30px rgba(66, 179, 0, 0.2);
}

.service-box-icon2-activity img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.service-box-focus:hover .service-box-icon2-activity img {
    transform: scale(1.03);
}

.services-box-heading-text-partners-activity {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.services-box-heading-text-partners-activity span {
    text-align: center;
    display: block;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f7f0;
}

.services-box-heading-text-partners-activity span a {
    color: #42b300 !important;
    text-decoration: none;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(66, 179, 0, 0.1);
    border-radius: 8px;
}

.services-box-heading-text-partners-activity span a:hover {
    color: #3a9e00 !important;
    background: rgba(66, 179, 0, 0.15);
    transform: translateY(-3px);
}

.services-box-heading-text-partners-activity span a strong {
    border-bottom: 2px solid red !important;
    padding-bottom: 5px;
    font-weight: 700;
}

.services-box-heading-text-partners-activity p {
    color: #333;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.9;
    text-align: justify;
    margin: 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #42b300;
    border-right: 2px solid #e9ecef;
    position: relative;
}

.services-box-heading-text-partners-activity p::before {
    content: '📋';
    position: absolute;
    top: -15px;
    left: -15px;
    font-size: 2rem;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

/* Activity Back Button */
.activity-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: #42b300;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-top: 30px;
    align-self: flex-start;
}

.activity-back-button:hover {
    background: white;
    color: #42b300;
    border-color: #42b300;
    transform: translateX(-5px);
}

.activity-back-button::before {
    content: '←';
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Activity Navigation */
.activity-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #f0f7f0;
}

.activity-nav-prev,
.activity-nav-next {
    display: flex;
    align-items: center;
    padding: 12px 25px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.activity-nav-prev:hover,
.activity-nav-next:hover {
    background: #42b300;
    color: white;
    border-color: #42b300;
    transform: translateY(-3px);
}

.activity-nav-prev::before {
    content: '←';
    margin-right: 10px;
    font-size: 1.2rem;
}

.activity-nav-next::after {
    content: '→';
    margin-left: 10px;
    font-size: 1.2rem;
}

/* ====== RESPONSIVE DESIGN ====== */

/* Tablet Devices (768px - 1024px) */
@media screen and (min-width: 768px) {
    .section-container-activity {
        margin-top: 120px;
        padding: clamp(50px, 7vw, 70px) clamp(30px, 6vw, 50px);
    }
    
    .section-heading-partners-activity {
        margin-bottom: 40px;
    }
    
    .section-heading-partners-activity h3 {
        font-size: clamp(2.2rem, 3vw, 2.6rem);
        max-width: 900px;
        padding-bottom: 20px;
    }
    
    .section-heading-partners-activity h3::after {
        width: 150px;
    }
    
    .service-container-focus-activity {
        gap: 50px;
        padding: 0 15px;
    }
    
    .service-box-heading-partners-activity {
        padding: 35px 40px;
    }
    
    .service-box-icon2-activity {
        height: clamp(350px, 35vw, 450px);
        margin-bottom: 35px;
    }
    
    .services-box-heading-text-partners-activity {
        gap: 30px;
    }
    
    .services-box-heading-text-partners-activity span a {
        font-size: clamp(1.2rem, 1.4vw, 1.3rem);
        padding: 10px 25px;
    }
    
    .services-box-heading-text-partners-activity p {
        font-size: clamp(1.1rem, 1.3vw, 1.25rem);
        line-height: 2;
        padding: 30px 35px;
    }
    
    .services-box-heading-text-partners-activity p::before {
        top: -20px;
        left: -20px;
        font-size: 2.5rem;
        padding: 12px;
    }
    
    .activity-navigation {
        margin-top: 50px;
    }
}

/* Desktop Devices (1024px - 1440px) */
@media screen and (min-width: 1024px) {
    .section-container-activity {
        padding: clamp(60px, 8vw, 80px) clamp(40px, 8%, 60px);
    }
    
    .service-container-focus-activity {
        max-width: 1100px;
        gap: 60px;
    }
    
    .section-heading-partners-activity h3 {
        font-size: clamp(2.4rem, 2.8vw, 2.8rem);
    }
    
    .service-box-heading-partners-activity {
        padding: 40px 50px;
    }
    
    .service-box-icon2-activity {
        height: clamp(400px, 30vw, 500px);
    }
    
    .services-box-heading-text-partners-activity p {
        font-size: clamp(1.15rem, 1.25vw, 1.3rem);
        line-height: 2.1;
        padding: 35px 40px;
    }
    
    .activity-back-button,
    .activity-nav-prev,
    .activity-nav-next {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

/* Large Desktop Devices (1440px and above) */
@media screen and (min-width: 1440px) {
    .section-heading-partners-activity h3 {
        font-size: 3rem;
        max-width: 1000px;
    }
    
    .service-container-focus-activity {
        max-width: 1300px;
    }
    
    .service-box-heading-partners-activity {
        padding: 50px 60px;
    }
    
    .service-box-icon2-activity {
        height: 550px;
    }
    
    .services-box-heading-text-partners-activity p {
        font-size: 1.3rem;
        line-height: 2.2;
        padding: 40px 45px;
    }
    
    .services-box-heading-text-partners-activity span a {
        font-size: 1.4rem;
        padding: 12px 30px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .section-container-activity {
        margin-top: 100px !important;
        padding: 40px 15px;
        min-height: auto;
    }
    
    .section-heading-partners-activity {
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .section-heading-partners-activity h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
        padding-bottom: 12px;
        max-width: 100%;
    }
    
    .section-heading-partners-activity h3::after {
        width: 80px;
        bottom: -1px;
    }
    
    .service-container-focus-activity {
        gap: 30px;
        padding: 0 5px;
    }
    
    .service-box-heading-partners-activity {
        padding: 20px;
    }
    
    .service-box-icon2-activity {
        height: 250px;
        margin-bottom: 25px;
        border-width: 2px;
    }
    
    .services-box-heading-text-partners-activity {
        gap: 20px;
    }
    
    .services-box-heading-text-partners-activity span {
        padding-bottom: 12px;
    }
    
    .services-box-heading-text-partners-activity span a {
        font-size: 1rem;
        padding: 8px 15px;
    }
    
    .services-box-heading-text-partners-activity p {
        font-size: 0.95rem;
        line-height: 1.8;
        padding: 20px;
        text-align: left;
    }
    
    .services-box-heading-text-partners-activity p::before {
        top: -12px;
        left: -12px;
        font-size: 1.5rem;
        padding: 8px;
    }
    
    .activity-back-button,
    .activity-nav-prev,
    .activity-nav-next {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 20px;
    }
    
    .activity-navigation {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .activity-nav-prev,
    .activity-nav-next {
        justify-content: center;
    }
}

/* Extra Small Devices (max-width: 360px) */
@media screen and (max-width: 360px) {
    .section-container-activity {
        margin-top: 90px !important;
        padding: 30px 12px;
    }
    
    .section-heading-partners-activity h3 {
        font-size: 1.3rem;
    }
    
    .service-box-heading-partners-activity {
        padding: 15px;
    }
    
    .service-box-icon2-activity {
        height: 200px;
        margin-bottom: 20px;
    }
    
    .services-box-heading-text-partners-activity {
        gap: 15px;
    }
    
    .services-box-heading-text-partners-activity span a {
        font-size: 0.9rem;
        padding: 7px 12px;
    }
    
    .services-box-heading-text-partners-activity p {
        font-size: 0.9rem;
        line-height: 1.7;
        padding: 15px;
    }
}

/* Landscape Mode for Mobile */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .section-container-activity {
        margin-top: 80px !important;
        padding: 30px 20px;
    }
    
    .service-box-icon2-activity {
        height: 250px;
    }
    
    .services-box-heading-text-partners-activity p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

/* ====== 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;
    }
}


 