.nav-link {
  display: flex;
  gap: 1rem;
}

.navbar-toggler {
  border-color: #295ca9;
  color: #295ca9;
}

.nav-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #fff;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.nav-item i {
  font-size: 1.2rem;
  color: #295ca9;
  transition: transform 0.4s ease;
}

.nav-text {
  margin-left: 0.05rem;
  opacity: 0;
  transform: translateX(20px) scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  color: #295ca9;
}

.nav-item:hover i {
  transform: translateX(-55px);
}

.nav-item:hover .nav-text {
  opacity: 1;
  transform: translate(0) scale(1);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  z-index: 999;
  transition: all 0.3s ease;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
}

.nav-item.dropdown.show .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mega dropdown content */
.mega-dropdown-content h6 {
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.mega-dropdown-content a {
  color: #295ca9;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.mega-dropdown-content a:hover {
  color: #7cc644;
  background-color: #fff;
}

.carousel-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-top: 85px;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  width: 90%; /* Makes sure it doesn't overflow */
  padding: 10px;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
}

.carousel-caption h5 {
  font-size: 1.2rem;
  font-weight: bold;
}

/* ✅ Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption h5 {
    font-size: 0.8rem;
  }

  .carousel-caption {
    top: 50%; /* Slightly lower on mobile */
    padding: 5px;
  }
}

@media (max-width: 480px) {
  .carousel-caption h1 {
    font-size: 0.8rem;
  }

  .carousel-caption h5 {
    font-size: 0.34em;
  }

  .carousel-caption {
    top: 40%;
  }
}

.linkBTN {
  /* background-color: #7cc644;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 20px; */

  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #7cc644;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.linkBTN:hover {
  background-color: #0d1705;
  color: #fff;
  border: 2px;
  border-style: solid;
  border-color: #7cc644;
}

.card-body h5 {
  color: #052c53;
}

.card-body p {
  color: #295ca9;
  font-style: italic; 
}
/* .features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 10px 0;
}

.icon-wrapper {
  background-color: #295ca9;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
  flex-shrink: 0;
  overflow: hidden;
}

.feature-icon {
  width: 80px;
  height: 80px;
  transition: transform 0.4s ease;
}

.feature-text {
  opacity: 0;
  margin-left: 0;
  transition: all 0.4s ease;
  color: #052c53;
  font-size: 1.5rem;
  font-weight: bold;
  font-style: oblique;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.feature-box:hover .icon-wrapper {
  background-color: #7cc644;
  transform: translateX(-20px);
}

.feature-box:hover .feature-text {
  opacity: 1;
  margin-left: 20px;
} */

.rectangle {
  height: 60px;
  width:20px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #7cc644;
  margin-right: 10px;
}

.bar {
  height: 75px;
  width: 2px;
  background-color: #fff;
  margin-right: 20px;
}

.OurServicesHeading {
  margin-top: 30px;
}

.serviceHeading {
  color: #fff;
}

.ourServices {
  margin-top: 50px;
}

.serviceContainer {
  border-style: solid;
  border-color: #fff;
  border-radius: 5px;
  margin-right: 10px;
}

/* .slider-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 1080px;
  margin: auto;
} */

.slider-wrapper {
  margin-left: 100px;
  margin-right: 100px;
  width: 700px; /* Adjust to fit your image width */
  height: 550px;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.productImage {
  min-width: 100%;
}

.productImage img {
  width: 100%;
  /* height: 600px; */
  display: block;
}

/* .slider-wrapper {
  overflow: hidden;
  width: 960px; /* 4 cards × (width + margin) */
/*}

.slider {
  display: flex;
  transition: transform 0.4s ease;
} */

/* .cards {
  min-width: 220px;
  height: 250px;
  margin: 0 10px; /* symmetric margin */
  /* border-radius: 20px; */
  /* background-color: #56ba59; */
  /* color: white;
  font-size: 20px;
  display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* text-align: start;
} */

/* .cards::before {
  content: "";
  position: absolute;
  border-radius: 20px;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* black overlay with 40% opacity */
  /* z-index: 1;
} */ 

.nav-btn {
  background-color: transparent;
  border: none;
  font-size: 30px;
  cursor: pointer;
}

.AltLogo {
  margin-top: 50px;
  height: 80px;
  width: 200px;
}

.AbtCompany {
  margin-top: 20px;
}

.getQuote {
  background-color: #7cc644;
  color: #fff;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  width: 100%; /* adjust as needed */
  height: auto;
}

.bottom-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px #000;
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 175px;
  perspective: 1000px; /* enables 3D effect */
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; /* hides back side when facing front */
  border-radius: 0.25rem;
}

.flip-card-front {
  background: white;
  text-align: center;
}

.flip-card-back {
  background: white;
  color: white;
  transform: rotateY(180deg);
}

/*** CIS styles **/

#ProductCarousel .carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")}
#ProductCarousel .carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")}


