:root {
  --primary-blue: #177165;
  --hover-blue: #145a54;
  --white: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --black: #1a1a1a;
  --background: #e8f6e9;
  --icon-hover: #d3e8dc;
  --clr-Light-Green: hsl(148, 38%, 91%);
  --clr-Green: hsl(169, 82%, 27%);
  --clr-White: hsl(0, 0%, 100%);
  --clr-Medium-Grey: hsl(186, 15%, 59%);
  --clr-Dark-Grey: hsl(187, 24%, 22%);
  --fw-b: 700;


}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  background-color: var(--background);

}

h1,
h2,
h3,
h4 {
  font-family: "Roboto", serif;
}
a{
  text-decoration: none;
}

/***** contact nav *****/
/* Reset any potential parent interference */
header {
  overflow: visible; /* Ensure header doesn't clip sticky elements */
}

/* Contact Navigation Basic Styling */
.contact-nav {
  background-color: var(--primary-blue);
  font-family: 'Karla', sans-serif;
  font-size: 0.9rem;
}

.contact-nav .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* Social Icons */
.social-icons a {
  color: var(--white);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--clr-Medium-Grey);
}

/* Branding Section */
.brand-text h4 {
  color: var(--white);
}

/* Contact Information */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--clr-Medium-Grey);
}

/* GST Badge Styling */
.gst-info {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, var(--clr-Green), hsl(169, 82%, 20%));
  color: var(--clr-White);
  padding: 6px 12px;
  border-radius: 25px;
  font-weight: var(--fw-b);
  text-transform: uppercase;
  font-size: 0.85rem;
  border: 2px solid var(--clr-Green);
  box-shadow: 0 0 10px rgba(22, 103, 101, 0.7);
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: borderColorAnim 4s linear infinite;
}

.gst-info:hover {
  transform: scale(1.05);
}

.gst-info i {
  margin-right: 6px;
  font-size: 1rem;
}

/* Animated Border Color */
@keyframes borderColorAnim {
  0% { border-color: var(--clr-Green); }
  50% { border-color: var(--clr-White); }
  100% { border-color: var(--clr-Green); }
}

/* White line animation overlay for GST badge */
.gst-info::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: slideLine 3s linear infinite;
}

@keyframes slideLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/***** Main Navbar *****/
.navbar {
  background-color: var(--clr-White);
  font-family: 'Karla', sans-serif;
  position: sticky !important; /* Force stickiness */
  top: 0;
  z-index: 1000; /* Ensure it’s above other content */
  width: 100%;
}

/* Logo image adjustments */
.logo-img {
  max-height: 50px;
}

/* Navbar link styling */
.navbar-nav .nav-link {
  color: var(--black);
  font-weight: 600;
  margin: 0 8px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--clr-Green);
}

/* Dropdown menu styling */
.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar-nav .dropdown-item {
  color: var(--clr-Dark-Grey);
  transition: background-color 0.3s;
}

.navbar-nav .dropdown-item:hover {
  background-color: var(--clr-Light-Green);
  color: var(--clr-Green);
}

/* Button styling */
.btn-primary {
  background-color: var(--clr-Green);
  border-color: var(--clr-Green);
  font-weight: var(--fw-b);
  padding: 8px 20px;
  border-radius: 25px;
  transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
  background-color: var(--hover-blue);
  border-color: var(--hover-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar-nav {
      text-align: center;
  }
}
/***** causoral home *****/
/* Carousel Container */
#carousel {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  /* background-color: #000; */
}

/* Carousel Slide */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Carousel Slide with Images */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Details Section */
.details {
  position: absolute;
  bottom: 12%;
  left: 5%;
  color: white;
  z-index: 2;
  max-width: 1000px;
  padding: 20px;
  /*Addssomespacing*/
  border-radius: 8px;
  /*Roundsthecorners*/
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}

.details .title,
.details .subtitle,
.details .description {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  /* Enhances text readability */

}

.details .title {
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--background);
}

.details .description {
  font-size: 24px;
  font-weight: 600;
  color: var(--background);
  backdrop-filter: blur(3px);



  /* background-color: rgba(255, 255, 255, 0.3); */
}

/* Controls */
.controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}

.arrow {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.arrow:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Pagination */
.pagination {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 90%;
  z-index: 3;
}

.progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--primary-blue);
  width: 0%;
  transition: width 0.5s ease;
}

.slide-indicator {
  text-align: right;
  color: white;
  margin-top: 5px;
  font-size: 14px;
}

.progress-bar {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

/************************** End causoral home **************************/




/*********************** Section our services  ***********************************/

.services-section {
  padding: 8rem 0;
  background: var(--background);
  position: relative;
  overflow: hidden;
}

.bg-decor-matrix {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, var(--clr-Green) 0.03, var(--clr-Green) 0.03 10px, transparent 10px, transparent 20px);
  z-index: 0;
  opacity: 0.8;
}

.bg-decor-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: radial-gradient(circle at 30% 20%, var(--clr-Light-Green) 0%, transparent 50%);
  */animation: float 12s infinite ease-in-out;
  z-index: 0;
  -webkit-animation: float 12s infinite ease-in-out;
}

.text-gradient {
  background: linear-gradient(45deg, var(--primary-blue), var(--clr-Green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  box-shadow: 0 10px 40px var(--shadow-color);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  -moz-transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  -ms-transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  -o-transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 0 25px 60px rgba(23, 113, 101, 0.2);
  /*Usingprimary-blueinrgba*/:;
  -webkit-transform: translateY(-12px) rotate(1deg);
  -moz-transform: translateY(-12px) rotate(1deg);
  -ms-transform: translateY(-12px) rotate(1deg);
  -o-transform: translateY(-12px) rotate(1deg);
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.091;
  transition: all 0.5s ease;
  z-index: 1;
}

.service-card:hover .card-image {
  opacity: 0.4;
  transform: scale(1.1);
}

.card-inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--white) 0.95, var(--white) 0.85);
}

.icon-orbit {
  width: 75px;
  height: 75px;
  background: var(--icon-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.icon-orbit::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--clr-Light-Green);
  border-radius: 50%;
  opacity: 0;
  animation: orbit 8s linear infinite;
  transition: opacity 0.3s ease;
}

.service-card:hover .icon-orbit::after {
  opacity: 1;
}

.service-card:hover .icon-orbit {
  background: var(--clr-Light-Green);
  transform: scale(1.2) rotate(15deg);
}

.service-card i {
  color: var(--primary-blue);
  transition: all 0.5s ease;
}

.service-card:hover i {
  transform: scale(1.3);
  color: var(--hover-blue);
}

.card-title {
  color: var(--black);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-weight: var(--fw-b);
}

.service-card:hover .card-title {
  color: var(--primary-blue);
}

.card-text {
  line-height: 1.5;
  font-weight: 500;
  color: var(--black);
}

/* Scroll Animation with Tilt */
.service-item {
  opacity: 0;
  transform: translateY(50px) rotate(-2deg);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.service-item.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Keyframes */
@keyframes orbit {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-20px); opacity: 0.8; }
}

/* Responsive */
@media (max-width: 1200px) {
  .icon-orbit { width: 65px; height: 65px; }
  .icon-orbit::after { width: 90px; height: 90px; }
}

@media (max-width: 991px) {
  .services-section { padding: 6rem 0; }
  .display-3 { font-size: 2.75rem; }
}

@media (max-width: 767px) {
  .services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .service-item {
    flex: 0 0 calc(50% - 0.5rem); /* Two cards side by side */
    max-width: calc(50% - 0.5rem);
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .card-image {
    opacity: 0.15;
  }
}

@media (max-width: 575px) {
  .service-item {
    flex: 0 0 100%; /* Stack cards on very small screens */
    max-width: 100%;
  }
}



/*****  intro section *****/

.hero-section {
  padding-top: 3rem;
  /* max-width: 20px; */
  margin-bottom: 20px;
}

.circle-text {
  height: 140px;
  width: 140px;
  display: inline-block;
  background-color: var(--white);
  border-radius: 50%;
  padding: 26px;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 20px;
}

.promo-text h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.promo-image img {
  max-width: 60%;
  height: auto;
}

.btn-success {
  background-color: var(--primary-blue);
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 30px;
  color: var(--white);
  text-transform: uppercase;
}

.btn-success:hover {
  background-color: var(--hover-blue);
}

.hero-circle {
  background-color: #d3e8dc;
  border-radius: 50%;
  padding: 105px 0px;
}

/***** End  intro sectioo *****/

/***** product section *****/

/* Product Category Heading */
.product-category {
  font-weight: 800;
  letter-spacing: 3px;
  font-size: 40px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2rem;
}

/* Product Card Styling */
.product-card {
  text-align: center;
  padding: 10px;
  border: 2px solid var(--icon-hover);
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 4px 6px var(--shadow-color);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.4);
}

/* Product Card Headings and Paragraphs */
.product-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.product-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}



/***** End product section *****/

/***** slider product  *****/
#product {
  background: var(--background);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.product-category {
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  
  /* Gradient text effect */
  background: linear-gradient(45deg, var(--primary-blue), var(--hover-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Subtle text shadow for extra depth */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Grid layout for product cards using Bootstrap's grid system */
.product-card {
  text-align: center;
  padding: 15px;
  border: 2px solid var(--icon-hover);
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.product-card:hover {
  transform: scale(1.01);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}

.product-card h5 {
  font-weight: bold;
  margin: 10px 0;
  font-size: 1.1rem;
  color: var(--black);
}

.product-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Images styling in product card with hover animation */
.product-card img {
  width: 80%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* On hovering the product card, animate the image */
.product-card:hover img {
  transform: scale(1.01);
  filter: brightness(1.05);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
  .product-category {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  
  .product-card {
    padding: 10px;
  }
  
  .product-card h5 {
    font-size: 1rem;
  }
  
  .product-card p {
    font-size: 0.9rem;
  }
}
/***** End slider product  *****/

/***** WHY CHOOSE US *****/
/* ================================
   WHY CHOOSE US SECTION - ENHANCED
   ================================ */
   .choose-us {
    background-color: var(--icon-hover);
    color: var(--white);
    font-family: "Shippori Antique", sans-serif;
    font-weight: 400;
    padding: 20px 30px;
    border-radius: 50px 50px 0 0;
    width: 100%;
  }
  
  .choose-heading {
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }
  

  
  .choose-heading .highlight {
    background: linear-gradient(45deg, var(--primary-blue), var(--hover-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
   
  }
  
  /* Ensure the gradient fills the text fully */
  .highlight {
    background-size: 200% 200%;
  }
  

  
  .choose-us p {
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: var(--black);
  }
  
  /* Container for feature cards */
  .choose-container {
    margin-top: 30px;
  }
  
  /* Each feature card (choose-wrapper) */
  .choose-wrapper {
    text-align: center;
    margin-top: 20px;
  }
  
 
  /* Video Styling and Hover Animation */
  .choose-wrapper video {
    border-radius: 10px;
  }
 
  
  /* Flex container for text within feature cards */
  .flex h2 {
    font-size: 1.8rem;
    color: #000;
    margin-top: 10px;
  }
  .flex p {
    font-size: 0.9rem;
    margin-top: 10px;
  }
 
 
  
/***** End WHY CHOOSE US *****/

/***** team members *****/
.container-team {
  background-image: url('./assets/partner-image/partnerbg-5.png ');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: auto;
  width: 95%;
  border-radius: 20px;
  padding: 30px 0;
  margin: 0 auto;
  margin-top: 12px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

/* Enhanced Team Heading */
.team-heading {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 1rem 0;
  
  /* Gradient Text Effect */
  background: linear-gradient(45deg, var(--primary-blue), var(--hover-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Animation: Fade In & Slide Down */
  
  /* Subtle Text Shadow for Depth */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}



/* Responsive Adjustments */
@media (max-width: 768px) {
  .team-heading {
    font-size: 2.2rem;
    margin: 1.2rem 0;
  }
}

@media (max-width: 576px) {
  .team-heading {
    font-size: 1.8rem;
    margin: 1rem 0;
  }
}


/* Team Container */
#slider-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin: auto;
  flex-direction: column;
  /* Stack images and text vertically for smaller screens */
}

/* Slider Container */
#slider-container {
  margin-right: 150px;
  position: relative;
  width: 100%;
  max-width: 350px;
  /* Ensure max width */
  height: 300px;
  margin-left: auto;
  margin-bottom: 15px;
  /* Add some spacing between image and text */
}

/* Stacked Cards */
.slider-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.slider-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Background Card Style */
.slider-card.background {
  transform: translate3d(-30px, 20px, -50px);
  opacity: 0.6;
  z-index: 1;
  box-shadow: none;
}

/* Foreground Card Style */
.slider-card.active {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: 2;
  box-shadow: rgba(0, 34, 45, 0.5) 0px 20px 50px;
}

/* Text Container */
#text-container h1 {
  font-size: 4rem;
  /* Make text responsive */
  font-weight: bold;
  line-height: 1.3;
  color: var(--primary-blue);
  /* margin-bottom: 30px; */
  margin-left: 16rem;
}

#text-container p {
  font-size: 2.5rem;
  /* Make text responsive */
  font-weight: bold;
  line-height: 1.3;
  /* color: var(--primary-blue); */
  /* margin-bottom: 30px; */
  margin-left: 16rem;
}

/* Pagination Dots */
.pagination-dots {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pagination-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #ccc;
  transition: background-color 0.3s ease;
}

.pagination-dots .dot.active {
  background-color: var(--hover-blue);
}

/* Styling for image description */
#image-description {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
}

/* On smaller screens (mobile or tablet) */
@media (max-width: 767px) {
  #slider-wrapper {
    flex-direction: column;
    /* Stack image and text vertically */
    align-items: center;
  }

  #slider-container {
    max-width: 60%;
    margin-bottom: 10px;
    /* Reduce the space between the image and text */
    margin-right: 70px;
  }

  #text-container h1 {
    /* margin-top: 50%; */
    margin-left: 0;
    font-size: 1.9rem;
    /* Adjust text size for mobile screens */
  }

  #text-container p {
    /* margin-top: 50%; */
    margin-left: 0;
    font-size: 1rem;
    /* Adjust text size for mobile screens */
  }

  .pagination-dots {
    margin-top: 16px;
  }
}

/***** End team members *****/

/***** Project counter  *****/
.counter {
  margin-top: 50px;
  padding: 2rem;
  border-radius: 25px;
  background: var(--icon-hover);
  box-shadow: 0 5px 10px var(--shadow-color);
  text-align: center;
}

.row-counter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.col {
  flex: 1 1 calc(50% - 1rem); /* Two items per row on small screens */
  max-width: calc(50% - 1rem);
}

/* On medium and larger screens, show 4 items per row */
@media (min-width: 768px) {
  .col {
    flex: 1 1 calc(25% - 1rem);
    max-width: calc(25% - 1rem);
  }
}

/* Count Content Card */
.count-content {
  background-color: var(--white);
  color: var(--primary-blue);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 4px 6px var(--shadow-color);
  cursor: default;
}

.count-content:hover {
  transform: translateY(-10px);
}

/* Count Number & Label */
.count-content span {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.count-content h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .count-content {
    padding: 1rem 0.8rem;
  }
  .count-content span {
    font-size: 2.5rem;
  }
  .count-content h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .count-content {
    padding: 0.8rem 0.5rem;
  }
  .count-content span {
    font-size: 2rem;
  }
  .count-content h3 {
    font-size: 1rem;
  }
}

/* ==========================================================================
   SPACER (Optional, adjust as needed)
   ========================================================================== */
.spacer {
  height: 30px;
}

/***** End Project counter  *****/

/* ==========================================================================
   OUR CLIENTS SECTION
   ========================================================================== */
  /* Slider Container */
.slider-icon {
  position: relative;
  overflow: hidden;
}

/* Unordered list as a flex container for continuous sliding */
.slider-icon ul {
  display: flex;
  gap: 3.5rem;
  animation: slideClients 10s linear infinite;
  transition: transform 0.3s ease ;
  -webkit-animation: slideClients 10s linear infinite;
  -webkit-transition: transform 0.3s ease ;
  -moz-transition: transform 0.3s ease ;
  -ms-transition: transform 0.3s ease ;
  -o-transition: transform 0.3s ease ;
}

.slider-icon ul:hover {
  animation-play-state: paused;
}

/* Each slider item */
.slider-icon ul li {
  flex: 0 0 auto;
  width: 150px;
  transition: transform 0.3s ease;
  list-style: none;
}

.slider-icon ul li:hover {
  transform: scale(1.1);
}

/* Image Styling with Hover Effect */
.slider-icon ul li img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter 0.3s ease, transform 0.3s;
  -webkit-transition: filter 0.3s ease, transform 0.3s;
  -moz-transition: filter 0.3s ease, transform 0.3s;
  -ms-transition: filter 0.3s ease, transform 0.3s;
  -o-transition: filter 0.3s ease, transform 0.3s;
}

.slider-icon ul li:hover img {
  filter: grayscale(0%);
}

/* Keyframes for continuous sliding animation */
@keyframes slideClients {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
}
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-title .product-category {
    font-size: 2rem;
  }
  .slider-icon ul li {
    width: 120px;
  }
}

@media (max-width: 576px) {
  .services-title .product-category {
    font-size: 1.8rem;
  }
  .slider-icon ul li {
    width: 100px;
  }
}

/***** contactus modal *****/ 
 /* Modal Content */
 .modal-content {
  background: var(--clr-White);
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 20px var(--shadow-color);
  overflow: hidden;
  border: 1px solid var(--clr-Light-Green);
}

/* Modal Header */
.modal-header {
  background: var(--primary-blue);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--hover-blue);
}
.modal-header .modal-title {
  color: var(--white);
  font-weight: var(--fw-b);
  font-size: 1.25rem;
  width: 504px;
}
.btn-close {
  filter: invert(1);
  background: transparent;
  border: none;
  transition: background-color 0.3s ease;
}
.btn-close:hover {
  background: var(--icon-hover);
  border-radius: 50%;
}

/* Modal Body */
.modal-body {
  padding: 1.5rem;
}

/* Entrance Animation */
.animated-modal {
  animation: modalZoomIn 0.5s ease-out;
}
@keyframes modalZoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Input Fields */
.animated-input {
  background: var(--white);
  border: 1px solid var(--clr-Medium-Grey);
  border-radius: 4px;
  padding: 0.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.animated-input:focus {
  
  box-shadow: none;
  border-color: inherit;
}
.form-label {
  margin-bottom: 0.5rem;
  color: var(--clr-Dark-Grey);
  font-weight: 500;
}

/* Submit Button */
.animated-btn {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-weight: var(--fw-b);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.animated-btn:hover {
  background: var(--hover-blue);
  transform: scale(1.05);
}

/***** End contactus modal *****/




/***** footer section *****/
footer {
  background: url('./assets/footer-assets/footerbg.jpg') no-repeat center center/cover;
  color: var(--white);
  position: relative;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

footer .container {
  position: relative;
  /* Ensures the text content is above the overlay */
  z-index: 2;
  /* Make sure the content is above the overlay */
}

footer iframe {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

footer h3 {
  margin-top: 10px;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

footer img {
  width: 33px;
  height: 33px;
}

footer .contact-us ul li p {
  font-size: 1rem;
  margin-left: 15px;
}

footer .footer-end {
  background-color: var(--background);
}

footer .footer-end p {
  font-size: 0.9rem;
  color: var(--black);
}

footer p {
  font-size: 1rem;
  color: var(--white);
}

/***** End footer section *****/

/***** whatsapp *****/
.whatsapp {
  position: fixed;
  bottom: 40px;
  right: 10px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Styling the WhatsApp Button */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  color: var(--hover-blue);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 8px var(--shadow-color);
  text-decoration: none;
  font-weight: bold;
  /* transition: background-color 0.3s ease, transform 0.3s ease; */
}

/* Icon inside the button */
.whatsapp-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  margin-right: 10px;
  /* padding: 10px; */
}

/* Text next to the WhatsApp icon */
.whatsapp-text {
  font-size: 18px;
  padding: 10px;
}

/* Hover effect */
.whatsapp-btn:hover {
  background-color: var(--icon-hover);
  transform: scale(1.05);
}

/* Media Query for Mobile */
@media (max-width: 768px) {
  .whatsapp-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .whatsapp-icon {
    width: 35px;
    height: 35px;
  }

  .whatsapp-text {
    font-size: 14px;
  }
}

/***** End whatsapp *****/

/***** *****************Media query************* *****/

@media (max-width: 1200px) {
  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    padding: 10px 15px;
    font-size: 12px;
  }

  .navbar-brand img {
    max-height: 45px;
  }

  .promo-text h1 {
    font-size: 2.5rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .product-category {
    font-size: 32px;
  }

  #slider-container {
    margin-right: 80px;
  }

  /* Text Container */
  #text-container h1 {
    font-size: 3.5rem;
    /* Make text responsive */
    margin-left: 4rem;
  }

  #text-container p {
    font-size: 2.5rem;
    /* Make text responsive */
    margin-left: 2rem;
  }
}

@media (max-width: 992px) {
  #carousel {
    height: 75vh;
  }

  .details {
    bottom: 12%;
    left: 8%;
    max-width: 450px;
  }

  .details .title {
    font-size: 32px;
  }

  .details .subtitle {
    font-size: 32px;
  }

  .details .description {
    font-size: 16px;
  }

  .arrow {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .navbar-nav {
    text-align: center;
  }

  .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }

  .drop-menu-content {
    position: static;
    box-shadow: none;
    padding: 10px;
  }

  .promo-text h1 {
    font-size: 2rem;
  }

  .promo-image img {
    max-width: 70%;
  }

  .product-card img {
    max-width: 80px;
  }

  .details .title {
    font-size: 36px;
  }

  #slider-container {
    margin-right: 40px;
  }

  /* Text Container */
  #text-container h1 {
    font-size: 3rem;
    /* Make text responsive */
    margin-left: 2rem;
  }

  #text-container p {
    font-size: 2rem;
    /* Make text responsive */
    margin-left: 1.6rem;
  }
}

@media (max-width: 768px) {

  /* Small screens (e.g., mobile) */
  .navbar-brand img {
    max-height: 40px;
  }

  .nav-item {
    font-size: 16px;
    text-transform: uppercase;
    /* font-weight: 500; */
    padding: 2px;
  }

  .promo-text h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .promo-image img {
    max-width: 90%;
    margin: 0 auto;
  }

  .btn {
    padding: 10px;
    font-size: 0.8rem;
  }

  .product-category {
    font-size: 28px;
    text-align: center;
  }

  .choose-heading {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .product-card img {
    max-width: 70px;
  }

  .details .title {
    font-size: 28px;
  }

  .circle-text {
    height: 120px;
    width: 120px;
    font-size: 1rem;
  }

  .product-category {
    font-size: 32px;
  }

  #slider-container {
    margin-right: 40px;
  }

 

  /* Text Container */
  #text-container h1 {
    font-size: 2rem;
    /* Make text responsive */
    margin-left: 2rem;
  }

  #text-container p {
    font-size: 1.8rem;
    /* Make text responsive */
    margin-left: 1rem;
  }

  #carousel {
    height: 65vh;
  }

  .details {
    bottom: 15%;
    left: 10%;
    max-width: 430px;
  }

  .details .title {
    font-size: 28px;
  }

  .details .subtitle {
    font-size: 28px;
  }

  .details .description {
    font-size: 15px;
  }

  .arrow {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {

  /* Extra-small screens (e.g., small mobile) */
  .navbar-brand img {
    max-height: 35px;
  }

  .promo-text h1 {
    font-size: 1.5rem;
  }

  .promo-image img {
    max-width: 100%;
  }

  .btn {
    padding: 8px;
    font-size: 0.7rem;
  }

  .product-card img {
    max-width: 60px;
  }

  .details .title {
    font-size: 24px;
  }

  .circle-text {
    height: 100px;
    width: 100px;
    font-size: 0.8rem;
  }

  .counter {
    padding: 1rem;
  }

  .count-content span {
    font-size: 2rem;
  }

  #slider-container {
    margin-right: 50px;
  }

 

  .product-category {
    font-weight: 500;
    letter-spacing: 0px;
    padding: 0 0 0 20px;
    font-size: 1.8rem;

  }

  .choose-heading {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }

  /* Text Container */
  #text-container h1 {
    font-size: 2rem;
    /* Make text responsive */
    margin-left: 2rem;
  }

  #text-container p {
    font-size: 2rem;
    /* Make text responsive */
    margin-left: 1rem;
  }

  #carousel {
    height: 60vh;
  }

  .details {
    bottom: 16%;
    left: 10%;
    max-width: 390px;
  }

  .details .title {
    font-size: 24px;
  }

  .details .subtitle {
    font-size: 24px;
  }

  .details .description {
    font-size: 14px;
  }

  .arrow {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .contact-nav {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 10px;
  }

  .contact-info {
    display: block;
    text-align: center;
    margin-top: 10px;
    line-height: 2;
  }
}

@media (max-width: 450px) {
  .contact-nav {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
    margin-bottom: 5px;
  }

  .contact-nav .social-icons i {
    font-size: 18px;
    padding: 5px;
    /* margin-right: 10px; */
  }

  span {
    display: inline-block;
  }

  .contact-info {
    display: block;
    text-align: center;
    margin-top: 5px;
  }

  .product-category {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0px;
    padding: 0 0 0 20px;
  }

  #carousel {
    height: 55vh;
    /* Reduce the height further for small screens */
  }

  .details {
    bottom: 10%;
    left: 5%;
    max-width: 330px;
    /* Further narrow the text area */
  }

  .details .title {
    font-size: 20px;
    /* Smaller font for the title */
  }

  .details .subtitle {
    font-size: 20px;
    /* Adjust subtitle font size */
  }

  .details .description {
    font-size: 14px;
    /* Smaller font for description */
  }

  .arrow {
    width: 18px;
    /* Reduce arrow size */
    height: 18px;
    font-size: 10px;
  }

  .pagination .progress-bar {
    width: 90%;
    /* Narrower progress bar */
    height: 3px;
    /* Thinner progress bar */
  }

  .slide-indicator {
    font-size: 10px;
    /* Smaller font for slide indicator */
  }

  .footer-end p {
    font-size: 0.7rem;
  }
}

/***** End *****************Media query************* *****/