    /* 🌿 Base Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
 .card{
     margin-bottom: 10px;
     border-radius: 20px;
     /*border: 1px solid #13497d;*/
 }
 .card-body{
     /*background:#c6d8f0;*/
 }
 .card-header:first-child {
    border-radius: 20px;
    /*background:#c6d8f0;*/
}
.myaccordion {
  max-width: 500px;
  margin: 50px auto;
  box-shadow: 0 0 1px rgba(0,0,0,0.1);
}
.collapse_link {
    text-decoration: none !important;
    color: #6c6666;
    font-size: 18px;
    width: 100%;
    font-weight: 700;
}
.collapse_link_submenu{
  text-decoration: none !important;
    color: #6c6666;
    font-size: 18px;
    width: 100%;
}
.collapse_link:hover {
    color:#d9bb53;
}
.card-body ul li{
    color: rgba(0, 0, 0, 0.54);
    font-size: 16px;
    font-weight: 600;
}

/* .collapse_link:hover {
    text-decoration: none !important;
} */
.myaccordion .card,
.myaccordion .card:last-child .card-header {
  border: none;
}

.myaccordion .card-header {
  border-bottom-color: #EDEFF0;
  background: transparent;
}

.myaccordion .fa-stack {
  font-size: 18px;
}

.myaccordion .btn {
  width: 100%;
  font-weight: bold;
  color: #004987;
  padding: 0;
}

.myaccordion .btn-link:hover,
.myaccordion .btn-link:focus {
  text-decoration: none;
}

.myaccordion li + li {
  margin-top: 10px;
}
.circle-span{
  font-size: 13px;
  color: #d9bb53;
  float:right;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  /* background-color: #fef8e7;  */
  background-image: 
repeating-linear-gradient(30deg, rgb(237 237 237 / 30%) 0, /* slightly transparent yellow */ rgb(255 247 247 / 30%) 2px, #ffffff00 2px, transparent 10px), repeating-linear-gradient(-30deg, rgb(255 255 255) 0, rgb(255 236 236 / 30%) 2px, transparent 2px, #fffafa00 10px);
  background-size: 40px 40px;
}

  /* 🌈 Navbar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(254 254 254);
  backdrop-filter: blur(14px);
  padding: 18px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s ease;
}

/* 🌀 Shrink effect when scrolled */
nav.scrolled {
  background: rgb(254 254 254);
  backdrop-filter: blur(18px);
  padding: 12px 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* 🌿 Logo */
nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

nav .logo:hover {
  transform: translateY(-2px) scale(1.03);
}

nav .logo img {
  /* width: 50px; */
  height: 100px;
  /* border-radius: 50%;
  border: 2px solid #a5bb4d;
  box-shadow: 0 0 10px rgba(87, 204, 153, 0.4); */
}

nav .logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #034f84;
  letter-spacing: 0.5px;
}

/* 🌐 Menu Links */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  position: relative;
  text-decoration: none;
  color: #034f84;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding-bottom: 4px;
}

/* ✨ Animated underline */
nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: -4px;
  background: linear-gradient(90deg, #184275, #a5bb4d, #eeca52);
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* Hover + Active states */
nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
  color: #184275;
  text-shadow: 0 0 8px rgba(17, 138, 178, 0.3);
}

/* 📱 Responsive */
@media (max-width: 900px) {
  nav {
    padding: 12px 25px;
  }

  nav ul {
    gap: 18px;
  }

  nav .logo span {
    font-size: 1.2rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001; /* above nav */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #034f84;
  border-radius: 2px;
  transition: 0.3s;
}
/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* ===== Responsive Adjustments ===== */
@media (max-width: 700px) {
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    flex-direction: column;
    padding: 100px 20px;
    gap: 20px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
    list-style: none;
    z-index: 1000;
  }

  nav ul.show {
    right: 0;
  }

  .hamburger {
    display: flex;
  }
}

/* 🌿 Professional Welcome Section */
#welcome {
  width: 100%;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fef8e7;
  color: #fff;
  overflow: hidden;
}
#welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(242,204,12,0.4), rgba(87,204,153,0.3), rgba(17,138,178,0.3));
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  z-index: 0;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Soft overlay for readability */
.welcome-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 45, 70, 0.7), rgba(17, 138, 178, 0.6));
  backdrop-filter: blur(2px);
  z-index: 1;
}

/* Content */
.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  animation: fadeInUp 1.2s ease-out;
}

/* Intro line */
.welcome-intro {
  font-size: 1.5rem;
  font-weight: 500;
  color: #eeca52;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Headline */
.welcome-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 25px;
}

/* Highlight text */
.welcome-content .highlight {
  color: #eeca52;
  font-weight: 600;
  font-size: 1.3rem;
  display: inline-block;
  margin-top: 10px;
}

/* Paragraph */
.welcome-content p {
  font-size: 1.2rem;
  color: #e9f7f6;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Button */
.welcome-btn {
  background-color: #a5bb4d;
  color: #033b3d;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 36px;
  border: 4px solid;
  border-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40"><polygon points="20,0 40,10 40,30 20,40 0,30 0,10" fill="none" stroke="%23033b3d" stroke-width="4"/></svg>') 30 round;
  border-radius: 0; /* remove rounded corners for hex effect */
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.welcome-btn:hover {
  background-color: #184275;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Smooth fade-in animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Optional moving light gradient overlay */
#welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17,138,178,0.4), rgba(87,204,153,0.4), rgba(242,204,12,0.3));
  background-size: 300% 300%;
  animation: gradientMove 12s ease infinite;
  z-index: 0;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .welcome-content h1 { font-size: 2rem; }
  .welcome-content p { font-size: 1rem; }
  .welcome-btn { padding: 12px 28px; font-size: 0.95rem; }
  .welcome-intro { font-size: 1.2rem; }
}

/* Bee trail animation moving through keywords */
@keyframes beeTrail {
  0% { transform: translateX(0) rotate(0deg); }
  20% { transform: translateX(60px) rotate(10deg); }
  40% { transform: translateX(160px) rotate(-5deg); }
  60% { transform: translateX(300px) rotate(8deg); }
  80% { transform: translateX(420px) rotate(-10deg); }
  100% { transform: translateX(0) rotate(0deg); }
}
    /* 🌟 Section Styles */
    section {
      max-width: 1400px;
      margin: 120px auto;
      padding: 50px 40px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      scroll-margin-top: 120px;
    }

    section:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    h2 {
      text-align: center;
      color: #034f84;
      font-size: 2rem;
      margin-bottom: 25px;
      position: relative;
    }

    h2::after {
      content: "";
      display: block;
      width: 90px;
      height: 4px;
      background: linear-gradient(to right, #eeca52, #a5bb4d, #184275);
      margin: 12px auto 0;
      border-radius: 2px;
    }

    p {
      font-size: 1.05rem;
      color: #1b4332;
      line-height: 1.9;
      text-align: justify;
    }

    /* 🌼 Footer */
    footer {
      background: linear-gradient(90deg, #184275, #a5bb4d, #eeca52);
      color: white;
      text-align: center;
      padding: 25px;
      font-size: 1rem;
      letter-spacing: 0.5px;
    }

    /* ✨ Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slowZoom {
      from {
        transform: scale(1);
      }
      to {
        transform: scale(1.08);
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }



.highlight {
    color: #eeca52;
    font-weight: 600;
    display: inline-block;
    position: relative;
  }

  .word {
    position: relative;
    margin: 0 5px;
    display: inline-block;
  }

  .bee {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    pointer-events: none;
  }
/* Section Wrapper */
.vision-section {
  padding: 20px 0;
  background: #fdf3d4;
}
#vision{
  max-width: 1400px;
}
/* Container */
.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* Text */
.vision-text h2, .mission-header-wrapper h2,.section-title,#longevity-movement h2,#our-team h2,#get-in-touch h2,#faq h2,.awards-header h2, .longevity-header-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #183a68;
  margin-bottom: 20px;
  position: relative;
}

.vision-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg,#eeca52,#a5bb4d,#184275);
  margin-top: 12px;
  border-radius: 3px;
}

.vision-text .top-tagline {
  font-size: 1.3rem;
  font-weight: 600;
  color: #184275;
  margin-bottom: 20px;
}

.vision-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1b4332;
}

.vision-text .highlight {
  color: #184275;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(242,204,12,0.18), rgba(87,204,153,0.18));
  padding: 2px 6px;
  border-radius: 6px;
}

/* Image */
.vision-image {
  position: relative;
}

.vision-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: right center; /* 👈 man aligned right */
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transition: transform 0.6s ease;
}

.vision-image img:hover {
  transform: scale(1.05);
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floating-icons .icon {
  font-size: 1.6rem;
  background: white;
  color: #184275;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.floating-icons .icon:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
  .vision-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .vision-image img {
    height: 350px;
    object-position: center;
  }
  .floating-icons {
    flex-direction: row;
    bottom: 20px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}


/* 🌟 Mission Section */
#mission{
  max-width: 1400px;
}
/* 🌟 Mission Section Advanced Design */
.mission-section {
  position: relative;
  background: linear-gradient(135deg, #e0f7f1, #d1f0ec);
  padding: 35px 20px 100px;
  overflow: hidden;
}

.mission-container {
  padding-top: 38px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* Text Card */
.mission-text-card {
  flex: 1 1 500px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  padding: 60px 50px;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(100px) rotateX(10deg);
}

.mission-text-card.visible {
  opacity: 1;
  transform: translateY(0) rotateX(0);
  transition: all 1s ease-out;
}
.mission-text-card h2::after {
  content: "";
  display: block;
  width: 80px; /* same as Vision */
  height: 4px;
  background: linear-gradient(90deg,#eeca52,#a5bb4d,#184275);
  margin-top: 12px;
  border-radius: 3px;
}

.mission-text-card h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #0ea5e9, #3b82f6, #a5bb4d);
  margin-top: 15px;
  border-radius: 5px;
}

.mission-text-card p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 25px;
}

.mission-text-card a.btn-learn-more {
  padding: 14px 36px;
  font-weight: 600;
  border-radius: 14px;
  background: linear-gradient(90deg,#3b82f6,#0ea5e9);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.mission-text-card a.btn-learn-more:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(59,130,246,0.3);
}

/* Image Card */
.mission-image-parallax {
  flex: 1 1 500px;
  position: relative;
  perspective: 1200px;
  top: -40px; /* overlapping the text slightly */
}

.mission-image-parallax img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 35px 80px rgba(0,0,0,0.15);
  transform: rotateY(0deg) rotateX(0deg) scale(1);
  transition: all 0.6s ease;
}
.mission-image-parallax img:hover {
  transform: rotateY(2deg) rotateX(2deg) scale(1.03);
  box-shadow: 0 50px 100px rgba(0,0,0,0.2);
}

/* Floating Gradient Circles */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}
.circle1 { width: 150px; height: 150px; background: #0ea5e9; top: -50px; left: -50px; }
.circle2 { width: 200px; height: 200px; background: #3b82f6; bottom: -100px; right: -80px; }
.circle3 { width: 120px; height: 120px; background: #60a5fa; top: 35%; right: -60px; }
.circle4 { width: 180px; height: 180px; background: #3b82f6; top: 50%; left: -90px; }

/* Responsive */
@media (max-width: 900px) {
  .mission-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px; /* reduce from 80px to 30px */
  }

  .mission-text-card {
    padding: 40px 25px;
    transform: translateY(0) rotateX(0); /* remove extra offset */
  }

  .mission-image-parallax {
    flex: 1 1 300px;
    top: 0;
    width: 100%;
  }

  .mission-image-parallax img {
    width: 100%;
    max-width: 400px; /* adjust size for mobile */
  }
}

/* 🌿 Mission Section Responsive Fix */
@media (max-width: 768px) {
  .mission-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 25px; /* reduce vertical gap */
    padding: 0 15px;
  }

  .mission-text-card {
    padding: 25px 20px; /* reduced padding */
    width: 100%;
    transform: translateY(0) rotateX(0); /* remove extra top offset */
  }

  .mission-text-card h2 {
    font-size: 2rem;
  }

  .mission-text-card p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 15px; /* avoid text touching edges */
  }

  .mission-image-parallax {
    width: 100%;
    top: 0;
  }

  .mission-image-parallax img {
    width: 100%;
    max-width: 380px; /* adjust image size */
  }
}

@media (max-width: 480px) {
  .mission-container {
    gap: 20px; /* tighter gap on small screens */
  }

  .mission-text-card {
    padding: 20px 15px;
  }

  .mission-text-card h2 {
    font-size: 1.8rem;
  }

  .mission-text-card p {
    font-size: 0.95rem;
    padding: 0 12px;
  }

  .mission-image-parallax img {
    max-width: 90%;
  }
}


/* 🌿 Longevity Philosophy Styles */

#longevity,.ecosystem-section{
  max-width: 1400px;
}

.longevity-section {
  padding: 35px 20px 100px;
  background: #fdf7e5;
}

/* .longevity-header-wrapper h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #023e46;
  margin-bottom: 10px;
  position: relative;
} */

.longevity-header-wrapper p {
  text-align: center;
  font-size: 1.2rem;
  color: #1b4332;
  margin-bottom: 60px;
}

.longevity-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Longevity Philosophy - Advanced Professional Design with Zig-Zag */
.longevity-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Card Styling */
.longevity-card {
  position: relative;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 25px 30px 20px; /* extra top padding for centered icon */
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: all 0.5s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center; /* center content horizontally */
  text-align: center;  /* center text */
}

.longevity-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #a5bb4d, #184275, #eeca52, #a5bb4d);
  background-size: 400% 400%;
  animation: gradientShift 8s linear infinite;
  opacity: 0.3;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.longevity-card .icon {
  font-size: 2.5rem;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg,#a5bb4d,#184275);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.longevity-card h3 {
  font-size: 1.5rem;
  color: #034f84;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.longevity-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #1b4332;
  z-index: 1;
  position: relative;
}

.longevity-card:hover {
  transform: translateY(-15px) rotateX(3deg) rotateY(3deg) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.longevity-card:hover .icon {
  transform: scale(1.2) rotate(10deg);
}

/* Zig-zag offsets */
.longevity-card:nth-child(odd) {
  margin-top: -20px; /* Cards 1 & 3 slightly up */
}

.longevity-card:nth-child(even) {
  margin-top: 20px;  /* Cards 2 & 4 slightly down */
}

/* Scroll fade-in animations */
.fade-left, .fade-right {
  opacity: 0;
  transform: translateY(40px);
}

.fade-left.visible, .fade-right.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .longevity-card {
    padding: 30px 20px;
    margin-top: 0 !important; /* remove zig-zag on mobile */
  }
  .longevity-card h3 {
    font-size: 1.3rem;
  }
  .longevity-card p {
    font-size: 0.95rem;
  }
}



.ecosystem-section {
  padding: 35px 20px 100px;
  background: linear-gradient(135deg, #fffaf0, #f9fff7);
  text-align: center;
  position: relative;
}

/* .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2e5339;
  margin-bottom: 10px;
} */

.section-subtitle {
  font-size: 1.2rem;
  color: #1b4332;
  /* max-width: 700px; */
  margin: 0 auto 60px;
  text-align: center;
}

.ecosystem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.eco-card {
  position: relative;
  width: 307px;
  height: 350px;
  background: white;
  padding: 40px 25px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ecosystem-hex {
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
  background: #fff;
  border: 3px solid transparent;
  position: relative;
}

.ecosystem-hex::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  clip-path: inherit;
  background: linear-gradient(45deg, #f5e6a3, #c8f5c1, #a0d8ef);
  z-index: -1;
  transition: 0.4s ease;
}

.ecosystem-hex:hover::before {
  background: linear-gradient(45deg, #f5b800, #a6e5a1, #5cc9f5);
  transform: scale(1.05);
}

.eco-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #f5b800;
  transition: 0.3s ease;
}

.eco-card:hover .eco-icon {
  transform: scale(1.2);
}

.eco-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2e5339;
  font-weight: 600;
}

.eco-card p {
  font-size: 1rem;
  color: #555;
  padding: 0 25px;
  text-align: center;
}

/* 🌿 Ecosystem Section Responsive Adjustments */
@media (max-width: 1024px) {
  .ecosystem-grid {
    gap: 30px;
  }
  .eco-card {
    width: 250px;
    height: 250px;
    padding: 30px 20px;
  }
  .eco-icon {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .ecosystem-grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .eco-card {
    width: 90%;
    max-width: 300px;
    height: auto; /* flexible height */
    padding: 25px 20px;
  }
  .eco-card h3 {
    font-size: 1.2rem;
  }
  .eco-card p {
    font-size: 0.95rem;
    padding: 10px 20px; /* extra left & right padding */
  }
  .eco-icon {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 0.95rem;
    max-width: 90%;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .eco-card {
    width: 95%;
    padding: 20px 15px;
  }
  .eco-card h3 {
    font-size: 1.1rem;
  }
  .eco-card p {
    font-size: 0.9rem;
    padding: 10px 18px; /* more padding for small screens */
  }
  .eco-icon {
    font-size: 1.8rem;
  }
}
.why-choose-us{
  background: #fff7d1;
  padding: 35px 20px 100px;
}

/* Grid layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* General Why card styling */
.why-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.why-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Longevity Section Distinct Background */
.longevity-section {
  grid-column: span 3;
  padding: 35px 20px 100px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f1f5f5, #9fc1a9); /* soft teal to light green */
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Optional: keep content above pseudo elements */
.longevity-section > * {
  position: relative;
  z-index: 1;
}

/* Longevity section title */
.longevity-section h3 {
  text-align: center;
  font-size: 2rem;
  color: #d49b32;
  /* margin-bottom: 20px; */
}

/* Container for Longevity cards */
.longevity-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Longevity hexagonal card style with proper inner spacing */
.longevity-movement-card.longevity-hex {
  position: relative;
  background: #fff8e0;
  color: #333;
  width: 280px;       /* card width */
  height: 280px;      /* card height */
  clip-path: polygon(
    25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 20px;  /* enough space inside */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-sizing: border-box; /* ensures padding doesn't overflow */
}

/* Gradient border using pseudo-element */
.longevity-movement-card.longevity-hex::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  clip-path: polygon(
    25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%
  );
  background: linear-gradient(135deg, #ffe8a3, #fff3cc, #ffd580);
  z-index: -1;
  border-radius: 20px; /* smooth border edges */
}

/* Hover effect */
.longevity-movement-card.longevity-hex:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

/* Icon styling */
.longevity-movement-card.longevity-hex .icon {
  font-size: 38px;
  margin-bottom: 15px;
}

/* Card title */
.longevity-movement-card.longevity-hex h4 {
  color: #183a68;
  font-size: 1.3rem;
  margin-bottom: 10px;
  padding: 0 5px; /* small padding for title */
}

/* Card text */
.longevity-movement-card.longevity-hex p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 25px; /* spacing between text and edges */
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 25px;
  }

  .longevity-section {
    grid-column: span 2; /* span both columns */
    padding: 30px 15px 50px;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 20px;
  }

  .longevity-section {
    grid-column: span 1;
    padding: 25px 15px 40px;
  }

  .longevity-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .longevity-movement-card.longevity-hex {
    width: 90%;
    max-width: 300px;
    height: auto; /* adjust height for text wrapping */
    padding: 20px;
  }

  .longevity-movement-card.longevity-hex h4 {
    font-size: 1.2rem;
  }

  .longevity-movement-card.longevity-hex p {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .why-choose-us {
    padding: 25px 15px 60px;
  }

  .longevity-section h3 {
    font-size: 1.8rem;
  }

  .longevity-movement-card.longevity-hex .icon {
    font-size: 32px;
  }

  .longevity-movement-card.longevity-hex h4 {
    font-size: 1.1rem;
  }

  .longevity-movement-card.longevity-hex p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}
/* Longevity section responsive adjustments */
@media (max-width: 900px) {
  .longevity-section {
    grid-column: span 1; /* take full width */
    padding: 30px 20px 50px; /* top-bottom, left-right padding */
  }

  .longevity-cards {
    flex-direction: column; /* stack hex cards vertically */
    align-items: center;
    gap: 20px;
  }

  .longevity-movement-card.longevity-hex {
    width: 90%; /* take most of container width */
    max-width: 320px; /* optional max width */
    padding: 20px; /* inner padding */
    height: auto; /* allow flexible height for text */
  }

  .longevity-movement-card.longevity-hex p {
    padding: 0 15px; /* padding for text inside hex */
    text-align: center; /* center text for small screens */
  }
}

/* Hexagonal circular pattern */
.hex-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.hex-circle::before,
.hex-circle::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><polygon points="50,0 100,25 100,75 50,100 0,75 0,25" fill="rgba(13,59,102,0.05)" stroke="rgba(13,59,102,0.1)" stroke-width="2"/></svg>');
  background-repeat: repeat;
  background-size: 50px 50px;
  animation: rotateHex 20s linear infinite;
}

.hex-circle::after {
  transform: rotate(60deg);
  opacity: 0.5;
}

@keyframes rotateHex {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 🌼 Fullscreen Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: #fffbe6; /* soft honey color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* 🍯 Circular Honeycomb */
.honeycomb {
  position: relative;
  width: 200px;
  height: 200px;
}

/* hexagon style */
.hex {
  width: 30px;
  height: 17.32px;
  background-color: #f5d976;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  position: absolute;
}

/* Simple circular placement */
.hex:nth-child(1){ top:76px; left:74px; }
.hex:nth-child(2){ top:60px; left:126px; }
.hex:nth-child(3){ top:100px; left:118px; }
.hex:nth-child(4){ top:76px; left:106px; }
.hex:nth-child(5){ top:99px; left:87px; }
.hex:nth-child(6){ top:98px; left:57px; }
.hex:nth-child(7){ top:80px; left:38px; }
.hex:nth-child(8){ top:57px; left:57px; }
.hex:nth-child(9){ top:50px; left:90px; }
.hex:nth-child(10){ top:80px; left:141px; }

/* 🐝 Bee */
.bee-wrapper {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 30px;
  left: 75px;
  animation: beeFly 4s ease-in-out infinite;
}

.bee-loader {
  width: 50px;
  height: 50px;
  background: url('../images/bee.svg') no-repeat center/contain;
  position: relative;
}

/* Optional: add simple wing flapping if bee.svg supports */
.bee-loader::before, .bee-loader::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 10px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  top: 0;
  animation: flap 0.3s infinite alternate;
}
.bee-loader::before { left: -10px; transform-origin: right center; }
.bee-loader::after { right: -10px; transform-origin: left center; }

@keyframes flap {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(30deg); }
}

/* 🐝 Bee random-ish flight path over honeycomb */
@keyframes beeFly {
  0%   { transform: translate(0,0) rotate(0deg); }
  15%  { transform: translate(20px,-10px) rotate(10deg); }
  30%  { transform: translate(40px,5px) rotate(-15deg); }
  45%  { transform: translate(30px,25px) rotate(20deg); }
  60%  { transform: translate(10px,15px) rotate(-10deg); }
  75%  { transform: translate(-10px,25px) rotate(15deg); }
  90%  { transform: translate(-5px,5px) rotate(-5deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

#our-team {
  padding: 60px 20px 100px;
  background-color: #fffaf0; /* soft honey tone */
  text-align: center;
  transition: padding 0.3s ease;
}

#our-team h2 {
  font-size: 2.8rem;
}

#our-team h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: #f5b800;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  transition: gap 0.3s ease;
}

.team-member {
  position: relative;
  width: 250px;
  transition: transform 0.3s ease;
}

.team-member.hover {
  transform: translateY(-10px);
}

.team-member.hover .member-photo img {
  transform: translate(-50%, -50%) scale(1.05);
}

.team-member.hover .overlay {
  height: 50px; /* shows the role */
  opacity: 1;
}

.member-photo {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f5b800;
  margin-bottom: 20px;
  background-color: #f0e6d6;
}

.member-photo img {
  position: absolute;
  top: 70%; /* center vertically */
  left: 50%; /* center horizontally */
  width: auto; /* maintain aspect ratio */
  height: 362px; /* fill circle vertically */
  transform: translate(-50%, -50%); /* perfectly center image */
  transition: transform 0.3s ease;
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background: rgba(245, 184, 0, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0 0 50% 50%;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.overlay p{
  margin-bottom: 0px;;
}
.team-member h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d3748;
  margin-top: 10px;
}

/* 🌿 Responsive Adjustments */
@media screen and (max-width: 600px) {
  .team-member {
    width: 90%;
  }
}
@media screen and (max-width: 900px) {
  #our-team {
    padding: 50px 15px 80px;
  }

  .team-container {
    gap: 35px;
  }

  .team-member {
    width: 220px;
  }
.team-member.hover {
    transform: none;
  }

  .team-member.hover .member-photo img {
    transform: translate(-50%, -50%) scale(1); /* no zoom */
  }

  .team-member.hover .overlay {
    height: 0; /* hide overlay completely */
  }
  .member-photo {
    width: 220px;
    height: 220px;
  }

  .member-photo img {
    height: 320px;
  }
}

@media screen and (max-width: 600px) {
  #our-team {
    padding: 40px 10px 60px;
  }

  .team-member {
    width: 90%;
  }

  .member-photo {
    width: 90%;
    height: auto; /* maintain aspect ratio */
  }

  .member-photo img {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: auto;
  }

  .team-member h3 {
    font-size: 1.2rem;
  }

  .overlay {
    font-size: 0.9rem;
  }
}

/* 🌿 Get in Touch Section */
#get-in-touch {
  padding: 35px 20px 100px;
  background: linear-gradient(135deg, #eaf7f0 0%, #fff9e5 100%);
  position: relative;
  overflow: hidden;
}

#get-in-touch::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f5b80033 0%, transparent 70%);
  border-radius: 50%;
}

#get-in-touch h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #1b3a4b;
  margin-bottom: 70px;
  position: relative;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  max-width: 1150px;
  margin: 0 auto;
}

/* 🌼 Glass Card Style */
.contact-card {
  flex: 1 1 420px;
  background: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(245, 184, 0, 0.2);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.company-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1b3a4b;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1b3a4b;
  line-height: 1.6;
}

.contact-item.address {
  align-items: flex-start;
}

.contact-item a {
  color: #1b3a4b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #f5b800;
}

/* 🌟 Icon Glow Effect */
.contact-item .icon {
  color: #f5b800;
  font-size: 1.3rem;
  background: rgba(245, 184, 0, 0.15);
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-item:hover .icon {
  background: rgba(245, 184, 0, 0.3);
  box-shadow: 0 0 10px rgba(245, 184, 0, 0.6);
}

/* 🗺️ Map Container */
.map-container {
  flex: 1 1 470px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 3px solid rgba(245, 184, 0, 0.2);
  min-height: 420px;
  background: #fff;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-card,
  .map-container {
    width: 100%;
    max-width: 600px;
  }

  #get-in-touch h2 {
    font-size: 2.4rem;
  }
}
.awards-section {
    background: #fff;
    padding: 35px 20px 100px;
    color: #111;
    overflow: hidden;
    
  }

  .awards-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
/* 
  .awards-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
  } */

  .awards-header p {
    text-align: center;
    font-size: 1.2rem;
    color: #1b4332;
    margin-bottom: 60px;
  }

 .awards-content {
    display: flex;
    justify-content: center; /* center both sections */
    align-items: flex-start;
    gap: 40px; /* space between certificate and slider */
    flex-wrap: nowrap; /* keep both on the same row */
}

.award-certificate {
    flex: 1 1 45%; /* almost half the row */
    max-width: 500px;
    text-align: center;
}

  .award-certificate img {
    width: 100%;
    height: 326px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(92, 61, 255, 0.25);
    margin-bottom: 15px;
  }

  .award-certificate h3 {
    color: #d49b32;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .award-certificate p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .award-certificate a {
    display: inline-block;
    background: #d49b32;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }

  .award-certificate a:hover {
    background: #d49b32;
  }

.awards-slider-container {
    flex: 1 1 50%;
    position: relative;
}

.awards-slider {
    width: 100%;
    position: relative;
}

.award-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease-in-out;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    z-index: 1; /* lower than arrows */
}

.award-card.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    z-index: 2;
}


  .award-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
  }

  .award-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #111;
  }

  .award-card p {
    font-size: 1.2rem;
    color: #1b4332;
    max-width: 700px;
    margin: 0 auto 60px;
  }

.awards-nav {
    position: absolute;
    top: 35%;
    left: 35px;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 90%;
    z-index: 5; /* make arrows above slider */
}

.arrow {
    border: none;
    background: rgb(212 155 50); /* honeycomb yellow */
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10; /* arrows above everything */
}

.arrow:hover {
    background: #a8bb4d; /* green on hover */
    color: #fff;
}
.award-links {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: center; /* center on small screens */
  flex-wrap: wrap;
}

.award-links a {
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.view-details-btn {
  background: linear-gradient(90deg,#3b82f6,#0ea5e9);
  color: #fff;
}

.view-details-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(59,130,246,0.3);
}

.instagram-btn {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  color: #fff;
  font-weight: 600;
}

.instagram-btn i {
  font-size: 1.1rem;
}

.instagram-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 100, 150, 0.4);
}

/* Optional: award title highlight */
.award-card h4 {
  color: #a8bb4d; /* blue for titles */
}

  @media (max-width: 900px) {
    .awards-content {
      flex-direction: column;
      align-items: center;
    }
    .award-certificate {
      max-width: 100%;
    }
    .awards-slider-container {
      width: 100%;
    }
    .awards-nav {
      position: static;
      justify-content: center;
      margin-bottom: 15px;
    }
  }
  /* Minimal CSS adjustment for canvas */
.certificate-canvas-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 15px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(92, 61, 255, 0.25);
}
/* Floating Survey Button */
#survey-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  background: linear-gradient(135deg, #eeca52, #a5bb4d, #184275);
  color: #fff;
  padding: 16px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  text-decoration: none;
  display: none;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  animation: pulse 2.5s infinite;
}

/* Hover effect */
#survey-button:hover {
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(255, 206, 82, 0.5); }
  50% { box-shadow: 0 0 25px rgba(255, 206, 82, 0.8); }
  100% { box-shadow: 0 0 10px rgba(255, 206, 82, 0.5); }
}

/* Optional: Bee icon animation */
#survey-button .bee-icon {
  width: 24px;
  height: 24px;
  animation: bee-fly 1.5s infinite alternate ease-in-out;
}

@keyframes bee-fly {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(5deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
.faq-subheader{
  color: #83a94a;
  font-weight: 700;
  margin-bottom: 20px;
}