body {
  font-family: Arial, sans-serif;
   overflow-x: hidden;
}
.bg-1{
  background-color: #303092 !important;
}
.bg-2 {
  background-color: #f6f299 !important;
}
.bg-3{
  background-color: #f58220  !important;
}
.bg-4{
  background-color: #FFF;
}

h2.heading{
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem; /* Large size */
  font-weight: 700; /* Bold */
  text-transform: uppercase;
  letter-spacing: 2px; /* Space out letters */
  text-align: center;
  padding: 20px;
  /* Modern Gradient Text Effect */
  background: linear-gradient(to right, #1E3A8A, #4ADEDE); /* Royal Blue to Cyan */
  -webkit-background-clip: text;
  color: transparent; /* Make text color transparent to show gradient */
  /* Subtle Text Shadow */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  /* Smooth Transition */
  transition: all 0.3s ease-in-out;
}


#product:hover .heading {
  color: #f58220; /* Change text color on hover */
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Increase shadow on hover */
  transform: scale(1.1); /* Slightly increase the size on hover */
  transition: all 0.3s ease-in-out; 
}


#solution:hover .heading {
  color: #303092; /* Change text color on hover */
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Increase shadow on hover */
  transform: scale(1.1); /* Slightly increase the size on hover */
  transition: all 0.3s ease-in-out; 

}
/* hover Effect */
#certifications:hover .heading {
  color: #f58220; /* Royal Blue */
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3); /* Increase shadow for depth */
  transform: scale(1.05); /* Slight zoom effect */
}
#client:hover .heading{
  color: #303092; /* Royal Blue */
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3); /* Increase shadow for depth */
  transform: scale(1.05); /* Slight zoom effect */
}
#contact:hover .heading{
  color: #f8f8ff; /* Royal Blue */
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3); /* Increase shadow for depth */
  transform: scale(1.05); /* Slight zoom effect */
}

.dealing-with-heading{
    color: #f58220; /* Change text color on hover */
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5); /* Increase shadow on hover */
  transform: scale(1.1); /* Slightly increase the size on hover */
  transition: all 0.3s ease-in-out;
  font-family: 'Arial', sans-serif;
  font-size: 2.5rem; /* Large size */
  font-weight: 700; /* Bold */
  text-transform: uppercase;
  letter-spacing: 2px; /* Space out letters */
  text-align: center;
  padding: 20px;
  /* Modern Gradient Text Effect */
  background: linear-gradient(to right, #f58220, #4ADEDE); /* Royal Blue to Cyan */
  -webkit-background-clip: text;
  color: transparent; /* Make text color transparent to show gradient */
  /* Subtle Text Shadow */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  /* Smooth Transition */
  transition: all 0.3s ease-in-out;
}



.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #f58220;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: -1;
  object-fit: contain;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  text-align: right;
  margin: 0;
  text-shadow: 2px 2px 3px rgba(255, 255, 255, 0), 4px 4px 6px rgba(255, 255, 255, 0.096);
}

 .nav-item .nav-link{
  color: #FFF  !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}



/* Ensure Swiper container has relative positioning */
.swiper-container-product {
  position: relative; /* This ensures pagination is positioned inside the Swiper */
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.swiper-container-solution{
  position: relative; /* This ensures pagination is positioned inside the Swiper */
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.swiper-container-certifications{
  position: relative; /* This ensures pagination is positioned inside the Swiper */
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}

#dealing-with {
    text-align: center;
    background-color: #f8f9fa;
    padding: 40px 0;
    overflow: hidden; /* Prevents horizontal overflow */
}

/* Swiper Container Styling */
.swiper-container-dealing {
    padding: 20px 0;
    max-width: 100%;
    overflow: hidden; /* Ensures no horizontal scroll */
}

/* Ensure all images have the same dimensions */
.swiper-slide img {
    width: 200px;  /* Adjust width as needed */
    height: 120px;  /* Adjust height as needed */
    object-fit: contain; /* Ensures aspect ratio is maintained */
    display: block;
    margin: auto;
}
/* Fix pagination position inside Swiper */
/* Ensure pagination is positioned properly inside Swiper */
.swiper-pagination {
  position: absolute;
  bottom: -40px; /* Moves pagination below Swiper */
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  text-align: center;
  z-index: 10; /* Keeps pagination above other elements */
}

/* Pagination bullet styling */
.swiper-pagination-bullet {
  background: #007bff !important; /* Set pagination dot color */
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #ff5722 !important; /* Active bullet color */
}
.swiper-button-next{
  color: #fff !important;
}
.swiper-button-prev{
  color: #fff !important;
}

.card-title {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #FFF !important;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  font-family: 'Arial', sans-serif;
}
.card-text {
  font-size: 14px;
  color: #FFF;
  font-family: 'Arial', sans-serif;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  line-height: 1.6;
  margin-top: 10px;
}

.card-title-wrapper {
  background-color: #ff5722;
  padding: 10px;
  border-radius: 8px;
}
.card-title-wrapper-solution{
  background-color: #00000063;
  padding: 10px;
  border-radius: 8px;
}

.card-title-wrapper h4 {
  margin: 0;
}
.client_name{
  text-decoration: none !important;
  font-weight:900 !important;
}
.client_name:hover{
  color: #ff5722 !important; 
}
.footer-text{
font-size: 15px;
}




/* Ensure pagination stays responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  h2.heading{
    font-size: 1.5rem;
  }

  .swiper-pagination {
      bottom: -30px; /* Adjust pagination for tablets */
  }
}

@media (max-width: 768px) {
  .logo-text{
    font-size: 1rem;
  }
   .hero {
    height: 20vh; /* Reduce height on smaller screens */
  }

  .hero h1 {
    font-size: 1.2rem; /* Reduce text size for better readability */
    text-align: center; /* Center text on mobile */
  }

  .overlay {
    padding: 10px; /* Reduce padding for smaller screens */
  }
  .swiper-pagination {
      bottom: -25px; /* Adjust pagination for mobile */
  }
  h2.heading{
    font-size: 1.5rem;
  }
  .swiper-container-product {
    padding-top: 0;
  }
  .swiper-container-solution {
    padding-top: 0;
  }
  .swiper-container-certifications {
    padding-top: 15px;
    padding-bottom: 15px;
}
.dealing-with-heading{
    font-size:1rem;
}
}




.card-img-container {
  width: 240px;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img-container-2{
  width: 240px;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-shadow {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 
              0 6px 6px rgba(0, 0, 0, 0.3);
  /* border-radius: 15px; */
  transition: transform 0.3s ease-in-out;
}

.custom-shadow:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3), 
              0 10px 10px rgba(0, 0, 0, 0.2);
}



.large-text {
  font-size: 1.5em; /* Adjust the size as needed */
  transition: font-size 0.3s ease-in-out;
}

.about-icon {
  font-size: 2.5rem;
  color: #007bff;
}
.about-section {
  background: #f8f9fa;
  padding: 60px 0;
}


/* .card {
  width: 300px;
} */


/* Client section  */

.happy-client-card {
  width: 30rem;
  border: none;
  border-radius: 10px;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;

}

.happy-client-card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 20px 40px rgba(0, 0, 0, 0.6), 0 10px 15px rgba(0, 0, 0, 0.2);
}

.client-img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin: 0 auto 15px;
}

.client-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.client-role {
  font-size: 1rem;
  color: #777;
}

.client-feedback {
  font-size: 1rem;
  color: #555;
  font-style: italic;
}

@media (max-width: 768px) {
  .happy-client-card {
      width: 90%;
  }
  .dealing-with-heading{
    font-size:1rem;
}
}





