/* Custom CSS for AZALIQA Landing Page */

/* Base overrides */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Glassmorphism utilities */
.glass-nav {
  background: rgba(6, 11, 40, 0.85); /* Black Pearl */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(86, 140, 184, 0.3); /* Steel Blue outline */
}

.glass-card {
  background: rgba(32, 74, 117, 0.7); /* Bay of Many */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(86, 140, 184, 0.5); /* Steel Blue outline */
}

.glass-dark {
  background: rgba(6, 11, 40, 0.85); /* Black Pearl */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #060b28; /* Black Pearl track */
}
::-webkit-scrollbar-thumb {
  background: #568cb8; /* Steel Blue */
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #204a75; /* Bay of Many */
}

/* WhatsApp Pulse Animation */
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float-pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Form Styles */
input:focus, textarea:focus {
  outline: none;
  border-color: #204a75; /* Bay of Many */
  box-shadow: 0 0 0 3px rgba(32, 74, 117, 0.2);
}

/* Custom Card Hover */
.card-hover-shilo {
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}
.card-hover-shilo:hover {
  border-top-color: #568cb8; /* Steel Blue */
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Image Showcase Hover */
.showcase-image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.showcase-image-wrapper img {
  transition: transform 0.6s ease;
}
.showcase-image-wrapper:hover img {
  transform: scale(1.05);
}
