* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

/* Navigation Styles */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav h2 {
  color: #2ecc71;
  font-size: 24px;
}

.nav-sub {
  color: #333;
  font-weight: normal;
}

.navitems {
  display: flex;
  gap: 2rem;
}

.navitems a {
  color: #333;
  font-weight: bold;
  position: relative;
  transition: color 0.3s;
}

.navitems a:hover {
  color: #2ecc71;
}

.navitems a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #2ecc71;
  transition: width 0.3s;
}

.navitems a:hover::after {
  width: 100%;
}

/* Logo styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.nav-logo {
  height: 50px; /* Adjust this value based on your needs */
  width: auto;
  object-fit: contain;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./images/WhatsApp\ Image\ 2025-02-25\ at\ 12.01.30_6877d36a.jpg")
      center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 150px 20px;
  height: 100vh; /* Full screen height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-contain {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-titleSpan {
  color: #2ecc71;
}

.hero-subtext {
  font-size: 1.6rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #0e9757;
}

/* About Us Section */
.about-section,
.services-section,
.products-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-container,
.services-container,
.products-section .grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-title,
.section-title,
.products-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: bold;
}

/* About Content Layout */
.about-section {
  background: #f9f9f9;
}

.about-content {
  display: flex;
  gap: 4rem;
}

.about-image {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.about-description {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.about-text {
  margin-bottom: 2rem;
}

.about-text h3 {
  margin-top: 0;
}

/* Description Section */
.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2ecc71;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 20px;
  color: #555;
  text-align: justify;
}

/* Standardize paragraph text sizes */
.mission-block p,
.service-card p,
.about-description p {
  font-size: 16px; /* Standardize font size */
  line-height: 1.6; /* Improve readability */
  margin-bottom: 1rem;
}

/* Mission and Vision blocks layout */
.mission-blocks-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.mission-block {
  flex: 1;
  padding: 1.5rem;
  background-color: #f8f9fa;
  transition: all 0.3s ease; /* Smooth transition for hover effect */
}

/* Default colors */
.mission-block h4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #333;
  transition: color 0.3s ease;
}

.mission-block p {
  margin: 0;
  color: #555;
  transition: color 0.3s ease;
}

.mission-icon {
  color: #2ecc71;
}
.mission-icon i:hover {
  color: white;
}

/* Hover effects */
.mission-block:hover {
  background-color: #2ecc71;
  transform: translateY(-5px); /* Optional: slight lift effect */
}

.mission-block:hover h4,
.mission-block:hover p,
.mission-block:hover .mission-icon  {
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2rem;
  }

  .about-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
  }

  .about-image img {
    position: static;
    height: auto;
  }

  .mission-blocks-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Services Section Styles */
.services-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-content {
  text-align: justify;
}

.service-content h3 {
  color: #2ecc71;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-content p {
  color: #666;
  line-height: 1.6;
}

/* Product Section Styles */
.products-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 2rem 0;
}

.products-section > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.products-section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.products-section .description {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid layout */
.products-section .grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  aspect-ratio: 1 / 1;
}

/* Media content styling */
.media-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.media-content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Remove border radius from product images/media */
.media-wrapper img,
.media-wrapper video {
  border-radius: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
  .products-section .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  .products-section > * {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .products-section .description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }

  .media-container {
    flex-direction: column;
  }

  .nav-logo {
    height: 32px; /* Slightly smaller on mobile */
  }

  .about-section,
  .services-section,
  .products-section {
    padding: 60px 0;
  }

  .products-section .grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 3rem 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }
}

/* Video container */
.video-container {
  position: relative;
  width: 80%;
  max-width: 400px;
  overflow: hidden;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 9 / 16;
  height: auto;
  max-height: 300px;
}

/* Video in portrait mode */
video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-title {
  text-align: center;
  margin-bottom: 10px;
  color: #333;
  font-size: 2.2rem;
}

.contact-subtitle {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  font-size: 1.2rem;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-form,
.contact-details {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3,
.contact-details h3 {
  margin-bottom: 20px;
  color: #2ecc71;
  font-size: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2ecc71;
  outline: none;
}

.form-group textarea {
  resize: none;
}

.contact-btn {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-btn:hover {
  background-color: #0d725a;
}

.contact-details {
  background-color: white;
  padding: 30px;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-details p {
  margin-bottom: 25px;
  color: #666;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  margin-right: 15px;
  width: 40px;
  height: 40px;
  background-color: #e6f7f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
  font-size: 1.2rem;
}

.contact-text h4 {
  margin-bottom: 5px;
  color: #333;
}

.contact-text p {
  margin-bottom: 0;
  color: #666;
}

/* Footer Styles */
.footer {
  background-color: #2f3e46;
  color: white;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-about,
.footer-features,
.footer-social,
.footer-subscribe {
  flex: 1;
  min-width: 200px;
}

.footer-features li:hover {
  color: #2ecc71;
}

.footer h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #2ecc71;
}

.footer ul li {
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #2ecc71;
}

.search {
  display: flex;
}

.search input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.search input:focus {
  border-color: #2ecc71;
  outline: none;
}

.btn {
  background-color: #2ecc71;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .navitems {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navitems.show {
    display: flex;
  }

  .navitems a {
    padding: 0.5rem 1rem;
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image,
  .about-text {
    width: 100%;
  }

  .about-image img {
    max-height: none;
  }

  .mission-block {
    flex: 100%;
  }
}

/* Active nav link styles */
.navitems a {
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navitems a.active {
  color: #2ecc71; /* Change this to match your website's accent color */
}

/* Underline effect for active link */
.navitems a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2ecc71; /* Change this to match your website's accent color */
  transition: transform 0.3s ease;
}

/* Optional: Hover effect for non-active links */
.navitems a:hover:not(.active) {
  color: #2ecc71; /* Change this to a slightly darker shade of your accent color */
}

/* Remove border radius from all elements in products section */
.products-section .grid-item,
.products-section .media-wrapper,
.products-section .media-content,
.products-section img,
.products-section video {
  border-radius: 0;
}

/* Ensure no overflow with sharp corners */
.products-section .media-wrapper {
  overflow: hidden;
}
