/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #00582b; /* AUYC green */
}

/* Buttons */
.btn {
  background: #e3bb0d;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background: #ddc563;
}

/* Section styles */
section {
  padding: 50px 20px;
}

/* ================= HEADER BASE ================= */
/* ================= HEADER BASE ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #00582b;
  color: #fff;
  z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

header.scrolled {
  background: rgba(0, 88, 43, 0.8); /* semi-transparent AUYC green */
  backdrop-filter: blur(6px);
}

/* Logo */
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* ================= DESKTOP NAV ================= */
.desktop-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.desktop-nav .nav-links li a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s;
}

/* Hover underline */
.desktop-nav .nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #e3bb0d;
  transition: width 0.3s;
}

.desktop-nav .nav-links li a:hover::after {
  width: 100%;
}

.desktop-nav .nav-links li a:hover {
  color: #e3bb0d;
}

/* Active page effect */
.desktop-nav .nav-links li a.active {
  color: #e3bb0d;
}

.desktop-nav .nav-links li a.active::after {
  width: 100%;
}

/* Verification button */
.btn-verification {
  background: #e3bb0d;
  color: #00582b !important;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.btn-verification:hover {
  background: #ddc563;
  color: #fff !important;
}

/* ================= MOBILE NAV ================= */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

#mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100%;
  background: rgba(0, 88, 43, 0.95);
  backdrop-filter: blur(8px);
  padding: 40px 20px;
  transition: left 0.3s ease;
  z-index: 2000;
}

#mobile-nav.open {
  left: 0;
}

#mobile-nav .close-btn {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  margin-bottom: 30px;
  display: block;
  text-align: right;
}

#mobile-nav .nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
}

#mobile-nav .nav-links li a {
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

#mobile-nav .nav-links li a:hover {
  color: #e3bb0d;
}

/* Active state in mobile */
#mobile-nav .nav-links li a.active {
  color: #e3bb0d;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  /* Force solid green header for mobile */
  header {
    background: #00582b !important;
  }
  header.scrolled {
    background: #00582b !important;
    backdrop-filter: none;
  }
}


@media (max-width: 768px) {
    
    
    .header {
  margin-top:-20px;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  margin-left: -20px;
}

}
/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding-top:50px;
  margin-top: 100px;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 20px;
  
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Brick image effect */
.slide.brick-effect {
  animation: brickSlide 1.5s ease forwards;
}

@keyframes brickSlide {
  0% { clip-path: inset(0 100% 0 0); }
  50% { clip-path: inset(0 50% 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

/* Black overlay */
/*.overlay {*/
/*  position: absolute;*/
/*  top: 0; left: 0;*/
/*  width: 100%; height: 100%;*/
/*  background: rgba(0,0,0,0.45);*/
/*  z-index: 0;*/
/*}*/

/* Text Content */
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
  width: 100vw; /* full viewport width */
  left: 0;
  opacity: 0;
  transition: all 0.8s ease;
  background: rgba(0, 0, 0, 0.3); /* transparent black */
  padding: 20px 15px;
  border-radius: 0;
  margin: 0; /* remove any default spacing */
}


.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff; /* Force white heading */
}

.hero-content p {
  font-size: 1.4rem;   /* was 1.2rem */
  line-height: 1.2;    /* better readability */
  margin-bottom: 25px; /* a bit more spacing */
}


.hero-content .btn {
  display: inline-block;
  background: #e3bb0d;
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-content .btn:hover {
  background: #ddc563;
  color: #fff;
}

/* Text Animation Directions */
.from-left { transform: translateX(-50px); }
.from-right { transform: translateX(50px); }
.from-bottom { transform: translateY(50px); }
.from-top { transform: translateY(-50px); }

.hero-content.animate {
  opacity: 1;
  transform: translate(0,0);
}

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  height: 12px; width: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #e3bb0d;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 1.6rem; }
  .hero-content p { font-size: 0.95rem; }
  .hero-content .btn { padding: 8px 16px; font-size: 0.9rem; }
}


/* Intro section */
.intro {
  background: #ddc563; /* Soft Gold background */
  color: #333;
  text-align: center;
  padding: 60px 20px;
}

.intro h2 {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #333;
}

.intro p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.8;
  color: #333;
}

/* Continue Reading link */
.continue-reading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #00582b;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.continue-reading i {
  transition: transform 0.3s ease;
}

.continue-reading:hover {
  border-bottom: 2px solid #00582b;
}

.continue-reading:hover i {
  transform: translateX(5px);
}

/* Executive section */
.executive-section {
  position: relative; /* needed for parallax background */
  background: #f9f9f9;
  padding: 60px 0;
  overflow: hidden; /* ensures parallax stays within section */
}

.exec-bg-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  opacity: 0.15; /* faint effect */
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
  background-attachment: fixed; /* parallax effect */
}

/* Ensure content scrolls above parallax */
.executive-section .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Rest of your previous CSS unchanged */
.exec-header {
  text-align: center;
  margin-bottom: 40px;
}

.exec-header h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.exec-header p {
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.exec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.exec-card {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.exec-card:hover {
  transform: translateY(-5px);
}

.exec-card img {
  width: 100%;
  height: auto;
}

.exec-info {
  padding: 20px;
}

.exec-info h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.exec-info .role {
  color: #ddc563;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.exec-info .email {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
}

.read-more {
  display: inline-block;
  color: #28a745;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 12px;
}

.read-more:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 8px;
}

.social-icons a {
  margin: 0 5px;
  color: #555;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0a58ca;
}

/* Media Queries unchanged */
@media (max-width: 992px) {
  .exec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .exec-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
    justify-content: center;
  }

  .exec-card {
    font-size: 0.7rem;
    max-width: 140px;
    margin: 0 auto;
  }

  .exec-card img {
    height: 90px;
    object-fit: cover;
  }

  .exec-info {
    padding: 6px;
  }

  .exec-info h3 {
    font-size: 0.75rem;
    margin-top: -10px;
  }

  .exec-info .role {
    font-size: 0.65rem;
  }

  .exec-info .email {
    font-size: 0.5rem;
  }

  .read-more {
    font-size: 0.65rem;
    margin-bottom: 5px;
  }

  .social-icons a {
    font-size: 0.65rem;
    margin: 0 2px;
  }
  
  .exec-info h3 {
 margin-top: 10px;
}

}


/* Parallax Section */
.verification-section {
  position: relative;
  background: url('../img/verification background.jpg') center/cover fixed no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.verification-section .overlay {
  background: rgba(0,0,0,0.8);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.verify-content {
  max-width: 600px;
  width: 100%;
}

.verify-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.verify-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Button */
.verify-btn {
  display: inline-block;
  background: #28a745;
  color: #fff;
  text-decoration: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  transition: 0.3s;
}

.verify-btn:hover {
  background: #218838;
}


/*Blog section*/

/* Blog List Section */
.blog-list-section {
  background: #00582b;   /* ✅ updated section bg */
  padding: 60px 0;
  color: #fff;           /* all text white by default */
}

.blog-list-section .container {
  max-width: 1100px;  
  margin: 0 auto;
  padding: 0 20px;     
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-header h2 {
  font-size: 2rem;
  color: #fff;  /* heading white */
  margin-bottom: 8px;
}

.blog-subtitle {
  font-size: 1rem;
  color: #fff;  /* subtitle white */
  margin-bottom: 15px;
}

.blog-header .underline {
  width: 60px;
  height: 3px;
  background: #fff;  /* underline white */
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.blog-item {
  background: #fff;     /* cards stay white */
  padding: 20px;
  text-align: left;
  border-radius: 0;     
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  color: #000;          /* text inside cards black for readability */
}

.blog-date {
  font-size: 0.85rem;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.read-more {
  font-size: 0.95rem;
  color: #00582b;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.visit-blog-link {
  font-weight: bold; 
  font-size: 1rem; 
  color: #fff;       /* link white */
  text-decoration: none;
}

.visit-blog-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* AYUC News Section */
.ayuc-news-section {
  width: 100%;
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.ayuc-news-section .blog-header h2 {
  font-size: 2.5rem;  /* ✅ bigger title */
  margin-bottom: 10px;
  color: #222;
}

.ayuc-news-section .blog-header .underline {
  width: 60px;
  height: 3px;
  background: #00582b;
  margin: 0 auto 40px;
}

.ayuc-news-section .blog-subtitle {
  font-size: 1rem;
  color: #555;   /* subtle dark gray */
  margin-top: 8px;
  margin-bottom: 15px;
}

/* Swiper Container */
.ayuc-news-section .news-swiper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.ayuc-news-section .blog-card {
  position: relative;
  overflow: hidden;
}

.ayuc-news-section .blog-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ayuc-news-section .blog-card:nth-child(2n) {
  margin-left: 5px;
}
.ayuc-news-section .blog-card:nth-child(2n+1) {
  margin-right: 5px;
}

.ayuc-news-section .blog-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ayuc-news-section .blog-card:hover img {
  transform: scale(1.05);
}

.ayuc-news-section .news-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #28a745;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

.ayuc-news-section .blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0,0,0,0.1));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ayuc-news-section .blog-overlay h3 {
  margin: 0 0 5px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.ayuc-news-section .blog-overlay span {
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.9;
}

.ayuc-news-section .swiper-button-next,
.ayuc-news-section .swiper-button-prev {
  background: none !important;
  color: #fff !important;
  border-radius: 0;
  width: 10px;
  height: 10px;
}

.ayuc-news-section .swiper-button-next::after,
.ayuc-news-section .swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .ayuc-news-section .blog-card img {
    height: 280px;
  }
  .ayuc-news-section .blog-card {
    margin: 0 !important;
  }
}


/* Leaders Section */
.leaders {
  position: relative;
  background: url("../img/leader-background.jpg") no-repeat center center/cover;
  padding: 80px 20px;
  color: #333;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.leaders::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 0;
}

.leaders-header,
.leaders-container,
.see-all {
  position: relative;
  z-index: 2;
}

.leaders-header h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222; /* dark */
}

.leaders-header .underline {
  width: 60px;
  height: 3px;
  background: #222;
  margin: 0 auto 40px;
}

.leaders-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: end;
}

.leader-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  max-width: 160px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.leader-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.leader-card:hover {
  transform: scale(1.08);
}

.leader-card img {
  width: 100%;
  height: auto;
  display: block;
}

.leader-info {
  background: #333;
  color: #fff;
  padding: 12px;
}

.leader-info h3 {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.leader-info p {
  margin: 0;
  font-size: 0.9rem;
}

.leader-card.president {
  transform: scale(1.15);
  z-index: 2;
}

.leader-card.president:hover {
  transform: scale(1.18);
}

/* See All link */
.see-all {
  margin-top: 40px;
}

.see-all a {
  color: #222;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.see-all a:hover {
  color: #555;
}

/* Desktop only */
.desktop-view { display: grid; }
.mobile-view { display: none; }

/* Mobile - 2 per row */
@media (max-width: 768px) {
  .desktop-view { display: none; }
  .mobile-view {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
  .leader-card {
    max-width: 140px;
  }
  .leader-card.president {
    grid-column: span 2; /* full row */
    width: 100%;
    max-width: none;
    margin: 0 auto;
    transform: scale(1.02); /* smaller so not oversized */
  }
}

/*About section*/

.about-us {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}
.about-us h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}
.about-us p {
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 1rem;
  color: #333;
}
.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background:  #00582b;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}
.read-more-btn:hover {
  background:  #00582b;
}

/* Vision & Mission Cards */
.vision-mission-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.vision-mission-cards .card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  flex: 0 0 320px; /* fixed card width */
  max-width: 90%;
  text-align: center;
}
.vision-mission-cards .card:hover {
  transform: translateY(-5px);
}
.vision-mission-cards .icon {
  font-size: 2rem;
  color: #e3bb0d;
  margin-bottom: 12px;
}
.vision-mission-cards h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #333;
}
.vision-mission-cards p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 12px;
}
.read-more-link {
  font-size: 0.9rem;
  color:  #00582b;
  text-decoration: none;
  font-weight: 600;
}
.read-more-link:hover {
  color: #304864;
}


/*.project-4es {*/
/*  padding: 70px 20px;*/
/*  background: #e3bb0d;*/
/*  text-align: center;*/
/*}*/

/*.project-4es .section-header h2 {*/
/*  font-size: 2rem;*/
/*  margin-bottom: 10px;*/
/*  color: #333;*/
/*}*/

/*.project-4es .section-header p {*/
/*  max-width: 700px;*/
/*  margin: 0 auto 40px;*/
/*  font-size: 1rem;*/
/*  color: #333;*/
/*}*/

/*.project-grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));*/
/*  gap: 30px;*/
/*}*/

/*.project-card {*/
/*  position: relative;*/
/*  height: 350px;*/
/*  background: #fff;*/
/*  border-radius: 5px;*/
/*  overflow: hidden;*/
/*  display: flex;*/
/*  align-items: flex-end;*/
/*  box-shadow: 0 4px 10px rgba(0,0,0,0.1);*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*}*/

/*.project-card .overlay {*/
/*  background: rgba(255, 255, 255, 0.8);*/
/*  color: #333;*/
/*  padding: 20px;*/
/*  width: 100%;*/
/*  text-align: left;*/
/*}*/

/*.project-card h3 {*/
/*  font-size: 2.5rem;*/
/*  margin-bottom: 10px;*/
/*  margin-top: 20px;*/
/*}*/

/*.project-card ul {*/
/*  margin: 0;*/
/*  padding-left: 18px;*/
/*  font-size: 1rem;*/
/*}*/

/*.project-card ul li {*/
/*  margin-bottom: 6px;*/
/*  font-size: 16pt;*/
/*  text-decoration: none;*/
/*}*/

/*.project-card .learn-more-btn {*/
/*  display: inline-block;*/
/*  margin-top: 10px;*/
/*  padding: 8px 15px;*/
/*  background: #333;*/
/*  color: #e3bb0d;*/
/*  text-decoration: none;*/
/*  font-weight: bold;*/
/*  border-radius: 3px;*/
/*  transition: 0.3s;*/
/*}*/

/*.project-card .learn-more-btn:hover {*/
/*  background: #ed945b;*/
/*  color: #333;*/
/*}*/

/* Mobile */
/*@media (max-width: 768px) {*/
/*  .project-grid {*/
/*    grid-template-columns: 1fr;*/
/*  }*/

/*  .project-card h3 {*/
/*    font-size: 1.5rem;*/
/*    margin-bottom: 10px;*/
/*    margin-top: 0px;*/
/*  }*/
/*}*/

/* Desktop carousel */
/*@media (min-width: 769px) {*/
/*  .project-grid.carousel {*/
/*    display: flex;*/
/*    gap: 30px;*/
/*    overflow: hidden;*/
/*  }*/

/*  .project-card {*/
/*    min-width: 600px;*/
/*    flex-shrink: 0;*/
/*  }*/
/*}*/

/*FOunder section*/

.founder-section {
  padding: 70px 20px;
  background: #f1f1f1; /* very light shade of #333 */
  height:none;
}

.founder-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto; /* center content */
}

.founder-text {
  flex: 1 1 500px;
  color: #333;
}

.founder-label {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 500;
  text-transform: uppercase;
}

.founder-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.founder-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.founder-image {
  flex: 1 1 400px;
}

.founder-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
  max-height: 400px;
  argin-top:0px;
}

/* Responsive */
@media (max-width: 768px) {
  .founder-grid {
    flex-direction: column;
    margin-left: 0;
    max-width: 90%; /* give some padding from screen edges */
  }
  .founder-text {
    margin-bottom: 20px; /* add space below text before image */
  }
  .founder-image img {
    max-height: none;
    margin-top:-40px;
  }
  .founder-section {
  padding: 70px 20px;
  background: #f3f3f3; /* very light shade of #333 */
  height: 800px;
}

}

.read-more {
  display: inline-block;
  margin-top: 15px;
  font-size: 0.95rem;
  color: #ed945b;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #304864;
  border-bottom: 1px solid #304864;
}

/*ES PROJECT*/

.project-hero {
      background: url('./img/header-image-4.jpg') center/cover no-repeat;
      position: relative;
      padding: 100px 20px;
      text-align: center;
      color: #fff;
    }
    .project-hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
    }
    .project-hero .hero-inner {
      position: relative;
      z-index: 2;
    }
    .breadcrumb {
      background: transparent;
      justify-content: center;
    }
    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    .project-card {
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .project-card:hover {
      transform: translateY(-5px);
    }
    .project-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .project-card .content {
      padding: 20px;
    }
    .project-card h3 {
      margin-bottom: 15px;
      font-size: 1.3rem;
      font-weight: 600;
    }
    .project-card ul {
      padding-left: 20px;
      margin-bottom: 0;
    }
 .project-hero {
      background: url('./img/header-image-4.jpg') center/cover no-repeat;
      position: relative;
      padding: 100px 20px;
      text-align: center;
      color: #fff;
    }
    .project-hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
    }
    .project-hero .hero-inner {
      position: relative;
      z-index: 2;
    }
    .breadcrumb {
      background: transparent;
      justify-content: center;
    }
    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    .project-card {
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }
    .project-card:hover {
      transform: translateY(-5px);
    }
    .project-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .project-card .content {
      padding: 20px;
    }
    .project-card h3 {
      margin-bottom: 15px;
      font-size: 1.3rem;
      font-weight: 600;
    }
    .project-card ul {
      padding-left: 20px;
      margin-bottom: 0;
    }
/* Footer Styles */
.site-footer {
  background-color: #00582b;
  color: #fff;
  padding: 60px 20px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo-section {
  flex: 1 1 250px;
}

.footer-logo {
  width: 300px;
  margin-bottom: 15px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social-icons a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social-icons a:hover {
  color: #304864;
}

.footer-links-section {
  flex: 1 1 180px;
}

.footer-links-section h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.footer-links-section ul {
  list-style: none;
  padding: 0;
}

.footer-links-section ul li {
  margin-bottom: 10px;
}

.footer-links-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links-section ul li a:hover {
  color: #304864;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo-section,
  .footer-links-section {
    flex: 1 1 100%;
  }
  .footer-social-icons {
    margin-bottom: 20px;
  }
}



/*Blog styles*/


/* Blog Hero */
.blog-hero {
  background: url('./img/blog-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 350px 20px;
  /*margin-top:px;*/
}

.blog-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.blog-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* Blog Posts Grid */
.blog-posts .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-content {
  padding: 20px;
}

.blog-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.blog-card .read-more {
  color: #f5b300;
  font-weight: 600;
  text-decoration: none;
}

/* Blog Posts Grid */
.blog-posts .container {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* default: mobile 1 column */
  gap: 30px;
  padding: 60px 20px;
}

/* Tablet: 2 columns */
@media (min-width: 768px) {
  .blog-posts .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
 .blog-hero {
  padding: 100px 20px;
  /*margin-top:px;*/
}
}

/* Medium desktop: 3 columns */
@media (min-width: 992px) {
  .blog-posts .container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large desktop: 4 columns */
@media (min-width: 1200px) {
  .blog-posts .container {
    grid-template-columns: repeat(4, 1fr);
  }
}


/*Membership Section*/
/* Full-width dark section */
.membership-cta-section {
  background: #333;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

/* Icon */
.membership-cta-section .membership-icon {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

/* Heading */
.membership-cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #fff;
}

/* Button */
.membership-btn {
  display: inline-block;
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.membership-btn:hover {
  background: #f2f2f2;
  color: #111;
}
