/* General Navbar Style */

* {
  font-family: 'Josefin Sans', sans-serif;

}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: white;
  border-bottom: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.left-section a {
  color: black;
  font-size: 16px;
  text-decoration: none;
}

.left-section span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fcd62c; 
  padding: 6px 12px;
}

.tagline {
  font-weight: 500;
  color: #000;
}

.who-we-are-btn {
  background-color: #2b2b83;
  color: white;
  padding: 6px 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
} 
@media (max-width: 768px) {
  .top-header {
    display: none;
  }
}


/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Logo */
.navbar-logo img {
  height: 150px;
  width: auto;
}

/* Links */
.navbar-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.navbar-links li a {
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
}

.navbar-links li a:hover {
  color: black;
}

/* Dropdown placeholder styling */
.dropdown {
  position: relative;
}

/* Button */
.navbar-button {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

.navbar-button:hover {
  opacity: 0.9;
}


.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
 /* res navbar */

 /* Hamburger Styling */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .navbar-logo img {
    height: 100px;
  }

  .navbar-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: white;
    padding: 10px 0;
    margin-top: 10px;
  }

  .navbar-links.show {
    display: flex;
  }

  .navbar-links li {
    text-align: center;
    padding: 10px 0;
  }

  .navbar-button {
    width: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu {
    display: none; /* disable hover for mobile */
  }

  .dropdown .dropdown-menu.show {
    display: block;
  }
}

/* Home Page */
/* Base: Home Section */
.home {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Slider Background Images */
.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  z-index: 0;
  transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
}

.slider-image.active {
  opacity: 1;
  transform: scale(1);
}

/* Dark Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  animation: fadeIn 2s ease-in-out;
}

/* Overlay Fade */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.4; }
}

/* Social Icons */
.social-icons {
  position: absolute;
  top: 2vh;
  right: 2vw;
  z-index: 2;
  display: flex;
  gap: 1.5vw;
  flex-wrap: wrap;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffd700;
}

/* Main Content */
.home-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 5vw;
  width: 100%;
  max-width: 1200px;
}

.home-content h1 {
  font-size: 4vw;
  line-height: 1.3;
  font-weight: 700;
  animation: fadeSlideIn 1.5s ease-out forwards;
}

.home-content h1 span {
  color: #ffd700;
  font-style: italic;
}

/* CTA Button */
.contact-btn {
  margin-top: 3vh;
  display: inline-block;
  background-color: #ffc107;
  color: #000;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  opacity: 0;
  animation: fadeInUp 1.8s ease-out forwards;
  animation-delay: 0.6s;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-btn:hover {
  animation: bounceBtn 0.6s ease-in-out;
  background-color: #e6ac00;
  color: #fff;
}

/* Key Animations */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ========== Responsive Breakpoints ========== */

/* Tablets & below */
@media (max-width: 1024px) {
  .home-content h1 {
    font-size: 5vw;
  }

  .contact-btn {
    font-size: 0.95rem;
    padding: 0.8rem 1.8rem;
  }

  .social-icons {
    top: 1rem;
    right: 1rem;
    gap: 1rem;
  }
}

/* Phones & below */
@media (max-width: 768px) {
  .home-content h1 {
    font-size: 6vw;
  }

  .contact-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }

  .social-icons {
    top: auto;
    bottom: 1.5rem;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    justify-content: center;
  }
}

/* Very small phones */
@media (max-width: 480px) {
  .home-content h1 {
    font-size: 7vw;
  }

  .contact-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.2rem;
  }

  .social-icons {
    font-size: 1.2rem;
    gap: 0.8rem;
  }
}




.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 60px auto;
  padding: 40px;
  flex-wrap: wrap;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  position: relative;
}

.feature-icon img {
  width: 100%;
  border-radius: 50%;
  border: 5px solid #fcd800;
  background: #2b2b78;
  padding: 10px;
}

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  color: #1a3c24;
  font-size: 20px;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  font-family: 'Poppins', sans-serif;
}

.read-more {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
}

.read-more::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: #2b2b78;
  margin-top: 4px;
}

.card-number {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 700;
  color: #e3e6e2;
  font-family: sans-serif;
}

.invest-banner {
  background-color: #FFD600;
  display: flex;
  height: 100px;
  margin-left: 150px;
  width: 80%;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #002333;
  box-sizing: border-box; /* good practice */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .invest-banner {
    margin-left: 50px;
    width: 90%;
    padding: 1.5rem;
    font-size: 1.5rem;
    height: auto;
    flex-wrap: wrap;
    gap: 10px;
  }

  .invest-text {
    flex-basis: 100%;
    text-align: center;
  }

  .contact-link {
    flex-basis: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .invest-banner {
    margin-left: 20px;
    width: 95%;
    padding: 1rem;
    font-size: 1.2rem;
  }

  .invest-text {
    font-size: 1.2rem;
  }

  .contact-link {
    font-size: 1.2rem;
  }
}
 /* who are we */
.who-we-are {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  padding: 4rem 2rem;
  background-color: #fff;
  flex-wrap: wrap;
}

.who-left {
  position: relative;
  max-width: 500px;
}

.main-img img {
  width: 100%;
  border-radius: 50% 50% 0 0;
  /* border: 4px solid #fff; */
  /* box-shadow: 0 0 0 3px #002f87, 0 0 0 6px #f4c118; */
}

.overlay-img {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  background: #f7f6ef;
  padding: 1rem;
  border-radius: 50%;
}

.overlay-img img {
  width: 100%;
  border-radius: 50%;
}

.who-right {
  max-width: 600px;
}

.heading .sub-title {
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.heading h2 {
  font-size: 2.5rem;
  font-family: 'Poppins', sans-serif;
  margin: 1rem 0;
  color: #043904;
}

.description {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 2rem;
}

.who-right .features {
  display: flex;
  gap: 2rem;
}

.about-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  transition: all 0.3s ease;
}

.about-section p {
  margin-bottom: 20px;
}

.about-section strong {
  color: #cc8a00;
  font-weight: 600;
}

.circle-divider {
  width: 60px;
  height: 5px;
  background: #cc8a00;
  border-radius: 50px;
  margin: 30px auto;
}
.about-section {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.feature-box {
  flex: 1;
  padding: 1.5rem;
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
}

.feature-box.yellow {
  background-color: #f4c118;
  color: #000;
}

.feature-box.blue {
  background-color: #1f2f86;
}

.feature-box i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}



/* products */
    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
    }

    .products-section {
      padding: 4rem 2rem;
      background-color: #fefdf8;
      text-align: center;
      overflow: hidden;
    }

    .icon {
      width: 40px;
      margin-bottom: 1rem;
    }

    .section-header .tagline {
      font-size: 0.9rem;
      color: #999;
      font-weight: 500;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: #062b07;
      font-weight: 600;
      margin-bottom: 2rem;
    }

    .slider-wrapper {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .product-list {
      display: flex;
      gap: 2rem;
      animation: scrollSlider 30s linear infinite;
      width: max-content;
    }

    .product-card {
      flex: 0 0 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .product-img {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      overflow: hidden;
      margin: 20px auto;
      box-shadow: 0 0 0 4px #fff;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-label {
      background-color: #2b3387;
      color: white;
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
      font-weight: 500;
      margin-top: -15px;
      border-radius: 0 0 4px 4px;
      position: relative;
      width: 100%;
      text-align: left;
    }

    .product-label::before {
      content: "";
      position: absolute;
      height: 20px;
      width: 5px;
      background: #f4c118;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 10px;
    }
 
    /* Continuous scroll animation */
     @keyframes scrollSlider {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    } 

    /* res */

    @media (max-width: 1024px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .product-card {
    flex: 0 0 200px;
  }

  .product-img {
    width: 200px;
    height: 200px;
  }

  .product-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 160px;
  }

  .product-img {
    width: 160px;
    height: 160px;
  }

  .product-label {
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding: 2rem 1rem;
  }

  .product-card {
    flex: 0 0 140px;
  }

  .product-img {
    width: 140px;
    height: 140px;
  }

  .product-label {
    font-size: 0.75rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
}



.testimonial-banner {
  background-color: #fefdf8;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.banner-text {
  display: flex;
  align-items: center;
  background-color: #fcd813;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #062b07;
  max-width: 80%;
  justify-content: space-between;
}

.view-more-btn {
  background-color: #2b3387;
  color: white;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  margin-left: 1rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
}

.testimonial-section {
  text-align: center;
  background-color: #fefdf8;
  padding: 3rem 2rem;
}

.section-header .tagline {
  font-size: 0.9rem;
  color: #999;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-header .tagline hr {
  width: 60%;
  margin: 5px auto 0 auto;
  border: 0;
  height: 2px;
  background-color: #999;
}

.section-header h2 {
  font-size: 3rem;
  color: #062b07;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 1rem;
}


/* reviews  */
    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f2f2f2;
    }

    /* Slider Container */
    .testimonial-slider {
      position: relative;
      overflow: hidden;
      width: 100%;
      padding: 40px 0;
      background: #fff;
    }

    /* Track: Flex row of cards */
    .slider-track {
      display: flex;
      gap: 20px;
      animation: slide 30s linear infinite;
    }

    /* Each card */
    .testimonial-card {
      flex: 0 0 30%; /* Show 3 cards on desktop */
      background: white;
      padding: 20px 25px;
      box-sizing: border-box;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }
    .testimonial-card:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    .testimonial-card h3 {
      margin-top: 0;
      margin-bottom: 8px;
      color: #2c3e50;
      font-size: 1.3rem;
    }
    .testimonial-card hr {
      width: 40px;
      border: 2px solid #ffc107;
      margin: 8px 0 16px;
    }
    .testimonial-card p {
      font-size: 1rem;
      line-height: 1.5;
      color: #555;
      max-height: 140px;
      overflow: hidden;
    }

    /* Animation for sliding cards left continuously */
    @keyframes slide {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-33.333% * 5)); /* Slide 5 cards width */
      }
    }

    /* Responsive */
    /* Tablet: show 2 cards */
    @media (max-width: 900px) {
      .testimonial-card {
        flex: 0 0 45%;
      }
      @keyframes slide {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-45% * 7)); /* Slide 7 cards width */
        }
      }
    }

    /* Mobile: show 1 card */
    @media (max-width: 600px) {
      .testimonial-card {
        flex: 0 0 90%;
        margin: 0 auto;
      }
      .slider-track {
        gap: 15px;
      }
      @keyframes slide {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-90% * 10)); /* Slide 10 cards width */
        }
      }
    }



.section-title {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

.subtitle {
  font-size: 0.85rem;
  color: #777;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.subtitle::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background-color: #aaa;
  margin: 0.3rem auto 0;
}

.main-title {
  font-size: 3rem;
  color: #002b0d;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Fredoka', sans-serif; /* Use similar playful font if available */
}

/* Responsive */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.2rem;
  }
}







.timeline-section {
  background-color: #f7f7f7;
  padding: 4rem 1rem;
}

.timeline-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.timeline-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.timeline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.timeline-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1rem;
}

.card-content h3 {
  margin-top: 0;
  font-size: 1.3rem;
  color: #333;
}

.card-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}
/* testimonial page button */.
.view-all-btn-wrapper {
  text-align: center;
  margin: 60px 0 30px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #1f4b2e, #345f3f);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.view-all-btn:hover {
  background: #fff;
  color: #1f4b2e;
  border: 2px solid #1f4b2e;
  transform: translateY(-3px);
}

.view-all-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}


@keyframes fadeUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}





.infrastructure-section {
  text-align: center;
  padding: 100px 20px 50px;
  position: relative;
}

.decorative-circles {
  position: absolute;
  top: 30px;
  left: 40px;
}

.circle {
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

.circle.small {
  width: 10px;
  height: 10px;
  background-color: #e6ddbb;
}

.circle.medium {
  width: 20px;
  height: 20px;
  border: 2px solid #c4a03b;
  background: transparent;
}

.section-title {
  margin-top: 40px;
}

.subheading {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 16px;
  position: relative;
}

.subheading .icon {
  width: 18px;
  height: auto;
  margin-right: 8px;
}

.subheading::after {
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  background-color: #888;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.main-heading {
  font-family: 'Fredoka', sans-serif;
  font-weight: bold;
  font-size: 50px;
  color: #052e17;
  margin-top: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;700&family=Open+Sans&display=swap');

.infrastructure {
  padding: 4rem 2rem;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  width: 70%;
  margin: auto;
  
}

   
  body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(to right, #6a11cb, #2575fc); /* New background gradient */
      color: #fff;
    }

    .container {
      max-width: 1100px;
      margin: 50px auto;
      padding: 0 20px;
    }

    .intro {
      text-align: center;
      font-size: 18px;
      max-width: 800px;
      margin: 0 auto 40px;
      line-height: 1.7;
      color: #0f0d0d;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .feature-box {
      background-color: #ffffff;
      border: none;
      border-radius: 12px;
      padding: 25px;
      transition: 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      
    }

    .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .feature-box h4 {
      font-size: 18px;
      color: #2575fc;
      margin-bottom: 10px;
    }

    .feature-box h4::before {
      content: "✔ ";
      color: #28a745;
      font-weight: bold;
    }

    .feature-box p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .intro {
        font-size: 16px;
      }

      .feature-box {
        padding: 20px;
      }

      .feature-box h4 {
        font-size: 16px;
      }

      .feature-box p {
        font-size: 14px;
      }
    }





.right {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.image-arch {
  position: relative;
  border-radius: 200px 200px 0 0;
  overflow: hidden;
  /* border: 3px solid #2e317c; */
  padding: 1.2rem;
  padding-bottom: 0;
}

.image-arch::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 0 0;
  border: 3px solid #f5d77d;
  transform: translate(15px, 15px);
  z-index: -1;
}

.image-arch img {
  height: 600px;
  width: 100%;
  display: block;
  border-radius: 200px 200px 0 0;
}

.year-label {
  position: absolute;
  width: 200px;
  bottom: 50px;
  left: 20px;
  background-color: #2e317c;
  color: #fff;
  padding: 1.2rem 2rem;
  border-radius: 20px;
  text-align: center;
  font-family: 'Fredoka', sans-serif;
}

.year-label h3 {
  font-size: 1.8rem;
  margin: 0;
}

.year-label p {
  margin: 0.4rem 0 0;
  font-size: 1.1rem;
  line-height: 1.4rem;
}


@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&display=swap');

body {
  font-family: 'Fredoka', sans-serif;
  background-color: #f9f7f0;
  margin: 0;
  padding: 40px;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

input, textarea {
  width: 100%;
  padding: 16px;
  background-color: #fcfbf6;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.full {
  grid-column: 1 / -1;
}

.contact-info {
  flex: 1;
  max-width: 450px;
  padding: 10px;
}

.subtitle {
  color: #aaa;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-info h1 {
  font-size: 48px;
  font-weight: bold;
  color: #02220c;
  margin-bottom: 30px;
  line-height: 1.2;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #ffc800;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}




.latest-news-container {
  text-align: center;
  margin: 60px auto;
  font-family: 'Fredoka', sans-serif;
}

.latest-news-subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #888;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid #ccc;
  display: inline-flex;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.icon-circle {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4c99c;
  border-radius: 50%;
  color: #d4c99c;
  font-size: 12px;
}

.latest-news-title {
  font-size: 48px;
}

.blog-card {
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background-color: white;
  display: flex;
  flex-direction: column;
  margin: 20px;
  transition: 0.3s;
}

.blog-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}

.blog-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #2d2d85;
  color: white;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: bold;
}

.blog-content {
  padding: 25px;
  font-family: 'Fredoka', sans-serif;
}

.blog-author {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #01210a;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.read-more {
  text-decoration: underline;
  color: #111;
  font-size: 15px;
}

.arrow-circle {
  width: 40px;
  height: 40px;
  background: #e7f7ed;
  color: black;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: #fff;
  padding: 40px;
}

.blog-section {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-card {
  width: 350px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.date-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #2b2d80;
  color: #fff;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 3px;
}

.card-content {
  padding: 20px;
}

.admin {
  color: #555;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.admin i {
  margin-right: 6px;
  color: #444;
}

.title {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #222;
}

.read-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.read-more span {
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  color: #0d0d0d;
}

.circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e6f7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
}



.footer {
  /*background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);*/
  background-color:"red";
  color: white;
  padding: 60px 80px 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  /*animation: fadeInUp 1s ease-in-out both;*/
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
   /*background: rgba(0, 0, 20, 0.4);*/
  z-index: -1;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;

}

/* Grid layout for the columns */
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  animation: fadeIn 1.2s ease-in-out;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #ffc107;
  border-radius: 2px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  animation: zoomIn 1s ease;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: white;
}

/* Link list items */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.footer-column ul li a {
  text-decoration: none; /* 🔥 Removes underline */
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-column ul li:hover a {
  color: #ffc107;
}

.footer-column ul li:hover {
  transform: translateX(6px);
}

.post {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.post img:hover {
  transform: scale(1.05);
}

/* Bottom Section */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: white;
}

/* Highlighted word */
.highlight {
  color: #ffc107;
  font-weight: 600;
}

/* Social icons */
.social-icons i {
  margin-left: 15px;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  color: #ccc;
}

.social-icons i:hover {
  color: #ffc107;
  transform: scale(1.1);
}




.footer.with-bg {
  position: relative;
  background-image: url('./images/footer6.jpg');
  background-size: cover;
  background-position: center;
  color: #fff; /* Keeps text readable */
  z-index: 1;
}

.footer.with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 20, 0.4);
  z-index: -1;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

/*res*/
/* res */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 40px 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .post {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 20px 15px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-desc {
    font-size: 14px;
  }

  .footer-column h3 {
    font-size: 18px;
  }

  .footer-column ul li a {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
  }

  .social-icons i {
    font-size: 16px;
  }
}





/* 🌟 Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}




.about-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.about-text {
  position: relative;
  text-align: center;
  z-index: 1;
  margin-top: 20px; /* Adjust this if you want top spacing */
}

.about-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

.about-text p {
  font-size: 1.2rem;
  margin-top: 10px;
}



.about-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
}

.about-section strong {
  font-weight: 600;
}

.circle-divider {
  width: 20px;
  height: 20px;
  border: 2px solid #d1b95d;
  border-radius: 50%;
  margin: 40px auto;
}



.table-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.info-table th,
.info-table td {
  border: 1px solid #e0e0e0;
  padding: 15px;
  vertical-align: top;
}

.info-table th {
  text-align: left;
  background-color: #f5f5f5;
  font-weight: 600;
  width: 30%;
}

.info-table td {
  background-color: #fff;
}



/* gallery */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffef9;
}

.gallery-section {
  padding: 60px 20px;
  text-align: center;
}

.gallery-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #1f4b2e;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 20px 20px 0 0;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .gallery-item img {
    height: 200px;
  }

  .gallery-title {
    font-size: 24px;
  }
}




* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  /* background: #fff; */
  padding: 40px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  width: 500px;
  /* background: #fff; */
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-content hr {
  margin-bottom: 15px;
  border: none;
  border-top: 1px solid #eee;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-footer a {
  text-decoration: underline;
  color: #000;
  font-size: 14px;
}

.circle-arrow {
  width: 35px;
  height: 35px;
  background-color: #e2fbe2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}



/* Navbar base */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  padding: 15px 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  /* font-family: 'Segoe UI', sans-serif; */
  position: 'sticky';
  top: 0;
  z-index: 999;
}

/* Logo */
.navbar-logo img {
  height: 150px;
  transition: transform 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.05);
}

/* Links container */
.navbar-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Individual link */
.navbar-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.navbar-links a:hover {
  background-color: #f0f0f0;
  color: #0033ff;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  border-radius: 8px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  transition: background 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #f7f7f7;
  color: #007bff;
}

/* CTA Button */
.navbar-button {
  background-color: #000000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.navbar-button:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .navbar-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
  }

  .navbar-button {
    margin-top: 10px;
  }
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Fredoka', sans-serif;
  /* background-color: #fff; */
}

.infrastructure {
  padding: 60px 80px;
  /* background: #fff; */
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #032a00;
  margin-bottom: 60px;
}

.infra-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.infra-content {
  flex: 1;
  max-width: 600px;
}

.infra-content p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #111;
  margin-bottom: 30px;
}

.infra-content h3 {
  color: #038003;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.infra-image-box {
  flex: 1;
  position: relative;
  max-width: 550px;
}

.main-image {
  width: 100%;
  border-radius: 160px 160px 0 0;
  border: 6px solid #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.tag-yellow {
  position: absolute;
  top: -25px;
  right: -30px;
  background-color: #ffd400;
  color: #000;
  padding: 25px 30px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.tag-blue {
  position: absolute;
  bottom: 50px;
  left: -20px;
  background-color: #2d2c7b;
  color: white;
  padding: 20px 30px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
}





.process-section {
  padding: 50px 80px;
  background-color: #fff;
}

.process-block {
  margin-bottom: 60px;
}

.process-block h3 {
  font-size: 30px;
  font-weight: 700;
  color: #038003;
  margin-bottom: 15px;
}

.process-block p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #111;
}




body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

.gallery-section {
  padding: 60px 80px;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.image-grid img {
  width: 1220px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.03);
}

/* certificate */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
}

.certificate-section {
  padding: 60px 20px;
  background: #fff;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  text-align: center;
  overflow: hidden;
  padding: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.certificate-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.certificate-card img:hover {
  transform: scale(1.05);
}

.certificate-card p {
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .certificate-section {
    padding: 40px 16px;
  }

  .certificate-card p {
    font-size: 14px;
  }
}


/* ============= ANIMATION ENHANCEMENTS ============= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* ============= SECTION ENTRANCE ANIMATIONS ============= */
.home-content, .features, .invest-banner, 
.who-we-are, .products-section, .testimonial-section,
.timeline-section, .infrastructure, .contact-container,
.blog-section, .footer-container {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.features { animation-delay: 0.2s; }
.invest-banner { animation-delay: 0.4s; }
.who-we-are { animation-delay: 0.6s; }
.products-section { animation-delay: 0.8s; }
.testimonial-section { animation-delay: 1s; }
.timeline-section { animation-delay: 1.2s; }
.infrastructure { animation-delay: 1.4s; }
.contact-container { animation-delay: 1.6s; }
.blog-section { animation-delay: 1.8s; }
.footer-container { animation-delay: 2s; }

/* ============= INTERACTIVE ELEMENT ANIMATIONS ============= */
/* Buttons */
.contact-btn, .navbar-button, .view-more-btn, 
.who-we-are-btn, .read-more {
  transition: all 0.3s ease;
  transform-origin: center;
}

.contact-btn:hover, .navbar-button:hover, 
.view-more-btn:hover, .who-we-are-btn:hover,
.read-more:hover {
  animation: pulse 0.5s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: translateY(-3px);
}

/* Cards */
.feature-card, .blog-card, .product-card, 
.certificate-card, .card {
  transition: all 0.4s ease;
  transform: perspective(1000px) rotateX(0);
}

.feature-card:hover, .blog-card:hover, 
.product-card:hover, .certificate-card:hover,
.card:hover {
  transform: perspective(1000px) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  z-index: 10;
}

/* Images */
.main-img img, .product-img img, 
.blog-image img, .certificate-card img,
.image-grid img {
  transition: all 0.5s ease;
  filter: brightness(0.95);
}

.main-img:hover img, .product-img:hover img, 
.blog-image:hover img, .certificate-card:hover img,
.image-grid:hover img {
  filter: brightness(1.05);
  transform: scale(1.02);
}

/* Social Icons */
.social-icons a {
  transition: all 0.3s ease;
}

.social-icons a:hover {
  animation: float 1.5s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(43, 43, 131, 0.4);
}

/* Feature Icons */
.feature-icon img {
  transition: all 0.4s ease;
}

.feature-icon:hover img {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(43, 43, 131, 0.3);
}

/* Tagline Animation */
.tagline {
  position: relative;
  overflow: hidden;
}

.tagline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2b2b83;
  transition: width 0.5s ease;
}

.tagline:hover::after {
  width: 100%;
}

/* Dropdown Enhancement */
.dropdown-menu {
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
  transform: translateY(0);
  opacity: 1;
}

/* Product Label Animation */
.product-label {
  transition: all 0.3s ease;
}

.product-card:hover .product-label {
  background-color: #1a1a5a;
  transform: translateY(-5px);
}

/* Timeline Enhancements */
.timeline-box {
  transition: all 0.4s ease;
}

.timeline-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.timeline-image {
  transition: all 0.4s ease;
}

.timeline-image:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Infrastructure Tag Animation */
.tag-yellow, .tag-blue, .year-label {
  transition: all 0.4s ease;
}

.tag-yellow:hover, .tag-blue:hover, .year-label:hover {
  animation: pulse 1s ease infinite;
  transform: scale(1.05);
}

/* Contact Form Input Animation */
input, textarea {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

input:focus, textarea:focus {
  border-color: #2b2b83;
  box-shadow: 0 0 0 3px rgba(43, 43, 131, 0.2);
  transform: translateY(-3px);
}

/* Navbar Link Animation */
.navbar-links li a {
  position: relative;
  transition: color 0.3s ease;
}

.navbar-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2b2b83;
  transition: width 0.3s ease;
}

.navbar-links li a:hover::after {
  width: 100%;
}

/* Footer Animation */
.footer-column ul li {
  transition: all 0.3s ease;
}

.footer-column ul li:hover {
  transform: translateX(5px);
  color: #f5b342;
}

/* Process Block Animation */
.process-block {
  transition: all 0.4s ease;
}

.process-block:hover {
  transform: translateY(-5px);
  padding-left: 10px;
  border-left: 3px solid #038003;
}

/* Gallery Hover Effect */
.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(43, 43, 131, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Certificate Card Enhancement */
.certificate-card {
  position: relative;
  overflow: hidden;
}

.certificate-card::after {
  content: 'View Certificate';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  background: rgba(43, 43, 131, 0.85);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  opacity: 0;
  transition: all 0.4s ease;
  font-weight: bold;
}

.certificate-card:hover::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* Certificate hover */
.certificate-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.certificate-card::after {
  content: 'View Certificate';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  background: rgba(43, 43, 131, 0.85);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  opacity: 0;
  transition: all 0.4s ease;
  font-weight: bold;
}

.certificate-card:hover::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* Modal styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  position: relative;
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
}

.modal-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-button {
  position: absolute;
  top: 8px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

.contact-info-box {
  padding: 40px;
  background: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: auto;
  animation: fadeInUp 1s ease forwards;
}

.subtitle {
  color: #4a4a4a;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.heading {
  font-size: 32px;
  color: #222;
  margin-bottom: 30px;
  line-height: 1.3;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.icon-circle {
  background: #1e3a8a;
  color: #fff;
  width: 45px;
  height: 45px;
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  margin-right: 15px;
}

.label {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
  color: #1e3a8a;
}

.phone-number, .address {
  margin: 0 0 5px;
  font-size: 16px;
  color: #333;
}

.contact-link {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #e65100;
}

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}





.contact-link {
  margin-left: 15px;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #ffc107;
}


/* our product  */

.rice-info {
  padding: 60px 20px;
  background: #f9f9f9;
  /* font-family: 'Poppins', sans-serif; */
  color: #222;
  font-family: 'Josefin Sans', sans-serif;

}

.rice-info .container {
  max-width: 1100px;
  margin: 0 auto;
}


.spec-table-section {
  font-family: 'Josefin Sans', sans-serif;
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 16px;
}

.spec-table thead th {
  font-weight: 600;
  font-size: 20px;
  padding: 20px 10px;
  border: 1px solid #ddd;
}

.spec-table td {
  padding: 18px 10px;
  border: 1px solid #ddd;
  font-weight: 400;
}


body {
  font-family: 'Josefin Sans', sans-serif;
  background: #fff;
  margin: 0;
  padding: 20px;
}

.rice-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.sidebar {
  background-color: #2f3d8d;
  color: white;
  padding: 30px 20px;
  border-radius: 4px;
  min-width: 230px;
}

.sidebar h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  font-size: 14px;
  padding: 8px 0;
  font-weight: 500;
}

.sidebar a {
  text-decoration: none;
}


.rice-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.rice-card {
  width: 250px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
 

}

.rice-card:hover {
  transform: translateY(-5px);
}

.rice-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-head {
  background-color: #fff7dd;
  padding: 10px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
}

.card-subhead {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  text-decoration: none;

}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  padding: 40px;
  color: #333;
}

.cooking-section {
  max-width: 800px;
  margin: auto;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: #2c3e50;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #444;
}

.icon {
  margin-right: 8px;
}

ul, ol {
  padding-left: 24px;
  margin: 0;
}

ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}

section {
  margin-bottom: 32px;
}

.ingredients, .steps {
  background-color: #f4f7fa;
  padding: 16px;
  border-left: 4px solid #007BFF;
  border-radius: 6px;
}

.ingredients ul, .steps ol {
  margin-top: 8px;
}

strong {
  color: #007BFF;
}



.health-benefits {
  background-color: #f9fafb;
  border-left: 4px solid #28a745;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  justify-content: center;
  margin-left: 270px;
}

.health-benefits h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  
}

.health-benefits .icon {
  font-size: 1.4rem;
  margin-right: 10px;
}

.health-benefits ul {
  list-style: none;
  padding-left: 0;
}

.health-benefits li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  color: #444;
}

.health-benefits .check {
  position: absolute;
  left: 0;
  color: #28a745;
  font-size: 1.2rem;
  top: 2px;
}

.health-benefits strong {
  color: #000;
}





.health-benefits {
  background: #f9fafb;
  border-left: 4px solid #2ecc71;
  padding: 24px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: 'Segoe UI', sans-serif;
}

.health-benefits h2 {
  color: #2c3e50;
  font-size: 1.6rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}

.health-benefits .icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.health-benefits ul {
  list-style: none;
  padding-left: 0;
}

.health-benefits li {
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.health-benefits .check {
  position: absolute;
  left: 0;
  top: 3px;
  color: #2ecc71;
  font-size: 1.2rem;
}

.health-benefits strong {
  color: #1a1a1a;
  font-weight: 600;
}







.accreditation-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.accreditation-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}

.accreditation-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.accreditation-logos img {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s;
}

.accreditation-logos img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .accreditation-logos {
    gap: 20px;
  }

  .accreditation-logos img {
    max-width: 90px;
  }
}






.special-propositions {
  padding: 60px 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.special-propositions h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
}

.props-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.prop-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: #f3f3f3;
  border-left: 5px solid #007BFF;
  border-radius: 8px;
  text-align: left;
}

.prop-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.prop-card strong {
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .prop-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .prop-card img {
    margin-bottom: 10px;
  }
}
/* cliets testimonial */

  .testimonial-header {
    text-align: center;
    background-color: #fffef9;
    padding: 60px 20px 30px;
  }

  .testimonial-header-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .testimonial-icon-wrapper {
    background-color: #ffd600;
    display: inline-block;
    padding: 16px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }

  .testimonial-icon {
    width: 32px;
    height: 32px;
    filter: grayscale(100%);
  }

  .testimonial-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .testimonial-title {
    font-size: 36px;
    color: #1f4b2e;
    font-weight: 800;
    margin: 0;
  }

  @media (max-width: 768px) {
    .testimonial-title {
      font-size: 28px;
    }

    .testimonial-subtitle {
      font-size: 12px;
    }

    .testimonial-icon-wrapper {
      padding: 12px;
    }

    .testimonial-icon {
      width: 24px;
      height: 24px;
    }
  }

 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #fff;
      color: #333;
      padding: 40px 20px;
    }

    .testimonials {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 60px;
    }

    .testimonial {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
    }

    .testimonial.reverse {
      flex-direction: row-reverse;
    }

    .testimonial-image {
      flex: 1 1 250px;
      text-align: center;
    }

    .testimonial-image img {
      width: 220px;
      height: auto;
      border-radius: 50%;
      /* background-color: #FFD600; */
      padding: 10px;
      object-fit: cover;
      /* border: 5px solid #0039a3; */
    }

    .testimonial-content {
      flex: 2 1 500px;
    }

    .testimonial-content i {
      font-size: 30px;
      color: #f8b400;
    }

    .testimonial-content h2 {
      font-size: 26px;
      margin: 10px 0;
      color: #1f4b2e;
    }

    .testimonial-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .testimonial-content .author {
      font-style: italic;
      color: #1f4b2e;
    }

    @media (max-width: 768px) {
      .testimonial {
        flex-direction: column;
      }
      .testimonial.reverse {
        flex-direction: column;
      }

      .testimonial-image img {
        width: 180px;
      }

      .testimonial-content h2 {
        font-size: 22px;
      }
    }
