/* Navbar start */
/* Default navbar style before scrolling */
#mainNavbar {
  background-color: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hamburger button (white by default) */
.navbar-toggler {
  border-color: rgb(4, 4, 4);
}

.navbar-toggler .navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="black" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

/* Scrolled navbar style */
.navbar-scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .company-name,
.navbar-scrolled .navbar-slogan {
  color: black !important;
}
#navbar-name{
  color:#000000;
   font-size: 50px;
}
@media (max-width: 1227px) {
  #navbar-name {
    font-size: 30px; /* Reduce the height for tablets */
  }
}
@media (max-width: 1027px) {
  #navbar-name {
    font-size: 25px; /* Reduce the height for tablets */
  }
}
@media (max-width: 622px) {
  #navbar-name {
    font-size: 29px; /* Reduce the height for tablets */
  }
}
@media (max-width: 390px) {
  #navbar-name {
    font-size: 20px; /* Reduce the height for tablets */
  }
}
@media (max-width: 326px) {
  #navbar-name {
    font-size: 15px; /* Reduce the height for tablets */
  }
}
@media (max-width: 278px) {
  #navbar-name {
    font-size: 10px; /* Reduce the height for tablets */
  }
}
.navbar-scrolled .navbar-brand img {
  filter: brightness(
    0
  ); /* Makes the logo black if it's a light-colored image */
}

/* Hamburger button turns black after scrolling */
.navbar-scrolled .navbar-toggler {
  border-color: black;
}

.navbar-scrolled .navbar-toggler .navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="black" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

/* Google Translate Styling */
#google_translate_element select {
  border-radius: 20px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  cursor: pointer;
}

.translate-container {
  display: inline-block;
  padding-left: 10px;
}

/* Banner section start */
.banner-section {
  margin-top: 10px;
  text-align: left;
  /* height: 100vh; Full viewport height for desktop */
  overflow: hidden; /* Prevent overflow issues */
  margin: 0; /* Remove any default margin */
  padding: 0; /* Remove any default padding */
}

/* Style the carousel item to ensure full width and height */
.carousel-item {
  width: 100%; /* Use full width */
  height: 100%; /* Use full height */
}

/* Video Styling */
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the full container */
  position: relative;
  top: 0;
  left: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .banner-section {
    height: 50vh; /* Reduce the height for tablets */
  }

  .banner-video {
    object-fit: contain; /* Ensure the video fits on smaller screens */
  }
}

@media (max-width: 576px) {
  .banner-section {
    height: 30vh; /* Reduce height for mobile devices */
  }

  .banner-video {
    object-fit: contain; /* Ensure the video fits on mobile */
  }
}

/* Optional: Adjust carousel controls for smaller screens */
@media (max-width: 576px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-size: 1.5rem;
  }
}

/* Banner section end */

/* circle slider start  */
/* Slider Container */
.circle-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Slider Wrapper */
.slider-wrapper {
  display: flex;
  animation: slide 25s linear infinite; /* Continuous sliding animation */
}

/* Individual Circle Images */
.slider-wrapper img {
  width: 150px; /* Adjust this size for larger or smaller circles */
  height: 150px;
  padding: 10px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

/* Hover Zoom Effect */
.slider-wrapper img:hover {
  transform: scale(1.2); /* Zoom out on hover */
}

/* Animation for continuous sliding */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Media query for responsive sizing */
@media (max-width: 768px) {
  .slider-wrapper img {
    width: 100px;
    height: 100px;
  }
}
/* circle lsider end */
/* About Us Section with Background Image */
/* Media Queries for Responsive Design */
.about-us {
  position: relative;
  text-align: center;
  color: white;
}

.about-us img {
  width: 100%;
  height: auto;
  display: block;
}
.fw-boldpara {
  position: absolute;
  top: 50%;
  left: 63%;
  transform: translate(-50%, -50%);
  line-height: 18px;
  width: 42%;
  text-align: center;
}
.aboutheading {
  position: absolute;
  top: 20%;
  left: 60%;
  transform: translate(-50%, -50%);
  color: #32cd32;
  letter-spacing: 4px;
  font-size: 40px;
  line-height: 50px;
  opacity: 0.8;
}
.About-Know-More {
  display: inline-block;
  padding: 10px 20px;
  background-color: #2aba37;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 200px;
  margin-left: 100px;
}

/* Base styles for the social media icons */
.about-us-social-icons {
  position: absolute;
  top: 86%;
  left: 78%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.about-us-social-icons a {
  margin: 0 10px;
  transition: transform 0.3s ease;
}

/* Global colors for each social media platform */
.about-us-social-icons a[href*="facebook.com"] i {
  color: #3b5998; /* Facebook's official blue color */
}

.about-us-social-icons a[href*="instagram.com"] i {
  background: radial-gradient(
    circle at 30% 30%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us-social-icons a[href*="youtube.com"] i {
  color: #ff0000; /* YouTube's official red color */
}

/* Icon hover effect */
.about-us-social-icons i:hover {
  transform: scale(1.1); /* Slightly increase size on hover */
}

/* Media Query for smaller screens (tablets and mobiles) */
@media (max-width: 1172px) {
  .about-us h2 {
    font-size: 35px; /* Reduce font size for smaller screens */
    line-height: 45px; /* Adjust line height */
    top: 15%; /* Move the heading higher */
  }

  .about-us p {
    position: absolute;
    top: 45%; /* Adjust the top position for the paragraph */
    font-size: 14px; /* Adjust font size for paragraph */
    line-height: 15px; /* Adjust line height */
    width: 45%; /* Make the paragraph wider */
    left: 60%;
    transform: translate(-44%, -35%);
    font-size: 13px;
  }
  .About-Know-More {
    display: none;
  }
  .about-us-social-icons {
    top: 90%; /* Adjust position for smaller screens */
    left: 50%; /* Center the icons horizontally */
    transform: translate(-0%, -50%);
  }
  .about-us-social-icons i {
    font-size: 30px; /* Reduce the icon size */
  }
  .aboutheading {
    font-size: 10px;
  }
  .about-us div {
    position: absolute;
    top: 70%; /* Adjust the top position for the button */
  }
  .about-us div:last-of-type {
    top: 85%; /* Adjust the top position for the social icons */
  }
}


@media (max-width: 995px) {
  .about-us p {
    position: absolute;
    top: 45%; /* Adjust the top position for the paragraph */
    font-size: 18px; /* Adjust font size for paragraph */
    line-height: 11px; /* Adjust line height */
    width: 45%; /* Make the paragraph wider */
    left: 60%;
    transform: translate(-44%, -35%);
    font-size: 13px;
  }
  .about-us-social-icons {
    top: 90%; /* Adjust position for smaller screens */
    left: 50%; /* Center the icons horizontally */
    transform: translate(-0%, -50%);
  }
}
@media (max-width: 770px) {
  .about-us p {
    position: absolute;
    top: 45%; /* Adjust the top position for the paragraph */
    font-size: 16px; /* Adjust font size for paragraph */
    line-height: 11px; /* Adjust line height */
    width: 45%; /* Make the paragraph wider */
    left: 60%;
    transform: translate(-44%, -35%);
    font-size: 10px;
  }
  .about-us-social-icons {
    top: 90%; /* Adjust position for smaller screens */
    left: 50%; /* Center the icons horizontally */
    transform: translate(-0%, -50%);
  }
}
@media (max-width: 484px) {
  .about-us h2 {
    font-size: 25px; /* Reduce font size for smaller screens */
    line-height: 45px; /* Adjust line height */
    top: 15%; /* Move the heading higher */
  }
  .about-us p {
    position: absolute;
    top: 45%; /* Adjust the top position for the paragraph */
    font-size: 16px; /* Adjust font size for paragraph */
    line-height: 9px; /* Adjust line height */
    width: 45%; /* Make the paragraph wider */
    left: 60%;
    transform: translate(-44%, -35%);
    font-size: 8px;
  }
  .about-us-social-icons {
    top: 90%; /* Adjust position for smaller screens */
    left: 50%; /* Center the icons horizontally */
    transform: translate(-0%, -50%);
  }
}
@media (max-width: 400px) {
  .about-us h2 {
    font-size: 20px; /* Reduce font size for smaller screens */
    line-height: 45px; /* Adjust line height */
    top: 15%; /* Move the heading higher */
  }
  .about-us p {
    position: absolute;
    top: 45%; /* Adjust the top position for the paragraph */
    font-size: 12px; /* Adjust font size for paragraph */
    line-height: 6px; /* Adjust line height */
    width: 45%; /* Make the paragraph wider */
    left: 60%;
    transform: translate(-44%, -35%);
    font-size: 6px;
  }
  .about-us-social-icons {
    top: 90%; /* Adjust position for smaller screens */
    left: 40%; /* Center the icons horizontally */
    transform: translate(-0%, -50%);
  }
}
@media (max-width: 305px) {
  .about-us h2 {
    font-size: 10px; /* Reduce font size for smaller screens */
    line-height: 45px; /* Adjust line height */
    top: 15%; /* Move the heading higher */
  }
  .about-us p {
    position: absolute;
    top: 45%; /* Adjust the top position for the paragraph */
    font-size: 8px; /* Adjust font size for paragraph */
    line-height: 4px; /* Adjust line height */
    width: 45%; /* Make the paragraph wider */
    left: 60%;
    transform: translate(-44%, -35%);
    font-size: 4px;
  }
  .about-us-social-icons {
    top: 90%; /* Adjust position for smaller screens */
    left: 40%; /* Center the icons horizontally */
    transform: translate(-0%, -50%);
  }
  .about-us-social-icons i {
    font-size: 10px; /* Reduce the icon size */
  }
}
/* ----------------------------------------------- */

/* ========vision mission start========== */
.vision-mission-section {
  padding: 50px 0;
  background-color: #f9f9f9; /* Light background for contrast */
}

.vision-mission-card {
  text-align: center;
  padding: 20px;
  border: none;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #5daa5d;
  /* background: linear-gradient(135deg, #32CD32, #228B22); Green gradient background */
  color: rgb(255, 251, 251);
  height: 100%; /* Ensure cards are same height */
}

.vision-mission-card:hover {
  transform: scale(1.05); /* Zoom effect on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.vision-mission-card .icon {
  font-size: 50px; /* Icon size */
  margin-bottom: 15px;
  color: white; /* Icon color */
}

.gradient-heading {
  background-color: white;
  /* background: linear-gradient(135deg, #d4edda, #c3e6cb); Gradient for headings */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.5rem; /* Heading size */
  margin: 10px 0;
  font-weight: bold;
}

.fancy-text {
  font-size: 0.9rem; /* Paragraph size */
  margin: 0;
  padding: 0;
}

/* About us end */
/* counter start */
.counter {
  transition: all 1.5s ease-in-out;
  animation: count-up 3s forwards;
}

@keyframes count-up {
  0% {
    content: "0";
  }
  100% {
    content: attr(data-count);
  }
}

.section-heading,
.sub-heading {
  animation: fadeIn 2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* counter end */

/* Our peoduct start */
/* Card hover effects */
.product-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Add to Cart Button hover */
.add-to-cart-btn {
  background-color: #5daa5d;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: #67ec72;
}

/* Rating stars */
.product-rating i {
  color: #ffcd3c;
  margin-right: 5px;
}
/* our product end */

/* why chouse us start */
/* Section styling */
.why-choose-us-section {
  background-color: #f7f7f7;
  padding: 80px 0;
}

/* Heading styling */
.why-choose-us-heading {
  color: #a2870d;
  letter-spacing: 4px;
  font-size: 45px;
  line-height: 50px;
  opacity: 0.9;
  margin-bottom: 40px;
  text-align: center;
}

/* Points container */
.why-choose-us-point {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

/* Icons styling */
.why-choose-us-point i {
  font-size: 40px;
  color: #a2870d;
  margin-right: 20px;
}

/* Points text styling */
.why-choose-us-point h5 {
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.why-choose-us-point p {
  color: #666;
}

/* Responsive styling */
@media (max-width: 768px) {
  .why-choose-us-point {
    justify-content: center;
    text-align: center;
  }

  .why-choose-us-point i {
    margin-bottom: 15px;
  }
}
/* why chouse us end */
/* recent product start  */
/* Recent Projects Carousel (Banner) start */
#recentProjectsCarousel {
  background-color: #f8f9fa;
}

#recentProjectsCarousel img {
  border-radius: 20px; /* 20px border-radius */
  object-fit: cover;
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

#recentProjectsCarousel img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Recent Projects Carousel (Banner) end */

/* Recent Projects Continuous Slider start */
.recent-projects-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.project-slider-wrapper {
  display: flex;
  animation: continuous-slide 20s linear infinite; /* Continuous sliding animation */
}

.project-slider-wrapper img {
  width: 200px; /* Adjust size as needed */
  height: 200px;
  margin: 10px;
  border-radius: 20px; /* 20px border-radius */
  object-fit: cover;
  transition: transform 0.3s ease; /* Smooth zoom effect */
}

.project-slider-wrapper img:hover {
  transform: scale(1.1); /* Slight zoom out on hover */
}

/* Animation for continuous sliding */
@keyframes continuous-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Media query for responsive sizing */
@media (max-width: 768px) {
  .project-slider-wrapper img {
    width: 150px;
    height: 150px;
  }
}
/* Recent Projects Continuous Slider end */

/* recent product end  */
/* Testimonial start */
.testimonial-section {
  margin-top: 80px;
}

.testimonial-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease-in-out;
  margin: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensures all cards have equal height */
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.hover-effect:hover {
  transform: scale(1.05); /* Zoom effect on card hover */
}

.testimonial-image-wrapper {
  margin-top: 60px;
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  overflow: hidden;
  width: 150px;
  height: 150px;
  border: 5px solid #fff;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.testimonial-img:hover {
  transform: scale(1.1);
}

.testimonial-content {
  margin-top: 100px;
  padding-top: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-name {
  font-weight: bold;
  margin-bottom: 0;
}

.testimonial-position {
  font-style: italic;
  color: #777;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  flex-grow: 1; /* Allows the text area to take up space */
}

/* Star Rating styling */
.testimonial-rating {
  color: gold;
  font-size: 18px;
  margin-bottom: 20px; /* Space between rating and button */
  margin-top: auto; /* Pushes the rating above the button */
}

.testimonial-btn {
  display: flex;
  justify-content: center;
  margin-top: 20px; /* Adds space between the review and button */
}

.testimonial-btn .btn {
  background-color: #2aba37;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  color: #fff;
}

.testimonial-btn .btn:hover {
  background-color: #f68c1f;
  color: #fff;
}

/* Equal Height and Width for Cards */
.testimonial-box {
  min-height: 500px; /* Ensures all cards have equal minimum height */
}

/* Responsive adjustments */
@media (max-width: 1287px) {
  .testimonial-box {
    padding: 20px;
    margin: 10px;
  }

  .testimonial-image-wrapper {
    width: 120px;
    height: 120px;
  }

  .testimonial-content {
    margin-top: 80px;
  }
  .testimonial-box {
    min-height: 528px; /* Ensures all cards have equal minimum height */
  }
}

@media (max-width: 800px) {
  .testimonial-box {
    padding: 20px;
    margin: 10px;
  }

  .testimonial-image-wrapper {
    width: 120px;
    height: 120px;
  }

  .testimonial-content {
    margin-top: 80px;
  }
  .testimonial-box {
    min-height: 528px; /* Ensures all cards have equal minimum height */
  }
}


@media (max-width: 768px) {
  .testimonial-box {
    padding: 20px;
    margin: 10px;
  }

  .testimonial-image-wrapper {
    width: 120px;
    height: 120px;
  }

  .testimonial-content {
    margin-top: 80px;
  }
  .testimonial-box {
    min-height: 395px; /* Ensures all cards have equal minimum height */
  }
  
}

/* Testimonials end */

/* Contact us start */
/* Custom styles for the section */
.contact-section {
  margin-top: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-container {
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid red;
  object-fit: contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px;
}
.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the full height without distortion */
}
.form-control {
  border-radius: 20px;
  border: 1px solid red;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}
/* Constact us endf */

/* Footer start */
.footer {
  background-color: #f7f7f7; /* Off green background color */
}

.footer .footer-item a,
.footer .footer-item p {
  color: rgb(14, 14, 14); /* All text white */
  text-decoration: none; /* Remove underline from links */
}

.footer .footer-item a:hover {
  color: lightgreen; /* Change color on hover */
}

.footer .footer-item .footer-btn a:hover i {
  color: lightgreen !important;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #f7f7f7; /* Same off green */
}

.text-white {
  color: rgb(0, 0, 0) !important;
}
