/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

* {
  margin: 0;

  padding: 0;

  box-sizing: border-box;

  scroll-behavior: smooth;

  scroll-padding-top: 2rem;

  list-style: none;

  text-decoration: none;

  font-family: "Poppins", sans-serif;
}

:root {
  --text-color: #000000;

  --main-color: #83b735;
}

section {
  padding: 20px 3%;
}

header {
  height: 104px; 
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  padding: 0 20px; 
  box-sizing: border-box; 
  background-color: #fff2ab;
  
}

header .logo img {
  max-height: 100px;
  height: 180px;
  width: auto;
  margin-top: 5px;
  margin-left: 20px;

}


.logo {
  font-size: 1.2rem;

  font-weight: 900;

  color: var(--text-color);
}

.logo span {
  color: var(--main-color);
}


/* Style for active navbar link */
.navbar a.active {
  color: #5dae24;
 
  border-radius: 5px;
 
  text-decoration: none;
}

/* Style for mobile navbar menu */
.navbar.navbar-active {
  display: flex; /* Ensure navbar displays when active */
  flex-direction: column;
  background-color: #ffffff;
  position: absolute;
  top: 60px; /* Adjust according to header height */
  width: 100%;
  left: 0;
  padding: 10px;
}


.navbar {
  display: flex;

  justify-content: space-around;

  list-style: none;
}

.navbar a {
  font-size: 1rem;

  padding: 10px 20px;

  font-weight: 500;

  color: var(--text-color);
}

.navbar a:hover {
  color: var(--main-color);
}

/* Styles for mobile view */

/* Mobile view */

/* Initially, hide the navbar on mobile */

#menu-icon {
  font-size: 2rem;

  cursor: pointer;

  display: none;
}

/* Pop-up Modal Styling */
.popup-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Transparent background */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
}

.popup-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: black;
  cursor: pointer;
}

.about-section {
  padding: 0px 20px;
  background-color: #f9f9f9;
}

.about-content {
   display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}

.about-image {
  flex: 1; /* Allows the image section to take up 1 part of available space */
  max-width: 500px; /* Limits the image width for better alignment */
}

.about-image img {
  width: 100%; /* Ensures the image is responsive */
  max-height: 600px; /* Limits the height of the image */
  object-fit: cover; /* Ensures the image maintains its aspect ratio while filling the container */
  border-radius: 10px; /* Optional: Adds rounded corners */
}


.about-text {
  flex: 2; /* Allows the text section to take up 2 parts of available space */
  max-width: 1025px; /* Limits the width of the text content */
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}




/* Home section */
/* Home section */
/* Home Section Styling */

 /* Video container styling */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire container */
}

/* Home content styling */
.home-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent overlay */
}

.home-text h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
  .home-text h2 {
      font-size: 1.8rem;
  }
}




@keyframes rotate {
  from {
      transform: rotate(0deg);
  }
  to {
      transform: rotate(360deg);
  }
}

/* Gradient Text Effect */
.gradient-text {
 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 2.5rem;
  margin: 0;
}

/* Loading Text Animation */
.loading-text {
  display: inline-block;
  font-size: 4rem;
  color: #ff6363;
  animation: loading 1.5s steps(4, end) infinite; /* Simulates typing effect */
  font-weight: bold;
}

@keyframes loading {
  from {
      width: 0;
  }
  to {
      width: 100%;
  }
}

/* Sub Text */
.sub-text {
  font-size: 1.8rem;
  font-weight: 300;
  color: #43ffd1;
  margin-top: 12.5rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .rotating-wheel {
      width: 150px;
      height: 150px;
  }

  .gradient-text {
      font-size: 2rem;
  }

  .sub-text {
      font-size: 1.2rem;
  }
}

@media screen and (max-width: 480px) {
  .rotating-wheel {
      width: 100px;
      height: 100px;
  }

  .gradient-text {
      font-size: 1.8rem;
  }

  .sub-text {
      font-size: 1rem;
  }
}

/* Semi-transparent overlay for better text readability */




/* Circle indicator styling */
.image-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 2;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #e631ca;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}



/* Responsive styling */
@media (max-width: 768px) {
  .home-text h1 {
    font-size: 1rem;
  }

  .home-text p {
    font-size: 0.8rem;
  }

  .dot {
    height: 8px;
    width: 8px;
  }
}

/* Responsive styling */
@media (max-width: 768px) {
  .home-text h1 {
    font-size: 1rem;
  }

  .home-text p {
    font-size: 0.8rem;
  }

  .dot {
    height: 8px;
    width: 8px;
  }
}

.btn {
  padding: 10px 14px;

  background: var(--main-color);

  color: #fff;

  border-radius: 0.3rem;

  font-size: 14px;
}

.btn:hover {
  background: #8fc53d;
}

.heading {
  text-align: center;
}

.heading span {
  font-size: 14px;

  font-weight: 500;

  color: var(--main-color);

  text-transform: uppercase;
}

.shop-container,
.new-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, auto));

  gap: 1rem;

  margin-top: 2rem;
}

.box {
  position: relative;

  box-shadow: 1px 4px 4px rgb(0, 0, 0, 0.1);

  border-radius: 44px 4px 4px 4px;
}

.box .box-img {
  width: 100%;

  height: 200px;

  overflow: hidden;
}

.box .box-img img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: center;
}

.box .box-img img:hover {
  transform: scale(1.1);

  transition: 0.5s;
}

.title-price {
  display: flex;

  justify-content: space-between;

  padding: 12px;
}

.title-price h3 {
  font-size: 1rem;

  font-weight: 600;
}

.box span {
  font-size: 1.1rem;

  font-weight: 500;

  padding-left: 12px;

  color: var(--main-color);
}

.stars .bx {
  color: var(--main-color);
}

.box .bx-cart {
  position: absolute;

  bottom: 0;

  right: 0;

  padding: 7px;

  font-size: 20px;

  color: #fff;

  border-radius: 4px 0 4px 0;

  background: var(--main-color);
}

.box .bx-cart:hover {
  background: #8fc53d;
}

.new-container .box {
  border-radius: 4px;
}

.new-container .box .box-img {
  border-radius: 4px;
}

.about {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1rem;
}

.about-img img {
  width: 93%;

  border-radius: 10px;

  object-fit: cover;

  height: 249px;
}

.about-text span {
  font-size: 14px;

  font-weight: 500;

  text-transform: uppercase;

  color: var(--main-color);
}

.about-text p {
  font-size: 0.938rem;

  margin: 0.5rem 0 1.4rem;
}

.brands-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(100px, auto));

  align-items: center;

  justify-content: space-between;

  gap: 1rem;

  margin-top: 2rem;
}

.brands-container img {
  width: 100px;

  filter: grayscale(1);
}

.brands-container img:hover {
  width: 100px;

  filter: grayscale(0);
}

.newsletter {
  display: flex;

  flex-direction: column;

  align-items: center;

  background-image: url(img/bg.jpg);

  background-repeat: no-repeat;

  background-size: cover;

  background-position: center;
}

.newsletter h2 {
  color: #fff;
}

.news-box {
  display: flex;

  align-items: center;

  margin-top: 2rem;
}

.news-box input {
  width: 260px;

  height: 44px;

  border: none;

  outline: none;

  background: #fff;

  padding: 10px;
}

.news-box .btn {
  height: 44px;

  padding: 11px;

  border-radius: 0;

  font-weight: 500;

  text-transform: uppercase;
}

.footer {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(240px, auto));

  gap: 1rem;

  background-color: white;
}

.footer-box h2 {
  font-size: 1.2rem;

  font-weight: 600;

  margin-top: 20px;
}

.footer-box span {
  color: var(--main-color);
}

.footer-box p {
  font-size: 00.938rem;

  margin-bottom: 10px;
}

.social {
  display: flex;

  align-items: center;
}

.social a {
  font-size: 24px;

  margin-right: 10px;

  color: var(--text-color);
}

.social a:hover {
  color: var(--main-color);
}

.footer-box h3 {
  font-weight: 500;

  margin-top: 20px;
}

.footer-box li a {
  color: var(--text-color);
}

.footer-box li a:hover {
  color: var(--main-color);
}

.contact {
  padding: 0px 0;
}

.container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 0 15px;
}

.heading {
  margin-bottom: 50px;
}

#name {
  margin-bottom: 15px;
}

.heading h2 {
  font-size: 36px;

  font-weight: 700;

  margin-bottom: 10px;

  margin-top: 60px;
}

.heading h2 span {
  color: #ff7f00;
}

.heading p {
  color: #6c757d;

  font-size: 16px;
}

.row {
  display: flex;

  flex-wrap: wrap;
}

.col-md-5,
.col-md-7 {
  padding: 15px;
}

/*.col-md-5 {*/
/*  flex: 0 0 41.66667%;*/

/*  max-width: 41.66667%;*/
/*}*/

.col-md-7 {
  flex: 0 0 58.33333%;

  max-width: 58.33333%;
}

.title h3 {
  font-size: 24px;

  font-weight: 600;

  margin-bottom: 15px;
}

.title p {
  color: #6c757d;
}

.content .info {
  margin-bottom: 20px;
}

.content .info i {
  font-size: 24px;

  color: #ff7f00;

  margin-right: 10px;

  vertical-align: middle;
}

.content .info h4 {
  display: inline-block;

  vertical-align: middle;

  margin: 0;

  font-size: 16px;
}

.form-control {
  width: 100%;

  padding: 10px;

  margin-bottom: 15px;

  border: 1px solid #ddd;

  border-radius: 5px;
}

textarea.form-control {
  resize: vertical;
}

.btn {
  background-color: #ff7f00;

  color: #fff;

  border: none;

  padding: 15px;

  font-size: 16px;

  border-radius: 5px;

  cursor: pointer;
}

.btn:hover {
  background-color: #e66b00;
}

.text-center {
  text-align: center;
}

.contact-placeholder {
  padding: 50px 0;

  text-align: center;

  background-color: #24ff9d73;
}

.contact-placeholder .heading {
  margin-bottom: 20px;
}

.contact-placeholder-container {
  max-width: 600px;

  margin: 0 auto;

  text-align: center;
}

.contact-placeholder-container p {
  font-size: 1.2em;

  margin-bottom: 20px;
}

.contact-placeholder-container .btn {
  background-color: #333;

  color: #fff;

  padding: 10px 20px;

  text-decoration: none;

  border-radius: 5px;

  transition: background-color 0.3s ease;
}

.contact-placeholder-container .btn:hover {
  background-color: #555;
}

.contact-form {
  display: flex;

  justify-content: center;

  align-items: center;

  padding: 20px;

  background: #f9f9f9;

  border-radius: 10px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contact-form {
  width: 100%;

  max-width: 600px;
}

#contact-form label {
  display: block;

  font-size: 0.9rem;

  margin-bottom: 5px;

  color: #333;
}

#contact-form input,
#contact-form textarea {
  width: 100%;

  padding: 10px;

  margin-bottom: 15px;

  border: 1px solid #ccc;

  border-radius: 5px;

  font-size: 1rem;

  font-family: "Poppins", sans-serif;
}

#contact-form .btn {
  width: 100%;

  padding: 10px 0;

  background: var(--main-color);

  color: #fff;

  border: none;

  border-radius: 5px;

  cursor: pointer;

  font-size: 1rem;

  text-transform: uppercase;
}

#contact-form .btn:hover {
  background: #8fc53d;
}

@media (max-width: 768px) {
  .contact-form {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  #contact-form {
    width: 90%;
  }

  #contact-form label {
    font-size: 0.85rem;
  }

  #contact-form input,
  #contact-form textarea {
    padding: 8px;

    font-size: 0.9rem;
  }

  #contact-form .btn {
    padding: 8px 0;

    font-size: 0.9rem;
  }
}

.copyright {
  padding: 20px;

  text-align: center;

  background-color: #cef9d7f0;
}

/* Making Responsive */

@media (max-width: 991px) {
  header {
    padding: 18px 4%;
  }

  section {
    padding: 0px 4%;
  }
}

@media (max-width: 881px) {
  .home-text h1 {
    font-size: 2rem;
  }

  .shop-container,
  .new-container {
    grid-template-columns: repeat(auto-fit, minmax(218px, auto));
  }
}

@media (max-width: 768px) {
  header {
    padding: 11px 4%;
  }

  #menu-icon {
    display: initial;
  }

  header .navbar {
    position: absolute;

    top: 100px;

    left: 0;

    right: 0;

    display: none;

    flex-direction: column;

    background: #fff;

    box-shadow: 0 4px 4px rgb(0 0 0 /10%);
     z-index: 1000;
    transition: 0.2s ease;

    text-align: center;
  }

  .navbar a {
    padding: 1.5rem;

    display: block;

    height: 6px;
  }

  .navbar.active {
    top: 100%;
  }

  .navbar.navbar-active {
    display: flex !important; /* Force it to display */
      margin-top: 44px;
    flex-direction: column;
  }

  .navbar a:hover {
    color: #fff;

    background: var(--main-color);
  }

  .about {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .about-img {
    padding-top: 1rem;

    order: 2;
  }
}

@media (max-width: 491px) {
  .home-text h1 {
    font-size: 1rem;
  }

  .shop-container,
  .new-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  }

  .box .box-img {
    height: 155px;
  }

  .news-box input {
    width: 180px;
  }

  .about-text h2 {
    font-size: 1.2rem;
  }
}

/* Contact Section */

.contact-container {
  /* display: flex; */

  /* max-width: 1200px; */

  margin: 0 auto;

  padding: 20px;
}

.contact-heading {
  flex: 0 0 30%;

  padding: 20px;

  background-color: #4caf50;

  color: #fff;
}

.contact-heading span {
  font-size: 24px;

  display: block;

  margin-bottom: 10px;
}

.contact-heading h2 {
  font-size: 36px;

  margin-bottom: 20px;
}

.contact-heading p {
  font-size: 18px;

  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;

  padding: 10px 20px;

  background-color: #fff;

  color: #4caf50;

  text-decoration: none;

  border-radius: 5px;

  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #ddd;
}

.contact-section-content {
  flex: 0 0 100%;

  padding: 20px;

  /* display: flex; */

  /* align-items: center;

      justify-content: space-between; */
}

.contact-section-map iframe {
  width: 100%;

  height: 320px;

  border: none;
}

/* General Styles */

body {
  font-family: Arial, sans-serif;

  margin: 0;

  padding: 0;

  background-color: #f8f8f8;

  color: #333;
}

.irrigation-container {
  max-width: 1200px;

  margin: 0 auto;

  padding: 20px;

  background-color: #e2e2e2;
}

.irrigation-container2 {
  max-width: 1200px;

  margin: 0 auto;

  padding: 20px;

  background-color: #cd979791;
}

/* Header Styles */

.irrigation-header {
  background-color: whitesmoke;

  color: #fff;

  padding: 60px 0;

  text-align: center;
}

.irrigation-header h1 {
  margin: 0;

  font-size: 48px;
}

.irrigation-header p {
  margin: 10px 0 0;

  font-size: 18px;
}

/* About Company Styles */

.about-us-section {
  background-color: white;

  padding: 60px 0;

  text-align: center;

  margin-top: 42px;
}

.irrigation-about-company h2 {
  font-size: 36px;

  margin-bottom: 20px;

  font-family: "Poppins", sans-serif;
}

.irrigation-about-company p {
  font-size: 16px;

  max-width: 800px;

  margin: 0 auto;

  font-family: "Poppins", sans-serif;
}

/* Team Section Styles */

.irrigation-team {
  background-color: white;

  padding: 0px 0;

  text-align: center;
}

.irrigation-team h2 {
  font-size: 36px;

  margin-bottom: 20px;
}

.irrigation-team-members {
  display: flex;

  justify-content: center;

  gap: 40px;
}

.irrigation-team-member {
  background-color: #fff;

  padding: 20px;

  border-radius: 10px;

  box-shadow: 0 0 10px rgb(66 73 217);

  text-align: center;

  max-width: 250px;
}

.irrigation-team-member img {
  border-radius: 50%;

  width: 100px;

  height: 100px;

  margin-bottom: 10px;
}

.irrigation-team-member h3 {
  font-size: 24px;

  margin: 10px 0 5px;
}

.irrigation-team-member p {
  font-size: 16px;

  color: #777;
}

/* Values Section Styles */

.irrigation-values {
  background-color: #fff;

  padding: 60px 0;

  text-align: center;
}

.irrigation-values h2 {
  font-size: 36px;

  margin-bottom: 20px;
}

.irrigation-values-list {
  display: flex;

  justify-content: center;

  gap: 40px;
}

.irrigation-value {
  background-color: white;

  padding: 20px;

  border-radius: 10px;

  max-width: 300px;
}

.irrigation-value h3 {
  font-size: 24px;

  margin-bottom: 10px;
}

.irrigation-value p {
  font-size: 16px;

  color: #777;
}

/* Footer Styles */

.irrigation-footer {
  background-color: #333;

  color: #fff;

  padding: 20px 0;

  text-align: center;
}

.irrigation-footer p {
  margin: 0;

  font-size: 14px;
}

.irrigation-about-content {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.irrigation-about-image {
  flex: 1;

  margin-right: 20px;
}

.irrigation-about-image img {
  max-width: 100%;

  height: auto;

  border-radius: 10px;

  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* service */

.services-section {
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.services-section h2 {
  font-size: 2rem;
  text-align: center; /* Center the heading */
  color: #333;
  margin-bottom: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  margin-top: 42px;
}

/* Center the heading with an underline */
.services-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #007bff;
  margin: 0.5rem auto;
  border-radius: 2px;
}

.services-container {
  display: flex;
  justify-content: center; /* Center the cards container */
  flex-wrap: wrap;
  gap: 2rem;
}

.service-item {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: calc(33.333% - 2rem); /* 3 cards in a row */
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #ddd;
}

.service-info {
  padding: 1rem;
}

.brand-list {
  padding-left: 1.2rem;
  list-style: none;
}

.brand-list li {
  padding: 0.5rem 0;
}

.brand-list li a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.3s;
}

.brand-list li a:hover {
  color: #0056b3;
}

/* Responsive styles */
@media (max-width: 768px) {
  .service-item {
    width: calc(50% - 1rem); /* 2 cards per row on smaller screens */
  }
}

@media (max-width: 480px) {
  .service-item {
    width: 100%; /* 1 card per row on mobile screens */
  }

  .services-container {
    flex-direction: column;
    align-items: center; /* Ensure items are centered on mobile view */
  }
}

/* About Us Section */

.about-us-section {
  padding: 40px 20px;

  background-color: #f4f4f4;
}

.about-us-container {
  max-width: 1200px;

  margin: 0 auto;
}

.about-us-content {
  display: flex;

  flex-direction: column;

  gap: 20px;
}

.about-us-image img {
  width: 100%;

  height: auto;

  border-radius: 34px;
}

.about-us-text:hover {
  background-color: #ffffff; /* Change background color on hover */
  transform: translateY(-5px); /* Slightly lift the element */
  box-shadow: 0 6px 12px rgb(25, 197, 36); /* Adjust shadow for a more pronounced effect */
}

.about-us-text {
  background: white;
  padding: 20px;
  box-shadow: 0 4px 8px rgb(33 43 187);
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

/* Responsive styles */

@media (min-width: 768px) {
  .about-us-content {
    flex-direction: row;

    justify-content: space-between;

    margin-top: 20px;
  }

  .about-us-image {
    flex: 1;

    margin-right: 20px;
  }

  .about-us-text {
    flex: 2;
  }
}

.about-us-text h2 {
  font-size: 32px;

  margin-top: 20px;
}

.about-us-text p {
  font-size: 18px;

  margin-top: 10px;

  text-align: justify;
}

/* Team Section */

/* Styling for individual team member as a card */
.about-us-team-member {
  flex: 1 0 25%; /* 4 cards per row on larger screens */
  box-sizing: border-box;
  margin: 4px;
  padding: 1rem;
  text-align: center;
  background-color: #ffffff; /* Background for the card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow around the card */
  border-radius: 8px; /* Rounded corners */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effect */
}

/* Hover effect for card */
.about-us-team-member:hover {
  transform: translateY(-10px); /* Lift the card slightly */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add a stronger shadow on hover */
}

/* Styling for team member image */
.about-us-team-member img {
  width: 100%;
  height: 330px;
  border-radius: 5px; /* Circular image */
  object-fit: cover;
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

/* Hover effect for the image */
.about-us-team-member:hover img {
  transform: scale(1.1); /* Slightly enlarge the image on hover */
}

/* Styling for team member name and role */
.about-us-team-member h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #421111;
}

.about-us-team-member p {
  font-size: 1rem;
  color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-us-team-member {
    flex: 1 0 100%; /* Each card takes up full width on smaller screens */
    margin-bottom: 1rem;
  }
}

/* Values Section */

/* .about-us-values {

  background-color: #fff;

  padding: 2px 0;

  text-align: center;

}



.about-us-container2 {

  max-width: 1200px;

  margin: 0 auto;

  padding: 20px;

 

}



.about-us-values-list {

  display: flex;

  justify-content: center;

  gap: 6px;

  background-color: #bcdb9f;

}



.about-us-value {

  margin: 20px 0;

  text-align: center;

  width: 283px;

  background-color: white;

  padding: 8px;

  border-radius: 14px;

}



.about-us-value h3 {

  font-size: 22px;

  margin-bottom: 10px;

}



.about-us-value p {

  font-size: 17px;

  text-align: justify;

}
 */

/* Container styling */
.about-us-container2 {
  text-align: center;
  padding: 2rem;
  background-color: #e8ffd8;
}

.about-us-container2 h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Card list layout */
.about-us-values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1.5rem;
}

/* Card styling */
.card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 1.5rem;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Card title styling */
.about-us-value h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #421111;
}

/* Card text styling */
.about-us-value p {
  font-size: 1rem;
  color: #333;
}

/* Responsive styling for smaller screens */
@media (max-width: 768px) {
  .about-us-values-list {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 100%;
  }
}

/* Mobile Styles */

@media only screen and (max-width: 768px) {
  .about-us-content,
  .about-us-team-members,
  .about-us-values-list {
    flex-direction: column;

    align-items: center;
  }

  .about-us-navbar {
    top: 50px;
  }

  .about-us-image img {
    max-width: 100%;
  }

  .about-us-team-member img {
    max-width: 100%;
  }
}

/* Styles for mobile screens */

@media (max-width: 768px) {
  header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 20px;
  }

  .service-item img {
    height: 221px; /* Adjust height for mobile view */
  }

  .services-section {
    padding: 20px 10px;
  }

  .services-container {
    flex-direction: column;
  }

  .service-item {
    margin-bottom: 20px;

    text-align: center;
  }

  .service-info h3 {
    font-size: 18px;
  }

  .service-info p {
    font-size: 14px;
  }

  .service-info ul li {
    font-size: 14px;
  }

  .footer-box {
    width: 100%;

    margin-top: 20px;
  }

  .social a {
    font-size: 20px;
  }

  .copyright {
    text-align: center;

    padding: 10px 0;
  }
}

.certifications {
  padding: 19px 0;
  background-color: #dbeaffd4;
  text-align: center;
  display: flex;
  justify-content: center;
}

.cert-container {
  max-width: 55%;
  overflow: hidden;
}
.cert-container1 {
  max-width: 55%;
  overflow: hidden;
}

.cert-container img {
  width: 54%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cert-container1 img {
  width: 266px;
  height: 133px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
