@import url("https://fonts.googleapis.com/css2?family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Source+Code+Pro&display=swap");
/* Custom styles for mobile menu transition */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out; /* Smooth transition for height */
  /* Ensure it's not visible when closed, even with max-height */
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
#mobile-menu.open {
  max-height: 500px; /* Adjust based on expected content height */
  opacity: 1;
  transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}
.linktag {
  text-decoration: none;
  color: black;
  font-size: large;
}

.mobile-menu-1 {
  .linktag {
    font-size: medium;
  }
}
.noto-sans {
  font-family: "Sansation", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.wave-divider {
  position: relative;
  /* bottom: 22%; */
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
  margin-top: -80px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.flipped-wave {
  transform: rotate(180deg);
}
.flipped-wave-main {
  transform: rotate(0deg);
}

.wave-divider-2-main {
  position: relative;
  /* bottom: 50%; */
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
  margin-top: -80px;
}

.wave-divider-2-main svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wave-divider-2 {
  position: relative;
  /* bottom: 50%; */
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
  z-index: 10;
  /* margin-top: 1px; */
}
.wave-divider-2 svg {
  display: block;
  width: 100%;
  height: 100%;
}
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.feature-card:hover {
  transform: perspective(1000px) rotateX(4deg) rotateY(4deg) scale(1.02);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

/* Custom CSS for Testimonial Dot Active State */
.testimonial-dots .dot.dot-active {
  background-color: white; /* Active dot is fully white */
  opacity: 1;
  transform: scale(1.2); /* Slightly larger for emphasis */
}

/* Ensure the active testimonial has higher z-index to be on top during transition */
/* This is important for smooth fading when testimonials are absolute positioned */
.testimonial-item.active {
  z-index: 1; /* Puts the active one above others */
}

/* Custom Styles for Testimonial Card Layout */
.testimonial-card {
  @apply;
  max-width: 100%; /* Limit card width for better centering */
  /* margin: 0 auto; Center the card horizontally */
}

.testimonial-image {
  @apply;
}

.testimonial-feedback {
  @apply text-lg md:text-xl text-center leading-relaxed relative px-4; /* Added horizontal padding */
}

.testimonial-author-info {
  @apply mt-6 text-center; /* Increased margin-top */
}

.testimonial-author-name {
  @apply font-bold text-xl md:text-2xl;
}

.testimonial-author-title {
  @apply text-sm md:text-base opacity-90;
}
.one {
  transform: scaleX(-1); /* Flips the icon horizontally */
}

.one {
  transform: rotate(180deg); /* Rotates the icon 180 degrees */
}
/* Navigation Arrows Styling */
.arrow-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(4, 147, 237, 0.2);
  border: none;
  color: black;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.arrow-button:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

/* .arrow-left {
        left: 0;
      } */

/* .arrow-right {
        right: 0;
      } */

.client-carousel {
  overflow: hidden;
  width: 100%;
}

.client-track {
  display: flex;
  gap: 2rem;
  animation: scroll 40s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  min-width: 120px;
  height: 130px;
  margin: 0 20px;
  /* border-radius: 5%; */
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
  flex-shrink: 0;
}

.client-logo img {
  max-width: 90%;
  max-height: 100%;
  border-radius: 5%;
  object-fit: contain;
}

/* ---------------------section -2 css------------------------------- */

/* Custom styling for the carousel images */
.carousel-item img {
  height: 600px; /* **Reduced height for a better fit** */
  object-fit: cover; /* **Changed to 'cover' to fill the area, cropping if necessary** */
  width: auto; /* Ensure the image takes full width of its container */
}

.bg-custom-blue {
  background: linear-gradient(180deg, #89cff0, #0056b3);
  /* Sky Blue to Deep Ocean Blue */
  /* background: linear-gradient(135deg, #6a1b9a, Purple #3f51b5 Blue); */
}

/* ... (existing body and .water-drop styles from Method 1) ... */

.cursor-point {
  position: fixed; /* Follow the cursor */
  width: 20px; /* Adjust size as needed */
  height: 20px;
  background-color: rgb(89, 49, 248); /* Or any color you like */
  border-radius: 50%; /* Make it a circle */
  pointer-events: none; /* Crucial: Don't interfere with clicks */
  transform: translate(-50%, -50%); /* Center on cursor */
  z-index: 9999; /* Ensure it's on top */
  transition: transform 1.4s ease; /* Smooth expansion */
}

/* Hover effect */
.text-hoverable:hover ~ .cursor-point {
  /* Target the cursor-point when hovering on text */
  transform: translate(-50%, -50%) scale(2); /* Expand on hover */
}

/* Apply this class to any text element you want to trigger the hover effect */
.text-hoverable {
  display: inline-block; /* Allows applying hover effect to inline elements */
}

/* Existing CSS for the body */

/* --- MEDIA QUERY TO HIDE ON MOBILE SCREENS --- */
@media (max-width: 768px) {
  /* Adjust breakpoint as needed (e.g., 640px for 'sm' in Tailwind) */
  .cursor-point {
    display: none; /* Hide the custom cursor point on screens smaller than 768px */
  }
  body {
    cursor: auto; /* Show the default cursor on mobile */
  }
}
