
.custom-logo-col {
  width: 160px !important;
  /* Increase as needed */
}


/* Carousel Image */
.carousel-img {
  height: 100vh;
  object-fit: cover;
}

.carousel-indicators li {
  list-style: none !important;
  text-indent: -9999px;
  /* Hide accidental text */
  background-color: #999;
  /* Optional: adjust the dot color */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-indicators {
  margin-bottom: 10px;
  /* Optional: spacing below carousel */
}

@media (max-width: 768px) {
  .carousel-img {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .carousel-img {
    height: 50vh;
  }
}

/* Carousel Mask */
.carousel-mask {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom right, rgba(22, 155, 215, 0.6), rgba(22, 155, 215, 0.6));
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}

/* Overlay Panel */
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 25%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.6);
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
}

.logo-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.logo-links li {
  display: flex;
  align-items: center;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 70px;
}

.clickable-link {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.clickable-link.active {
  color: #169bd7;
  font-weight: bold;
}

.clickable-link:hover {
  color: #169bd7;
  font-weight: bold;
  opacity: 1;
}

.logo-links {
  overflow-y: auto;
  max-height: 80vh;
  padding-right: 10px;
  margin-top: 15vh;
}

/* Text Overlay */
.text-container {
  position: absolute;
  bottom: 5%;
  left: 5%;
  /* ✅ Moves it to the left side */
  transform: none;
  /* ✅ Removes horizontal centering */
  color: #fff;
  font-size: 2.2rem;
  text-align: left;
  /* ✅ Aligns text to the left */
  z-index: 4;
}
@media (max-width: 1024px) {
  .overlay {
    width: 30%;
    padding: 15px;
  }

  .text-container {
    font-size: 1.8rem;
    bottom: 4%;
  }
}

@media (max-width: 768px) {
  .overlay {
    width: auto;
    max-width: 50%;
    height: auto;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
    position: absolute;
    top: 0;
    right: 0;
    /* ✅ Stick to right */
    left: auto;
    /* ✅ Remove default left alignment */
    z-index: 3;
  }

  .logo-links {
    max-height: none;
    margin-top: 20vh;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 10px;
  }

  .logo-links li {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .clickable-link {
    font-size: 16px;
  }

  .text-container {
    font-size: 1.5rem;
    text-align: left;
    left: 5%;
    bottom: 3%;
    transform: none;
  }
}

@media (max-width: 480px) {
  .overlay {
    padding: 10px;
    max-width: 60%;
    /* ✅ Slightly narrower for smaller phones */
  }

  .logo-links {
    align-items: flex-end;
    margin-top: 20vh;
    margin-right: 10px;
  }

  .clickable-link {
    font-size: 14px;
  }

  .text-container {
    font-size: 1.2rem;
    left: 5%;
    bottom: 2%;
  }
}

/* Utility Classes */
.no-gutters {
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

/*About section*/
.about-section {
  background-color: #ffffff;
  padding: 100px 0;
  margin-top: -60px;
}

.about-section .section-title {
  font-size: 36px;
  font-weight: bold;
  color: black;
}

.about-section .section-subtitle {
  font-size: 18px;
  color: black;
}

.about-text {
  font-size: 16px;
  color: black;
  margin-bottom: 20px;
}

.about-text1 {
  text-align: justify;
}

.about-image {
  margin-top: 20px;
}

.about-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.feature-item {
  width: calc(33.33% - 20px);
  margin: 10px;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  position: relative;
}

.feature-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: bounce 0.5s ease-in-out;
  animation: glow 0.5s ease-in-out;
}
.feature-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #2beaf4, #212ccf);
  border-radius: 10px;
  opacity: 0.5;
  animation: flip 0.5s ease-in-out;
}

.feature-item i {
  font-size: 24px;
  color: black;
  margin-bottom: 10px;
}

.feature-item h3 {
  font-size: 18px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: black;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.stat-item {
  width: calc(33.33% - 20px);
  margin: 10px;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
  position: relative;
}

.stat-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: bounce 0.5s ease-in-out;
  animation: glow 0.5s ease-in-out;
}
.stat-item:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #2beaf4, #212ccf);
  border-radius: 10px;
  opacity: 0.5;
  animation: flip 0.5s ease-in-out;
}

/* Add bounce effect on hover */
.feature-item:hover {
  animation: bounce 0.5s ease-in-out;
}

.stat-item:hover {
  animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

/* Apply the animation */
.element {
  animation: flip 1s ease-in-out forwards; /* Runs once and stays at 180deg */
}

/* Make feature-item and stat-item responsive */
@media (max-width: 768px) {
  .feature-item {
    width: calc(50% - 20px);
  }
  .stat-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .feature-item {
    width: 100%;
  }
  .stat-item {
    width: 100%;
  }
}

.stat-item h3 {
  font-size: 24px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 14px;
  color: black;
}

.about-btn {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.about-btn:hover {
  background-color: #444;
}

/*sticky bar*/
.social-media-nav {
  background-color: #f7f7f7;
  padding: 5px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: fit-content;
  animation: slide-in 6s;
  position: relative;
  top: -80px; /* adjust the value to move it up */
}

@keyframes slide-in {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

.social-media-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-media-nav li {
  margin-bottom: 10px;
}

.social-media-nav a {
  text-decoration: none;
  color: #337ab7;
}

.social-media-nav a:hover {
  color: #23527c;
}

.social-media-nav:hover {
  animation-play-state: paused;
}

.social-media-nav i {
  margin-right: 0;
}

/*testimony*/

/*our product*/

/*footer*/


/* hover effect on carousel*/
#unique-id a {
  display: block;
  position: relative;
}

#unique-id a h1 {
  color: #007bff;
  transition: all 0.3s ease-in-out;
}

#unique-id a:hover img {
  filter: brightness(80%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-in-out;
}

#unique-id a:hover h1 {
  color: #fff;
  animation: pulse 0.5s;
}

#unique-id a:hover i {
  color: #fff;
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}

#unique-id a:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 255, 0.5),
    rgba(0, 0, 255, 0.5)
  );
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

#unique-id a:hover h1 {
  color: #fff;
  animation: pulse 0.5s forwards;
}

/*carousel*/
.position-relative {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.position-relative:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.5);
}

.position-relative img {
  transition: opacity 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.position-relative:hover img {
  opacity: 0.8;
}

.position-relative h5 {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out,
    color 0.3s ease-in-out;
}

.position-relative:hover h5 {
  opacity: 1;
  transform: scale(1.05);
  color: #fff;
}

.position-relative .bi {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.position-relative:hover .bi {
  animation: pulse 1s infinite;
  transform: scale(1.05);
  opacity: 1;
  color: #fff;
}

/*logo carousel*/
#logo-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

#logo-carousel .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#logo-carousel .carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
}

#logo-carousel .carousel-item.active {
  opacity: 1;
}

#logo-carousel .carousel-item img {
  width: 100px;
  height: 100px;
  margin: 20px;
  transition: transform 1s;
}

#logo-carousel .carousel-item.active img {
  transform: translateX(0);
}

#logo-carousel .carousel-item:not(.active) img {
  transform: translateX(-100%);
}

/*CSS for Chatbox*/
.chatbox-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.chatbox-button {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.chatbox-button:hover {
  background: #0056b3;
}

.chatbox-menu {
  display: none;
  position: absolute;
  bottom: 60px;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 10px;
  width: 220px;
}

.chatbox-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  color: #333;
}

.chat-option {
  display: flex;
  align-items: center;
  padding: 10px;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  margin: 5px 0;
  transition: 0.3s;
}

.chat-option i {
  font-size: 20px;
  margin-right: 10px;
}

.whatsapp {
  background: #25d366;
}

.messenger {
  background: #0084ff;
}

.email {
  background: #ff5722;
}

.chat-option:hover {
  opacity: 0.8;
}

#backToTop {
  position: fixed;
  bottom: 20px;
  left: 20px; /* Move to the left */
  display: none;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}

#backToTop:hover {
  background-color: #0056b3;
}
/* Bounce Animation */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}





/* Base style for logos */
/* Make all logos the same size */
.client-logos-section img {
  width: 120px;
  /* fixed width */
  height: 80px;
  /* fixed height */
  object-fit: contain;
  /* keeps aspect ratio without distortion */
  filter: grayscale(100%);
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* Hover effects */
.client-logos-section img:hover {
  filter: grayscale(0%);
  transform: scale(1.0) rotate(0deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}






