* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body { font-family: 'Poppins', sans-serif; }

ul{
  list-style: none;
}

/* NAVBAR */
.navbar {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 95%; max-width: 1350px;
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
  border-radius: 50px; padding: 0 30px; z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); height: 65px;
}
/* =========================================
   MOBILE NAVIGATION
========================================= */

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: #f5f5f5;
  color: #2d7a2d;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

  .navbar {
    width: 94%;
    height: 65px;
    padding: 0 20px;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-contact {
    display: none;
  }

  /* Mobile navigation panel */
  nav {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
  }

  .nav-links {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 15px;

    background: #ffffff;
    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition: all 0.3s ease;

    z-index: 999;
  }

  /* When menu is opened */
  .nav-links.mobile-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Main navigation links */
  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a {
    width: 100%;
    min-height: 48px;
    padding: 12px 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-radius: 10px;
  }

  .nav-links > li > a:hover {
    background: #f5faf5;
  }

  /* Active Products */
  .nav-links > li > a.active {
    padding: 12px 15px;
    background: #f0f8f0;
    border-radius: 10px;
  }

  .nav-links > li > a.active::after {
    display: none;
  }

  /* =========================================
     ABOUT DROPDOWN
  ========================================= */

  .simple-dropdown {
    position: static;

    width: 100%;

    display: none;

    opacity: 1;
    visibility: visible;
    transform: none;

    box-shadow: none;
    border-radius: 10px;

    padding: 5px 0 5px 10px;

    background: #f8faf8;
  }

  .dropdown:hover .simple-dropdown {
    display: none;
  }

  .dropdown.dropdown-open .simple-dropdown {
    display: block;
  }

  .simple-dropdown li a {
    padding: 11px 12px;
    font-size: 13px;
  }

  /* =========================================
     PRODUCTS MEGA MENU
  ========================================= */

  .mega-dropdown {
    position: static;

    width: 100%;

    display: none;

    opacity: 1;
    visibility: visible;
    transform: none;

    box-shadow: none;
    border-radius: 10px;

    padding: 15px;

    background: #f8faf8;
  }

  .dropdown.mega:hover .mega-dropdown {
    display: none;
  }

  .dropdown.mega.dropdown-open .mega-dropdown {
    display: block;
  }

  .mega-label {
    margin-bottom: 15px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mega-col {
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
  }

  .mega-col:last-child {
    border-bottom: none;
  }

  .mega-col h5 {
    margin-bottom: 8px;
  }

  .mega-col a {
    font-size: 13px;
    padding: 7px 0;
  }

  /* Arrow */
  .arrow {
    transition: transform 0.3s ease;
  }

  .dropdown.dropdown-open > a .arrow {
    transform: rotate(180deg);
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

  .navbar {
    top: 12px;
    width: 92%;
    height: 60px;
    padding: 0 15px;
    border-radius: 30px;
  }

  .logo img {
    height: 34px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  nav {
    top: 70px;
  }

  .nav-links {
    padding: 12px;
    border-radius: 16px;
  }

  .nav-links > li > a {
    font-size: 14px;
  }

  .mega-dropdown {
    padding: 12px;
  }

  .mega-col a {
    font-size: 12px;
  }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 400px) {

  .navbar {
    width: 94%;
  }

  .logo img {
    height: 30px;
  }

  .nav-links {
    max-height: 75vh;
    overflow-y: auto;
  }
}


.nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo img { height: 40px; }

.nav-links {
  display: flex; gap: 30px; align-items: center; list-style: none; height: 100%;
}
.nav-links > li > a {
  text-decoration: none; color: #444; font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 6px; height: 100%; position: relative;
  transition: 0.3s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: #2d7a2d; }

/* Active pill + underline */
.nav-links > li > a.active {
  background: #f0f8f0; padding: 8px 18px; border-radius: 50px;
}
.nav-links > li > a.active::after {
  content: ''; position: absolute; bottom: 8px; left: 18px;
  width: calc(100% - 36px); height: 2px; background: #2d7a2d;
}
.arrow { font-size: 10px; transition: 0.3s; }
.dropdown:hover .arrow i { transform: rotate(180deg); }

/* SIMPLE DROPDOWN - ABOUT */
.dropdown { position: relative; }
.simple-dropdown {
  position: absolute; top: 55px; left: 0; background: #fff; width: 260px;
  border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); padding: 12px;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease;
}
.dropdown:hover .simple-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.simple-dropdown li a {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  text-decoration: none; color: #444; font-size: 14px; font-weight: 500;
  border-radius: 10px; transition: 0.2s;
}
.simple-dropdown li a:hover { background: #f7f9f7; color: #2d7a2d; }
.icon { font-size: 18px; width: 24px; text-align: center; }

/* MEGA DROPDOWN - PRODUCTS */
.mega-dropdown {
  position: absolute; top: 55px; left: 90%; transform: translateX(-20%) translateY(10px);
  background: #fff; 
  border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  width: 800px;
   padding: 25px 30px;
  opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.dropdown.mega:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.mega-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; color: #777;
  margin-bottom: 20px; display: flex; align-items: center; gap: 6px;
}
.mega-label .dot { width: 6px; height: 6px; background: #2d7a2d; border-radius: 50%; }

.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mega-col h5 {
  font-size: 13px; font-weight: 700; color: #222; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.mega-col a {
  display: block; font-size: 14px; color: #555; text-decoration: none;
  padding: 6px 0; transition: 0.2s;
}
.mega-col a:hover { color: #2d7a2d; padding-left: 4px; }

.btn-contact {
  background: #f5f5f5; color: #333; padding: 10px 20px; border-radius: 50px;
  text-decoration: none; font-size: 14px; font-weight: 600; border: 1px solid #e0e0e0;
}
.btn-contact i { margin-right: 6px; }

/* HERO */
.hero {
  background: url('./chicken\ 2.jfif') center/cover no-repeat;
  height: 100vh; position: relative; display: flex; align-items: center; padding: 0 8%;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 600px; }
.hero-content h1 { font-size: 60px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.categories { font-size: 12px; font-weight: 700; letter-spacing: 2px; color: #ccc; margin-bottom: 15px; }
.desc { font-size: 15px; line-height: 1.7; color: #ddd; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn { padding: 14px 28px; border-radius: 50px; text-decoration: none; font-size: 14px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.btn-green { background: linear-gradient(135deg, #2d7a2d 0%, #3a9e3a 100%); color: #fff; }
.btn-outline { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.3); backdrop-filter: blur(5px); }
.slider-dots { position: absolute; bottom: 30px; left: 8%; display: flex; gap: 8px; z-index: 2; }
.dot { width: 8px; height: 8px; background: rgba(255,255,255,0.4); border-radius: 50%; }
.dot.active { width: 30px; border-radius: 10px; background: #3a9e3a; }




/* our story */

/* OUR STORY SECTION */
.our-story {
  padding: 100px 8%;
  background: #fafafa;
}

.our-story.container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #2d7a2d;
  background: #e8f5e8;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.section-tag.dot { width: 5px; height: 5px; background: #2d7a2d; border-radius: 50%; display: inline-block; }

.our-story h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin-bottom: 30px;
}
.our-story h2.green-text { color: #2d7a2d; }

/* IMAGE SLIDER */
.slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 420px;
}

.slides { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

/* COUNTER */
.slide-counter {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

/* ARROWS */
.slider-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
  z-index: 10;
  backdrop-filter: blur(5px);
}
.slider-btn:hover { background: #2d7a2d; color: #fff; }
.slider-btn.prev { right: 60px; }

/* RIGHT SIDE */
.story-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.quote-box {
  background: linear-gradient(135deg, #2d7a2d 0%, #3a9e3a 100%);
  color: #fff;
  padding: 35px 30px;
  border-radius: 16px;
  margin-bottom: 25px;
}
.quote-box p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 15px;
}
.quote-box span {
  font-size: 13px;
  opacity: 0.85;
  font-weight: 500;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
.our-story.container { grid-template-columns: 1fr; }
.our-story h2 { font-size: 36px; }
.slider { height: 320px; }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .mega-dropdown { width: 700px; }
  .nav-links { gap: 15px; }
}
@media (max-width: 992px) {
  /* .nav-links, .btn-contact { display: none; } */
   /* Add hamburger for mobile */

   nav .nav-links{
    display: block;
    background-color: white;
    width: 400px;


   }

}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&display=swap');

.cert-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  padding: 18px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  max-width: 380px;
  font-family: 'Poppins', sans-serif;
  border: 1px solid rgba(0,0,0,0.04);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: #e8f5e8; /* light green bg */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.cert-icon i {
  font-size: 28px;
  color: #ffa500; /* gold medal */
  position: relative;
}

/* Ribbon on top of medal */
.cert-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  width: 30px;
  height: 12px;
  background: linear-gradient(90deg, #4a90e2 0%, #e94b8b 50%, #4a90e2 100%);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  z-index: 1;
}

.cert-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #2d7a2d; /* CHI green */
  margin: 0;
  letter-spacing: 0.5px;
}

.cert-text p {
  font-size: 14px;
  font-weight: 400;
  color: #7aa87a; /* lighter green */
  margin: 2px 0 0 0;
}

/* Responsive */
@media (max-width: 480px) {
  .cert-badge { padding: 14px 18px; }
  .cert-icon { width: 50px; height: 50px; }
  .cert-text h4 { font-size: 16px; }
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.products-intro {
  padding: 100px 8%;
  background: #fefefe;
  font-family: 'Poppins', sans-serif;
}

.products-intro .container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* LEFT SIDE */
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #5a7d5a;
  background: #eef5ee;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.section-tag .dot { 
  width: 6px; 
  height: 6px; 
  background: #5a7d5a; 
  border-radius: 50%; 
  display: inline-block; 
}

.intro-left h2 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #2d3748; /* dark grey-blue */
  margin: 0;
}
.intro-left h2.green-text { 
  color: #3a9e3a; /* CHI green */
}

/* RIGHT SIDE */
.intro-right p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280; /* soft grey */
  margin-bottom: 20px;
}

.intro-right .cta-text {
  font-size: 14px;
  font-weight: 600;
  color: #3a9e3a;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .products-intro .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-left h2 { font-size: 40px; }
  .products-intro { padding: 60px 6%; }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

.why-chi-header {
  padding: 100px 8%;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.why-chi-header .container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}

/* LEFT SIDE */
.section-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #5a7d5a;
  background: #f1f6f1;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.section-pill .dot { 
  width: 5px; 
  height: 5px; 
  background: #5a7d5a; 
  border-radius: 50%; 
  display: inline-block; 
}

.why-left h2 {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: #2d3748; /* dark charcoal */
  margin: 0;
}
.why-left h2.green-text { 
  color: #3a9e3a; /* CHI green */
}

/* RIGHT SIDE */
.why-right p {
  font-size: 15px;
  line-height: 1.7;
  color: #9ca3af; /* soft grey */
  font-style: italic;
  text-align: right;
  max-width: 320px;
  margin-bottom: 8px; /* to align with baseline of h2 */
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-chi-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .why-right p {
    text-align: left;
    max-width: 100%;
  }
  .why-left h2 { font-size: 36px; }
  .why-chi-header { padding: 60px 6%; }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.why-features {
  padding: 20px 8% 100px 8%; /* less top padding to connect to header */
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.why-features .container {
  max-width: 1300px;
  margin: 0 auto;
}

/* 3 COLUMN GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

/* CARD */
.feature-card {
  text-align: left;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #f7faf7; /* very light green grey */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2d3748; /* dark charcoal */
  margin: 0 0 10px 0;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #718096; /* medium grey */
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .why-features { padding: 20px 6% 60px 6%; }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.contact-hero {
  position: relative;
  padding: 140px 8%;
  background: url('contact-banner.jpg') center/cover no-repeat; /* replace with your image */
  font-family: 'Poppins', sans-serif;
  color: #fff;
  overflow: hidden;
}

/* DARK GREEN OVERLAY */
.contact-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(13, 59, 30, 0.88) 0%, rgba(13, 59, 30, 0.75) 100%);
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* PILL TAG */
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #86efac;
  background: rgba(134, 239, 172, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.pill-tag .dot {
  width: 6px;
  height: 6px;
  background: #86efac;
  border-radius: 50%;
}

/* MAIN TITLE */
.contact-hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px 0;
}
.contact-hero h1 .accent {
  color: #4ade80; /* bright green */
}

/* SUB TEXT */
.contact-hero .sub-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-hero h1 { font-size: 42px; }
  .contact-hero { padding: 100px 6%; }
}

@media (max-width: 640px) {
  .contact-hero h1 { font-size: 32px; }
  .contact-hero .sub-text br { display: none; }
  .contact-hero { padding: 80px 6%; }
}

.contact-cards {
  padding: 60px 8% 120px 8%;
  background: linear-gradient(rgba(10, 50, 20, 0.85), rgba(10, 50, 20, 0.85)), 
              url('contact-banner.jpg') center/cover no-repeat fixed; /* same bg as hero */
  font-family: 'Poppins', sans-serif;
}

.contact-cards .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.cards-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 35px;
}

.icon-wrapper {
  width: 44px;
  height: 44px;
  background: rgba(248, 113, 113, 0.15); /* soft red bg */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-wrapper i {
  font-size: 20px;
  color: #f87171; /* pink/red phone */
}

.cards-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* 3x2 GRID */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

/* GLASS CARD */
.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 18px 22px;
  transition: all 0.3s ease;
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 222, 128, 0.4);
  transform: translateY(-2px);
}

.card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px 0;
  text-transform: uppercase;
}

.card-number {
  font-size: 18px;
  font-weight: 600;
  color: #a7f3d0; /* light green number */
  text-decoration: none;
  transition: 0.3s;
}
.card-number:hover {
  color: #4ade80;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .contact-cards { padding: 40px 6% 80px 6%; }
}

.email-card-section {
  padding: 0 8% 120px 8%; /* no top padding, connects to cards above */
  background: linear-gradient(rgba(10, 50, 20, 0.85), rgba(10, 50, 20, 0.85)), 
              url('contact-banner.jpg') center/cover no-repeat fixed; /* same bg */
  font-family: 'Poppins', sans-serif;
}

.email-card-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* GLASS EMAIL CARD */
.email-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(22, 101, 52, 0.25); /* deep green glass */
  border: 1px solid rgba(74, 222, 128, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 22px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.email-card:hover {
  background: rgba(22, 101, 52, 0.4);
  border-color: rgba(74, 222, 128, 0.5);
  transform: translateY(-3px);
}

/* TEXT */
.email-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #86efac; /* light green */
  margin: 0 0 6px 0;
  text-transform: uppercase;
}

.email-address {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* ICON */
.email-icon {
  width: 60px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.email-icon i {
  font-size: 22px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .email-card { padding: 18px 20px; }
  .email-address { font-size: 16px; }
  .email-card-section { padding: 0 6% 80px 6%; }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.contact-form-section {
  padding: 60px 8% 120px 8%;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.contact-form-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* WHITE FORM CARD */
.form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.form-wrapper h4 {
  font-size: 16px;
  font-weight: 600;
  color: #4a5568;
  margin: 0 0 30px 0;
}

/* FORM ELEMENTS */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #718096;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  color: #2d3748;
  background: #fff;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #15803d;
  box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* CUSTOM SELECT */
.custom-select {
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.select-selected {
  background: #fff;
  padding: 15px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: #a0aec0; /* placeholder color */
  transition: all 0.3s ease;
}

.select-selected.select-arrow-active {
  border-color: #15803d;
  border-radius: 12px 12px 0 0;
}

.select-selected .arrow {
  font-size: 10px;
  color: #94a3b8;
  transition: transform 0.3s;
}

.select-selected.select-arrow-active .arrow {
  transform: rotate(180deg);
}

.select-items {
  position: absolute;
  background: #fff;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  border: 1.5px solid #15803d;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
}

.select-items div {
  padding: 14px 18px;
  cursor: pointer;
  font-size: 15px;
  color: #2d3748;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
}

.select-items div:hover {
  background: #f0fdf4; /* light green hover */
}

.select-hide {
  display: none;
  
}

/* SUBMIT BUTTON */
.submit-btn {
  background: #166534;
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}
.submit-btn:hover {
  background: #14532d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 101, 52, 0.25);
}

/* TRUST NOTE */
.trust-note {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin: 18px 0 0 0;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 30px 25px; }
  .contact-form-section { padding: 40px 6% 80px 6%; }
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

.site-footer {
  background: linear-gradient(180deg, #0a2e1a 0%, #052012 100%); /* dark green gradient */
  padding: 70px 8% 40px 8%;
  font-family: 'Poppins', sans-serif;
  color: #e2e8f0;
}

.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADING */
.footer-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #86efac; /* light green */
  margin: 0 0 35px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-pin { font-size: 16px; }

/* GRID OF CARDS */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

/* LOCATION CARD - GLASS */
.location-card {
  display: flex;
  gap: 16px;
  background: rgba(22, 101, 52, 0.25); /* green glass */
  border: 1px solid rgba(74, 222, 128, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.3s ease;
}

.location-card:hover {
  background: rgba(22, 101, 52, 0.4);
  border-color: rgba(74, 222, 128, 0.3);
  transform: translateY(-3px);
}

/* ICON */
.location-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CONTENT */
.location-content h6 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #86efac;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.location-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

/* BOTTOM BAR */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 18px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  font-weight: 500;
}

.footer-bottom strong {
  color: #fff;
  font-weight: 700;
}

.footer-bottom .divider {
  margin: 0 10px;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .locations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-footer { padding: 50px 6% 30px 6%; }
  .location-card { padding: 18px 18px; }
  .location-content p { font-size: 13px; }
}

.chinyere{
    text-align: center;
    padding-top: 20px;
}



.google-map iframe{
  width: 100%;
}


@media (max-width: 992px) {
  nav .nav-links {
    display: block;
    background-color: white;
    width: 400px;
  }
}


