@import url("https://fonts.googleapis.com/css2?family=Inria+Sans:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

:root {
    --font_type_parta: "Prata", serif !important;
    --font_type_inria:  "Inria Sans", sans-serif !important;
    --font_type_poppins: "Poppins", sans-serif !important;
}

body {
  font-family: "Arial", sans-serif;
}
.logo {
  min-height: 20vh;
  max-width: 20vw;
}
.top-nav {
  background-color: rgba(0, 149, 78, 0.2);
  font-family:var(--font_type_inria);
  font-weight: 400;
  font-size: 0.9rem;
  color: #000000;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.top-nav i.social-icon {
  font-size: 1.1rem;
  color: #008104 !important;
}

.top-nav span {
  line-height: 1.2;
}
.top-nav .container > div {
  flex-wrap: wrap;
}

.top-nav .container > div > div {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 575.98px) {
  .top-nav .container > div {
    width: 100%;
    justify-content: center !important;
    margin-bottom: 5px;
  }

  .top-nav .container > div:last-child {
    justify-content: center !important;
    gap: 10px;
  }
}
.nav {
  font-family: var(--font_type_inria);
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.hamburger .bar {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: 0.3s;
}
.header {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  .nav {
    display: none;
  }
  .nav.active {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    padding: 10px 20px;
    border-top: 1px solid #ddd;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    z-index: 999;
  }
  .nav-link {
    color: #000 !important;
    font-weight: 600;
    padding: 8px 0;
  }
  .hamburger {
    display: flex;
  }
  .col.position-relative {
    position: relative;
  }
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .nav {
    display: flex !important;
  }
}
.banner {
  background-image: url("../assets/banner.png");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: var(--font_type_parta);
}
.overlay {
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(3px);
  background-color: #0d400099;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.content {
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}
.content h1 {
  font-size: 4.5rem;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  font-family: var(--font_type_parta);
  font-weight: 200 !important;
  letter-spacing: 1px;
}
.btn-outline-light {
  background-color: white;
  color: #00954e;
  border: 2px solid white;
  padding: 0.6rem 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 6px;
  margin-top: 1.2rem;
  transition: 0.3s;
}

.btn-outline-light:hover {
  background-color: #00954e;
  color: white;
  border-color: #00954e;
}
.banner-btn-left,
.banner-btn-right {
  background-color:#2c4f2d;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  opacity: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  transition: background-color 0.3s, opacity 0.3s;
}



.banner-btn-left:hover,
.banner-btn-right:hover {
  background-color: #ddd;
  opacity: 1;
}

.banner-btn-left .bi,
.banner-btn-right .bi {
  font-size: 14px;
  color: #ffffff;
   margin: 0 -4px;  
}
/* Small screen: Mobile devices (375–425px) */
@media (max-width: 425px) {
  .banner-btn {
    width: 30px;
    height: 30px;
    padding: 6px;
  }

  
  .banner-btn-left .bi,
  .banner-btn-right .bi {
    font-size: 11px;
    margin: 0 -1px;
  }
}

/* Extra small screen: iPhone SE, Galaxy A01, etc. (<= 320px) */
@media (max-width: 360px) {
  .banner-btn {
    width: 28px;
    height: 28px;
    padding: 4px;
  }


  .banner-btn-left .bi,
  .banner-btn-right .bi {
    font-size: 10px;
  }
}

/*inventory styles*/

.inventory-title {
  font-family: var(--font_type_parta);
  font-size: 2rem;
  font-weight: 200;
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.card-text {
  font-family: var(--font_type_poppins);
  text-align: center;
}
.inventory-title::after {
  content: "";
  display: block;
  width: 120px;
  height: 20px;
  background-image: url("../assets/underlineStyle.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto 0 auto;
}
.inventory-p {
  font-family: var(--font_type_poppins);
}
.card {
  border: none !important;
  box-shadow: none !important;
}

.card-title {
  font-family: var(--font_type_parta);
  text-align: center;
}

/*our client section*/
.client-box {
  background-color: #008104;
}
.amazing-client-title {
  font-family: var(--font_type_parta);
}
.client-p {
  font-family:var(--font_type_poppins);
}
.leafimg {
  width: 800px !important;
  height: auto;
  background-color: #008104;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}

/*our work section*/

.work-title {
  font-family: var(--font_type_parta);
  font-size: 2rem;
  font-weight: 200;
  position: relative;
  display: inline-block;
  margin-bottom: -1.5rem;
}
.underline-img {
  height: 20px;
  max-width: 100%;
  flex-shrink: 1;
}

@media (max-width:461px) {

  .underline-img {
  height: 20px;
  max-width: 40%;
  flex-shrink: 1;
}
  /* .underline-img:nth-child(2) {
    display: none;
  } */

  .work-title {
    margin-bottom:0;
    font-size: 1.5rem;
  }
}
@media (max-width: 400px) {
  .underline-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Review Section */
.testimonial-section {
  position: relative;
  padding: 3rem 1rem 4rem;
  overflow: hidden;
}
.testimonial-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 27, 1, 0.59);
  z-index: 1;
}
.testimonial-section .quote-img {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 200px;
  z-index: 2;
  opacity: 0.4;
}
.review-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}
h2.review-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  letter-spacing: 1px;
  margin: 4rem 100px 0.25rem auto;
  font-weight: 700;
  text-align: right;
  color: white;
  font-family: var(--font_type_parta);
  line-height: 1.2;
}

/* Underline Image Container */
.underline-container {
  text-align: right;
  margin: 0 100px 2rem auto;
}
.underline-container img {
  height: 20px;
  filter: brightness(0) invert(1);
  margin: 0;
}

/* Flex container */
.testimonial-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.left-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 0 0 400px;
  min-width: 280px;
  margin-top: -150px;
}
.right-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
  flex: 0 0 750px;
  min-width: 340px;
}

/* Card Styling */
.testimonial-card {
  background: #fff;
  color: #000;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-family: var(--font_type_poppins);
}
.testimonial-card .d-flex {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.testimonial-card img.rounded-circle {
  border-radius: 50%;
  margin-right: 0.75rem;
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.testimonial-card strong {
  font-weight: 400;
}
.testimonial-card .text-warning {
  color: #f5b301;
  font-size: 1rem;
  letter-spacing: 1px;
  user-select: none;
}
.testimonial-card p {
  margin: 0;
  line-height: 1.4;
  font-size: 0.95rem;
}

@media (min-width: 1025px) and (max-width: 1440px) {
  h2.review-title {
    text-align: right;
    padding: 0 2rem;
    margin: 3rem 60px 1rem auto;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
  }
  .underline-container {
  text-align: right;
  margin: 0 100px 10rem auto;
}
}
@media (min-width: 769px) and (max-width: 1024px) {
  h2.review-title {
    text-align: center;
    padding: 0 2rem;
    margin: 2rem auto 1rem;
    font-size: clamp(1.3rem, 4.5vw, 2rem);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  h2.review-title {
    text-align: center;
    padding: 0 1.5rem;
    margin: 2rem auto 1rem;
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
  h2.review-title {
    text-align: center;
    padding: 0 1rem;
    margin: 1.5rem auto 0.5rem;
    font-size: clamp(1.1rem, 6vw, 1.6rem);
  }
}

/* Smallest Screens (Mobile Portrait ~ >37px - 480px) */
@media (max-width: 480px) {

  .underline-container {
    margin: 2rem auto 1rem;
    text-align: center;
    padding: 20px;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
  .underline-container img {
    height: 20px;
    filter: brightness(0) invert(1);
    margin: auto;
    opacity: 0;
  }
  .hero-title {
    font-size: 60px !important;
  }
}

/* Mobile Landscape to Small Tablets (481px - 768px) */
@media (max-width: 768px) {
  .testimonial-row {
    flex-direction: column;
    align-items: center;
  }
  .left-column,
  .right-column {
    flex: 1 1 100%;
    margin-top: 0;
    min-width: unset;
  }
  
  .underline-container {
    text-align: center;
    margin: 2rem auto 1rem;
    padding: 20px;
  }
  .underline-container img {
    opacity: 1;
  }
}

/* Tablets (769px - 1024px) */
@media (max-width: 1024px) {
  .left-column {
    flex: 0 0 45%;
    margin-top: -100px;
  }
  .right-column {
    flex: 0 0 45%;
  }
  
  .underline-container {
    text-align: center;
    margin: 2rem auto 1rem;
    padding: 20px;
  }
  .underline-container img {
    opacity: 0;
  }
}

/* Laptops (1025px - 1440px) */
@media (max-width: 1440px) {
  .left-column {
    flex: 0 0 40%;
  }
  .right-column {
    flex: 0 0 50%;
  }
}

/*footer section*/

.footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 40px 0;
  font-size: 14px;
}
.footer a {
  color: #ccc;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-logo {
  max-width: 100px;
  margin-bottom: 15px;
}
.footer-bottom {
  text-align: center;
  color: #999;
  font-size: 13px;
  margin-top: 20px;
}

.testimonial-section {
  background: url("../assets/OurCustomers.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.review-title {
  font-family: var(--font_type_parta);
}
.review-man {
  font-family: var(--font_type_poppins);
}
.review-p {
  font-family: var(--font_type_poppins);
}
.quote-img {
  top: 20px;
  right: 20px;
  width: 80px;
  opacity: 0.3;
  z-index: 2;
}

/* Custom CSS for Our Services section */

/* Title Styling */
.our-services-title {
  font-family: var(--font_type_parta);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  text-align: left;
}

.our-services-title::after {
  content: "";
  display: block;
  width: 180px;
  height: 20px;
  background-image: url("../assets/underlineStyle.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 10px auto 0 auto;
}

/* Text Content */
.service-content {
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: none !important;
  margin-bottom: 1.5rem;
}

.service-content p {
  font-family: var(--font_type_poppins);
  margin-bottom: 1.2rem;
  line-height: 1.6;
  color: #555;
  background: transparent;
}

/* Image Styling - Always Circular & Responsive */
.service-video {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f8f9fa;
  padding: 10px;
  display: block;
  margin: 0 auto;
}


/* Responsive Styles */

/* Tablets and smaller desktops */
@media (max-width: 991.98px) {
  .our-services-title {
    font-size: 2rem;
    padding-bottom: 18px;
  }

  .service-content {
    padding: 0.75rem;
  }

  .service-img {
    max-width: 350px;
    padding: 8px;
  }
}

/* Mobile devices */
@media (max-width: 575.98px) {
  .our-services-title {
    font-size: 1.5rem;
    padding-bottom: 12px;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .our-services-title::after {
    width: 120px;
    height: 14px;
    margin: 8px auto 0 auto;
  }

  .service-content {
    padding: 0.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .service-img {
    max-width: 250px;
    padding: 6px;
    margin: 1.5rem auto 0 auto;
  }

  .row.align-items-center {
    flex-direction: column;
    text-align: center;
  }
}

/* contact section */
.contact-title{
   font-family: var(--font_type_parta);
}
.map-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px; /* optional, for rounded corners */
}
