* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

/* Topbar */
.topbar {
  background-color: #E8531A;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  position: sticky;
  z-index: 999;
}

.topbar .f {
  margin: 0;
  font-weight: bold;
}

.social-icons a {
  margin-left: 10px;
  color: #141414;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}
.language-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 20px;
}

.language-toggle select {
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  background-color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .language-toggle {
    margin-top: 10px;
  }
}


/* Off-screen menu */
.off-screen-menu {
    background-color: #7B3F00;
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position:fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    text-align: center;
    font-size: 3rem;
    transition: .3s ease;
    z-index: 888;
}
.off-screen-menu.active {
    right: 0;
}

.off-screen-menu ul {
  list-style: none;
  text-align: center;
}

.off-screen-menu ul li {
  margin: 20px 0;
}

.off-screen-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 24px;
}

/* Navbar with logo */

.main-nav {
  background: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* MOBILE DRAWER MENU */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: linear-gradient(180deg, #7B3F00, #5a2d00);
  color: white;
  z-index: 2000;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  right: 0;
}

/* Header */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.drawer-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

/* Nav links */
.drawer-nav {
  padding: 20px;
  overflow-y: auto;
}

.drawer-nav a {
  display: block;
  padding: 14px 0;
  color: white;
  text-decoration: none;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  
}


.drawer-group {
  margin-top: 10px;
}

/* Toggle buttons */
.drawer-toggle {
  width: 100%;
  background: none;
  border: none;
  color: white;
  font-size: 1.05rem;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.15);

}

.drawer-toggle span {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}


.drawer-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 5px;
}

.drawer-submenu a {
  font-size: 0.95rem;
  opacity: 0.95;
  padding: 10px 0;
}

/* Active submenu */
.drawer-group.active .drawer-submenu {
  display: block;
}

.drawer-group.active .drawer-toggle span {
  transform: rotate(45deg);
}

/* Backdrop */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* Lock body */
body.drawer-open {
  overflow: hidden;
}

/* Desktop safety */
@media (min-width: 768px) {
  .mobile-drawer,
  .drawer-backdrop {
    display: none;
  }
}



.logo {
  height: 120px;
  width: auto;
  mix-blend-mode: multiply;
}

.menulogo{
  height: 70px;
  width: auto;
  mix-blend-mode: multiply;
  margin-top: 30px;
}



.has-submenu {
  position: relative;
  
}
.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  list-style: none;
  padding: 8px 0;
  min-width: 200px;
  z-index: 999;

  
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
}
.has-submenu .submenu::-webkit-scrollbar {
  width: 6px;
}

.has-submenu .submenu::-webkit-scrollbar-thumb {
  background: #2E8B2E;
  border-radius: 10px;
}

.has-submenu .submenu::-webkit-scrollbar-track {
  background: transparent;
}


.has-submenu:hover .submenu {
  display: block;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

.submenu li a:hover {
  background: #f0f0f0;
}


.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav > * {
  display: inline-block; 
}

.has-submenu {
  position: relative;
}

.has-submenu > a {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.has-submenu > a:hover {
  color: #2E8B2E;

}


.has-submenu > a::after {
  content: " ▾";
  font-size: 0.8rem;
}







/* Submenu default hidden */
.off-screen-menu .submenu {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  margin-top: 5px;
}

/* Show submenu when active */
.off-screen-menu .submenu.active {
  display: flex;
}


.off-screen-menu .submenu li a {
  font-size: 0.9rem;
  padding: 8px 0;
  display: block;
}


.off-screen-menu .has-submenu > a::after {
  content: "▾";
  margin-left: 5px;
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.off-screen-menu .has-submenu.open > a::after {
  transform: rotate(180deg);
}







/* Hamburger */
.ham-menu {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.ham-menu span {
  height: 4px;
  background: #2E8B2E;
  border-radius: 2px;
  transition: 0.3s;
}

/* Desktop nav*/
.desktop-nav {
  display: none;
  gap: 20px;
}

.desktop-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #2E8B2E;
}

/* MEDIA QUERIES */
@media (min-width: 768px) {
  .ham-menu {
    display: none; /* Hide hamburger */
  }

  .desktop-nav {
    display: flex; /* Show full nav */
    align-items: center;
  }
}

.ham-menu span:nth-child(1) {
    top: 25%;
}
.ham-menu span:nth-child(3) {
    top: 75%;
}
.ham-menu.active span {
    background-color: #2E8B2E;
    cursor: pointer;
    
   
}
.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.ham-menu.active span:nth-child(2) {
    opacity: 0;
}
.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}








/*  Hero*/
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slideshow 21s infinite ease-in-out;
  z-index: -1;
  filter: brightness(0.5); 
}

@keyframes slideshow {
  0%    { background-image: url('/images/ssb/IMG-20260213-WA0048.jpg'); }
  14%   { background-image: url('/images/IMG-20250806-WA0007.jpg'); }
  28%   { background-image: url('/images/IMG-20250801-WA0017.jpg'); }
  42%   { background-image: url('/images/IMG-20250801-WA0025.jpg'); }
  56%   { background-image: url('/images/IMG-20250801-WA0024.jpg'); }
  70%   { background-image: url('/images/IMG-20250807-WA0007.jpg'); }
  84%   { background-image: url('/images/ssb/IMG-20260213-WA0075.jpg'); }
  100%  { background-image: url('/images/IMG-20250807-WA0011.jpg'); }
}

.hero h1, .hero p, .cta-buttons {
  z-index: 1;
  position: relative;
}


.hero h1 {
  font-size: 2.5rem;
  
}

.hero p {
  margin: 15px 0 25px;
   position: relative;
   
}
.hero-content {
  transition: opacity 0.4s ease;
}



/* CTA Buttons*/
.cta-buttons {
  margin-top: 20px;
}

.btn {
  background-color: #2E8B2E;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  display: inline-block;
  
}

.btn-alt {
  background-color: #3D3D9E;
  
}

.btn-outline {
  background: transparent;
  color: #2E8B2E;
  border: 2px solid #2E8B2E;
  
}

.btn:hover {
  opacity: 0.85;
}

#get-involved .cta-buttons {
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

#get-involved .cta-buttons.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}



/* Main Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Sections */
section {
  background: white;
  padding: 40px 20px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2E8B2E;
}

h3 {
  margin-top: 20px;
  color: #E8531A;
}

.program {
  margin-bottom: 20px;
   transition: background-color 0.3s, font-size 0.2s  ease, transform 0.2s ease ;
}
.program :hover{
   

    transform: scale(1.02);
}

/* Values List */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin-top: 10px;
}

.values-list li {
  background: #e0f7fa;
  padding: 10px 15px;
  border-radius: 4px;
  flex: 1 1 calc(33% - 20px);
}



/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .values-list {
    flex-direction: column;
  }

  .ham-menu {
    display: flex;
  }
}












/* FOOTER STYLES  */

footer {
  background: linear-gradient(135deg, #7B3F00, #E8531A);
  color: #fff;
  margin-top: 80px;
}

/* FOOTER CONTENT */
.footer-content {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}


.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #eaffea;
  position: relative;
}

.footer-section h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #2E8B2E;
  display: block;
  margin-top: 6px;
  border-radius: 2px;
}


.footer-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #f1f5f9;
  opacity: 0.95;
}


.footer-section a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-section a:hover {
  color: #2E8B2E;
  transform: translateX(4px);
}


.footer-section.links ul {
  list-style: none;
  padding: 0;
}

.footer-section.links li {
  margin-bottom: 10px;
}


.footer-section.contact p {
  margin-bottom: 10px;
}


footer .social-icons {
  margin-top: 12px;
}

footer .social-icons a {
  margin-right: 12px;
  font-size: 1.2rem;
  color: #ffffff;
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease;
}

footer .social-icons a:hover {
  transform: translateY(-4px) scale(1.1);
  color: #2E8B2E;
}

/* CALL TO ACTION */
.footer-cta {
  background: rgba(0, 0, 0, 0.15);
  padding: 25px 20px;
  text-align: center;
  margin-top: 40px;
}

.footer-cta h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-cta a {
  display: inline-block;
  background: #2E8B2E;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-cta a:hover {
  background: #d2ab75;
  transform: translateY(-2px);
}


.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 14px 10px;
  font-size: 0.85rem;
  color: #e5e7eb;
}

/* desktop layout */
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 70px 60px 50px;
  }

  .footer-section h3 {
    font-size: 1.25rem;
  }
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}





/* PROGRAM PAGE STYLES*/

/* Hero Section */
.program-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  z-index: 0;
}

.program-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.program-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.program-hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/*Program Section Layout */
.program-section {
  padding: 60px 5%;
  background: #fff;
}

.program-section.alt-bg {
  background: #f7f9fa;
}

.program-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.program-grid.reverse {
  flex-direction: row-reverse;
}

.program-text {
  flex: 1 1 50%;
}

.program-text h2 {
  color: #7B3F00;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.program-text p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
}

.program-image {
  flex: 1 1 45%;
  text-align: center;
}

.program-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}



/* Activity Lists */
.activity-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.activity-list li {
  margin-bottom: 10px;
  font-size: 1rem;
  background: #e0f7fa;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.activity-list li:hover {
  background: #c8f6f2;
  transform: translateX(3px);
}

/* Impact Strip */
.impact-strip {
  background: linear-gradient(120deg, #2E8B2E, #7B3F00);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.impact-strip h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.impact-strip p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* CTA Section */
.program-cta {
  background: #f0f0f0;
  text-align: center;
  padding: 60px 20px;
}

.program-cta h2 {
  color: #7B3F00;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.program-cta .btn {
  background-color: #2E8B2E;
  color: white;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.program-cta .btn:hover {
  background-color: #236b23;
  transform: translateY(-2px);
}

/* Animation Effects */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .program-grid {
    flex-direction: column;
  }

  .program-image, .program-text {
    flex: 1 1 100%;
  }

  .program-hero {
    height: 50vh;
  }

  .program-hero h1 {
    font-size: 2rem;
  }

  .program-text p {
    text-align: left;
  }
}






/* ABOUT PAGES*/

.about-hero {
  padding: 120px 20px;
  text-align: center;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  position: relative;
}

/* Hero gradient variations */
.innovation-hero {
  background: linear-gradient(120deg, #2E8B2E, #5ab85a);
}

.story-hero {
  background: linear-gradient(120deg, #3D3D9E, #6b6bbf);
}

.model-hero {
  background: linear-gradient(120deg, #7B3F00, #b05a00);
}

.about-hero-content {
  max-width: 700px;
}

.about-hero h1 {
  font-size: 2.6rem;
  font-weight: bold;
}

.about-hero p {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Section Block */
.about-section {
  background: white;
  padding: 40px 25px;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
}

.about-section h2 {
  color: #2E8B2E;
  margin-bottom: 15px;
}


.fade-in-up {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* INNOVATION PAGE */

/* Feature grid */
.feature-grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-grid.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  min-width: 280px;
}

/* Image box */
.feature-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bike-image-box {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.bike-image-box img {
  width: 100%;
  height: auto;
  display: block;
}


.video-wrapper {
  margin: 30px auto;
  max-width: 720px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
}


/*   STORY PAGE*/

.value-list {
  list-style: none;
  margin-top: 15px;
  padding-left: 0;
}

.value-list li {
  background: #e8f5e9;
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}


/*MODEL PAGE*/

.pillar-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.pillar {
  background: #f1f8ff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
}

.pillar:hover {
  transform: translateY(-4px);
}

.pillar h3 {
  color: #3D3D9E;
  margin-bottom: 10px;
}

/* CTA */
.program-cta {
  padding: 50px 20px;
  text-align: center;
}

.program-cta h2 {
  margin-bottom: 15px;
}


.about-hero {
  height: 55vh;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  color: white;
  overflow: hidden;
}

.about-hero::before {
 
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  animation: heroFade 1s ease forwards;
  background-color: #3c4f539d;
  padding: 20px;
  border-radius: 10px;
}

.about-hero-contentn {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  animation: heroFade 1s ease forwards;
  background-color: #85adb59d;
  padding: 20px;
  border-radius: 10px;
}


@keyframes heroFade {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero Variations */
.innovation-hero {
  background-image: url('/images/bike-hero.jpg');
}

.story-hero {
  background-image: url('/images/story-bg.jpg');
}

.model-hero {
  background-image: url('/images/model-bg.jpg');
}


.innovation-hero:not([style*="background-image"]) {
  background: linear-gradient(120deg, #2E8B2E, #5ab85a);
}



.about-section {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  padding: 45px 28px;
  border-radius: 14px;
  margin: 40px auto;
  width: min(95%, 1100px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform .25s ease;
}

.about-section:hover {
  transform: translateY(-3px);
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  align-items: center;
  margin-top: 20px;
}

.feature-text {
  animation: fadeUpSoft .7s ease;
}

@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bike-image-box {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform .4s ease;
}

.bike-image-box img {
  width: 100%;
  display: block;
}

.bike-image-box:hover {
  transform: scale(1.04);
}

.video-wrapper {
  position: relative;
  max-width: 780px;
  margin: 40px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}

.video-wrapper:hover {
  transform: scale(1.015);
  box-shadow: 0 14px 40px rgba(0,0,0,0.32);
}

.video-wrapper iframe {
  width: 100%;
  height: 430px;
  border: none;
}


.value-list li {
  background: linear-gradient(135deg, #e8f5e9 0%, #d7f4db 100%);
  border-left: 5px solid #2E8B2E;
  transition: background .3s ease, transform .2s ease;
}

.value-list li:hover {
  background: #c8f2d0;
  transform: translateX(4px);
}


.pillar {
  background: white;
  border-left: 6px solid #3D3D9E;
  padding: 25px;
  border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}


.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}



/* PARTNER PAGE */
.partner-hero {
  height: 55vh;
  background-image: url('/images/ud.jpg');
  background-repeat: no-repeat;        
  background-size: cover;              
  background-position: center;        
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}


.partner-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.partner-hero-content p{
  font-weight: bolder;
}

.partner-section {
  margin-top: 40px;
}

.partner-benefits-grid,
.partner-types-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.benefit-card,
.partner-type-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}

.benefit-card:hover,
.partner-type-card:hover {
  transform: translateY(-4px);
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.impact-stats div {
  background: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  text-align: center;
}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}


.impact-stats div {
  background: rgba(255, 255, 255, 0.2); 
  color: white;                         
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

.impact-stats div strong {
  color: #ffffff;
  font-size: 1.4rem;
}

/* HERO */
.programs-hero {
  background: linear-gradient(135deg, #2E8B2E 0%, #7B3F00 100%);
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.programs-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.programs-hero-content p {
  max-width: 700px;
  margin: auto;
  font-size: 1.2rem;
  opacity: 0.9;
}

/* GRID */
.programs-grid-section {
  padding: 60px 20px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.program-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.program-icon {
  font-size: 35px;
  margin-bottom: 12px;
  color: #7B3F00;
}

.program-card h3 {
  margin: 12px 0;
  font-size: 1.3rem;
}

.program-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  min-height: 60px;
}


.btn.small {
  padding: 8px 18px;
  font-size: 0.9rem;
  margin-top: 12px;
}



.fade-in { animation: fadeIn 0.35s ease forwards; }
.fade-out { animation: fadeOut 0.3s ease forwards; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px);}
  to { opacity: 1; transform: translateY(0);}
}

@keyframes fadeOut {
  from { opacity: 1;}
  to { opacity: 0;}
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f9fa;
}

/* HERO */
.events-hero {
  text-align: center;
  padding: 80px 20px;
  background: #7B3F00;
  color: white;
}

/* TOGGLE */
.events-toggle {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
}

.toggle-btn {
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  background: #ddd;
  font-weight: 600;
  border-radius: 6px;
}

.toggle-btn.active {
  background: #7B3F00;
  color: white;
}

/* EVENTS GRID */
.events-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px 80px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.hidden {
  display: none;
}

/* EVENT CARD */
.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #ccc;
}

.event-card h3 {
  padding: 15px 15px 0;
}

.event-card p {
  padding: 0 15px;
  color: #444;
}

.event-date {
  display: block;
  padding: 10px 15px 15px;
  font-weight: bold;
  color: #7B3F00;
}


.hero-content p {
  font-weight: bolder;
  
}

.n{
  color: #3D3D9E;
  font-size: larger;
}

.m{
  color: #E8531A;
}


.governance-bg {
  background-image: url('/images/governance.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}