@import "tailwindcss";

/* Add extra styles if Tailwind’s utilities aren’t enough */
body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}


.teal-sky-gradient {
  background: linear-gradient(135deg, #E0F2FE 0%, #A7F3D0 25%, #67E8F9 50%, #BAE6FD 75%, #E0F2FE 100%);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.glass-card-white {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gradient-text-teal {
  background: linear-gradient(135deg, #0891B2, #14B8A6, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.slide-in {
  animation: slideIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulse-glow {
  animation: pulseGlow 2s ease-in-out infinite alternate;
}
html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* for iOS Safari smooth scrolling */
}


@keyframes pulseGlow {
  from {
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
  }

  to {
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.6);
  }
}


.gradient-bg {
  background: radial-gradient(
    circle at center,
    #b0dad5 0%,
    #c8e7e3 40%,
    #f8fefd 75%,
    #aeefe6 100%
  );
}


.bg-navy-custom {
  background-color: #1a365d;
}

.text-navy-custom {
  color: #1a365d;
}

.bg-orange-custom {
  background-color: #ed8936;
}

.video-container {
  margin-top: -470px;
  z-index: 10;
}

.hero-section {
  min-height: 1210px;
  padding-top: 50px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1920px) {
  .video-container {
    margin-top: -490px;
  }

 
@media (max-width: 1556px) {
  .hero-section {
  min-height: 1080px;
  padding-top: 50px;
  position: relative;
  z-index: 5;
}
  .video-container {
    margin-top: -420px;
  }
}

@media (max-width: 1400px) {
  .video-container {
    margin-top: -510px;
  }
@media (max-width: 900px) {
  .video-container {
    margin-top: -460px;
  }

 
}
@media (max-width: 768px) {
  .video-container {
    margin-top: -240px;
  }

  .hero-section {
    padding-top: 30px;
    min-height: 700px;
  }
}

}

@media (max-width: 576px) {
  .video-container {
    margin-top: -290px;
  }

}

}

/* Hide image on medium devices (tablets) */
@media (min-width: 768px) and (max-width: 1024px) {
  #hero .lg\\:block {
    display: none !important;
  }
}

/* Custom slider styles */
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.slick-prev:before,
.slick-next:before {
  color: #1a365d;
  font-size: 40px;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #1a365d;
}

.slick-dots li.slick-active button:before {
  color: #1a365d;
}

.slick-slide {
  padding: 0 10px;
  transition: all 0.3s ease;
}

.slick-slide img {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.slick-list {
  margin: 0 -10px;
  padding: 20px 0;
}


@keyframes pulse-zoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.animate-pulse-zoom {
  animation: pulse-zoom 0.8s ease-in-out infinite;
}


.animate-pulse-zoom {
  animation: pulse-zoom 0.8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255,165,0,0.7), 0 0 20px rgba(255,165,0,0.5);
}
