/* ----------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* -------------global styling for header ------------ */
.section-header h1 {
  position: relative;
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--dark-heading-clr);
  margin-bottom: 20px;
}
.section-header h1::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 1px;
  left: 0;
  top: calc(100% + 5px);
  background-color: var(--dark-text-clr);
}
.section-header h1::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 3px;
  left: 0;
  top: calc(100% + 4px);
  background-color: var(--primary-clr);
}
.section-header p {
  color: var(--dark-text-clr);
  margin-bottom: 40px;
  max-width: 700px;
}
/* Video Container Styles */
.video-container {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  margin: 20px 0;
  overflow: hidden;
  width: 100%;
  /* margin-top: 45px; */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #3d3d3d;
}

/* ----------------------------css for services  */

/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */
/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */
.services-section {
  width: 100%;
  background-color: #f4f4f4;
  /* padding: 40px 0; */
  padding: 100px 8% 80px;
}

.service_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.services-heading {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 60px;
  height: 60px;
}

.service-title {
  font-size: 18px;
  font-weight: bold;
  color: #222;
  margin: 0;
}

.service-description {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }

  .services-heading {
    font-size: 18px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-description {
    font-size: 13px;
  }
}

/* -------------------------dervice 2 ---------------------------- */

/*   === Services Section Styling Starts ===   */
section.services {
  width: 100%;
  padding: 40px 8% 80px;
}
.services .services-contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.services-contents .service-box {
  flex-basis: calc(calc(100% / 3) - 2%);
  padding: 25px 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.services-contents .service-box:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}
.service-box .service-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--primary-clr);
  outline: 1px solid var(--primary-medium-clr);
  outline-offset: 10px;
}
.service-box .service-icon i {
  font-size: 24px;
  color: var(--light-heading-clr);
}
.service-box .service-desc {
  margin-top: 25px;
}
.service-box .service-desc h2 {
  margin-bottom: 10px;
  color: var(--dark-heading-clr);
  font-size: 22px;
}
.service-box .service-desc p {
  line-height: 1.4;
  color: var(--dark-text-clr);
}
.service-box:nth-child(1) .service-icon {
  background-color: #fef0ef;
  outline-color: #fef0ef;
}
.service-box:nth-child(1) .service-icon i {
  color: #f76250;
}
.service-box:nth-child(2) .service-icon {
  background-color: #e8f9ef;
  outline-color: #e8f9ef;
}
.service-box:nth-child(2) .service-icon i {
  color: #2f9355;
}
.service-box:nth-child(3) .service-icon {
  background-color: #f1f0fe;
  outline-color: #f1f0fe;
}
.service-box:nth-child(3) .service-icon i {
  color: #5a49f3;
}
/* ------for responsive ------- */
@media (max-width: 668px) {
  /* Partners Section */
  .partners h3 {
    margin-right: 150px;
  }
  /* Services Section */
  .services-contents .service-box {
    flex-basis: 100%;
  }
  /* Courses Section */
  .courses .course-contents .course-card {
    flex-basis: 100%;
  }
}
/*   === Services Section Styling Ends ===   */
/*   === Services Section Styling Ends ===   */

/* -----------------------------------------testimonial css */

/* <!-- -----------------------------------------about us ----------------------- --> */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #fff;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
}

.about-text h2 {
  color: #000;
  /* color: #8dc63f; */
  font-size: 28px;
  margin-bottom: 20px;
}

.about-text h2 span {
  /* color: #f4b000; */
  color: #356a35;
  /* color: #000; */
  font-weight: bold;
}

.about-text p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.about-text a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #004aad;
  font-weight: bold;
}

.slider {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding: 20px;
}

.slider img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .slider {
    order: -1;
  }
}

/* -----------------------------------------------------testimonial 2 css ------------------------- */
.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -80px;
}
.owl-carousel .owl-nav button {
  border-radius: 5px !important;
}
.owl-carousel .owl-nav .owl-prev i,
.owl-carousel .owl-nav .owl-next i {
  padding: 8px 14px !important;
  border-radius: 5px;
  font-size: 16px !important;
  background-color: var(--primary-clr) !important;
  color: var(--light-heading-clr);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s;
}
.owl-carousel .owl-nav .owl-prev i:hover,
.owl-carousel .owl-nav .owl-next i:hover {
  background-color: var(--light-heading-clr) !important;
  color: var(--primary-clr);
  border: 1px solid var(--primary-clr);
}
.owl-carousel .owl-dots {
  margin-top: 20px;
}
.owl-carousel .owl-dots .owl-dot span {
  padding: 4px !important;
}
.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--primary-clr) !important;
}
html {
  scroll-behavior: smooth;

  /* Variables For Storing Colors */
  --primary-clr: #208245;
  --primary-medium-clr: #d8e9df;
  --primary-light-clr: #edfaf1;
  --bg-clr-1: #ffffff;
  --dark-heading-clr: #232d39;
  --dark-text-clr: #6c757d;
  --light-heading-clr: #efefef;
  --light-text-clr: #cecece;
} /*   === Testimonials Section Styling Starts ===   */
/* === Testimonials Section Styling Starts === */
section.testimonials {
  width: 100%;
  padding: 100px 8%;
}

.testimonials .section-header {
  width: 70%;
  max-width: 700px;
}

.testimonials-slider .testimonials-item {
  position: relative;
  padding: 20px 25px;
  background-color: var(--primary-light-clr);
}

.testimonials-item .profile {
  display: flex;
  align-items: center;
}

.testimonials-item .profile .profile-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0; /* Prevent shrinking of the image */
}

.testimonials-item .profile .profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block; /* Ensures no extra spaces around the image */
}

.testimonials-item .profile .profile-desc {
  display: flex;
  flex-direction: column;
}

.profile .profile-desc span:nth-child(1) {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-clr);
}

.profile .profile-desc span:nth-child(2) {
  font-size: 15px;
  color: var(--dark-heading-clr);
}

.testimonials-item > p {
  margin: 15px 0px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark-text-clr);
}

.testimonials-item .quote {
  text-align: center;
}

.testimonials-item .quote i {
  font-size: 25px;
  color: var(--dark-text-clr);
  margin-right: 20px;
}

.testimonials-item .ratings {
  margin-top: 20px;
}

.testimonials-item .ratings i {
  font-size: 17px;
  color: gold;
  cursor: pointer;
}

/* Add responsiveness to ensure circular images on all screen sizes */
@media (max-width: 768px) {
  .testimonials-item .profile .profile-image {
    width: 50px; /* Adjust size for smaller screens */
    height: 50px;
  }

  .profile .profile-desc span:nth-child(1) {
    font-size: 20px; /* Reduce font size for smaller screens */
  }

  .profile .profile-desc span:nth-child(2) {
    font-size: 13px;
  }
}
/* === Testimonials Section Styling Ends === */

/*   === Testimonials Section Styling Ends ===   */

/*   === get in touch ===   */
section.project-order {
  width: 100%;
  padding: 60px 10%;
  /* background-color: black; */
  background-color: #208245;
  color: var(--bg-clr-1);
  text-align: center;
}
.project-order h3 {
  font-size: 20px;
  /* color: #777; */
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.project-order h1 {
  font-size: 42px;
  color: var(--bg-clr-1);
  text-transform: capitalize;
  font-weight: 500;
  margin: 25px 0px;
}
.project-order p {
  /* color: #999; */
  color: white;
  max-width: 700px;
  min-height: 1.4;
  margin: 0px auto;
}
.project-order .project-order-btn {
  margin-top: 40px;
}
/*   === Project Order Section Styling Ends ===   */

/* ===================================================================about 1 css======================================= */

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 2rem;
}

.about-section .image {
  flex: 1;
  max-width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px; /* Gap between images */
}

.about-section .image img {
  width: 100%;
  height: 280px; /* Fixed height for proportionate scaling */
  object-fit: cover; /* Ensures the images don't look squeezed */
  border-radius: 4px;
}

.about-section .about-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #275327;
  color: white;
  text-align: center;
  padding: 20px;
  border: 5px solid white; /* Solid white border */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 180px;
  height: 180px; /* Proportionate size */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1; /* No transparency */
}

.about-section .about-box i {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-section .about-box h4 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.about-section .about-box span {
  font-size: 1rem;
}

.about-section .content {
  flex: 1;
  max-width: 45%;
  padding: 20px;
}

.about-section .content h1 {
  font-size: 2.5rem;
  color: #333;
}

.about-section .content h1 span {
  color: #234a23;
}

.about-section .content p {
  font-size: 1rem;
  color: #555;
  margin: 10px 0;
  line-height: 1.6;
}

.about-section .content ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.about-section .content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.about-section .content ul li i {
  font-size: 2rem;
  color: #234a23;
}

.about-section .content ul li div {
  display: flex;
  flex-direction: column;
}

.about-section .content ul li h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.about-section .content ul li p {
  font-size: 0.9rem;
  color: #555;
}

.action-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.action-section .btn2 {
  text-decoration: none;
  background-color: #234a23;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.action-section .btn2:hover {
  background-color: #234a23;
}

.action-section .about_user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.action-section .about_user i {
  font-size: 2rem;
  color: #333;
}

.action-section .about_user .user_info h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.action-section .about_user .user_info span {
  font-size: 1rem;
  color: #777;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }

  .about-section .image,
  .about-section .content {
    max-width: 100%;
  }

  .about-section .content h1 {
    font-size: 2rem;
  }
}

/* =================================================================================================================== */

/* --------------------------achievements ------------------------- */
/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

/* Commitment Section Styles */
.commitment-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
  margin-top: 80px;
}

.containers {
  max-width: 1200px;
  margin: 0 auto;
}

.section-titles {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px; /* Ensures columns adjust in smaller viewports */
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #6a1b9a; /* Purple color */
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    margin-bottom: 2rem;
  }
}

/* ======================================================new services======================================================== */
/* General Reset and Body Styles */
/* body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #ffffff;
} */

/* Section Heading Styles */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 36px;
  color: black;
  margin-bottom: 10px;
  font-weight: bold;
  position: relative;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #208245;
  margin: 10px auto 0;
}

.section-heading p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
}

/* Services Section Styles */
.services-section {
  padding: 40px 20px;
  background-color: #ffffff;
  margin-top: 40px;
}

.service_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: space-between;
}

.service-card {
  width: calc(30% - 16px); /* Adjusted for 3 cards in one row */
  background: #edfaf1;
  overflow: hidden;
  border-radius: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 16px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 7px;
  color: black;
}

.card-text {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.read-more {
  font-size: 14px;
  color: #00500b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-card {
    width: calc(50% - 8px);
  }
}

@media (max-width: 480px) {
  .service-card {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .service-card {
    width: calc(30% - 16px); /* Ensure 3 cards in one row on desktop */
  }
}

/* ======================================================hero======================================================== */
/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
}

/* Container */
.Hero_container {
  max-width: 72rem; /* 1152px */
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  margin-top: 4.5rem;
  padding: 5rem 0 0 0;
  background-color: #edfaf1;
}

.hero-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem; /* Add space between content and banner */
}

/* Text Content */
.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.btn.primary {
  background-color: #166534;
  color: white;
}

.btn.primary:hover {
  background-color: #14532d;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #166534;
  color: #166534;
}

.btn.secondary:hover {
  background-color: #f0fdf4;
}

/* Slider */
.hero-slider {
  flex: 1;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.slides {
  position: relative;
  height: 400px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: white;
}

/* Rolling Banner */
.rolling-banner {
  background-color: #d8e9df;
  /* background-color: white; */
  color: black;
  overflow: hidden;
  padding: 0.75rem 0;
  width: 100%;
  position: relative;
}

.rolling-banner::before,
.rolling-banner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
}

/* .rolling-banner::before {
  left: 0;
  background: linear-gradient(to right, #166534 0%, transparent 100%);
}

.rolling-banner::after {
  right: 0;
  background: linear-gradient(to left, #166534 0%, transparent 100%);
} */

.banner-content {
  display: inline-flex;
  white-space: nowrap;
  padding: 0 50px;
  animation: roll 45s linear infinite;
  font-weight: bold;
}

.banner-content span {
  display: inline-block;
  padding: 0 3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.banner-content span::after {
  content: "•";
  margin-left: 3rem;
  opacity: 0.5;
}

.banner-content span:last-child::after {
  display: none;
}

@keyframes roll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rolling-banner .banner-content span {
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0 0 0;
  }

  .hero-content {
    flex-direction: column-reverse;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .button-group {
    flex-direction: row;
    justify-content: flex-start;
  }

  .btn {
    width: auto;
  }

  .hero-slider {
    width: 100%;
  }

  .slides {
    height: 300px;
  }

  .banner-content {
    animation: roll 45s linear infinite;
  }

  .banner-content span {
    padding: 0 2rem;
  }

  .banner-content span::after {
    margin-left: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2rem 0 0 0;
  }

  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-slider {
    margin: 0 1rem;
  }

  .slides {
    height: 250px;
  }
}
