@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Rajdhani:wght@500;600&display=swap');
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: #111;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo img {
  height: 160px; /* doubled size */
  filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.6))
          brightness(1.1);
  transform: perspective(500px) rotateX(2deg);
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  animation: pulseGlow 4s ease-in-out infinite;
}

/* Hover effect — slight pop when hovered */
.nav-logo img:hover {
  transform: perspective(500px) rotateX(0deg) scale(1.06);
  filter: drop-shadow(0 0 18px rgba(0, 255, 120, 0.9))
          brightness(1.3);
}

/* Keyframes for slow pulse (heartbeat style) */
@keyframes pulseGlow {
  0% {
    transform: scale(1) perspective(500px) rotateX(2deg);
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.6))
            brightness(1.1);
  }
  50% {
    transform: scale(1.05) perspective(500px) rotateX(0deg);
    filter: drop-shadow(0 0 22px rgba(0, 255, 160, 0.9))
            brightness(1.3);
  }
  100% {
    transform: scale(1) perspective(500px) rotateX(2deg);
    filter: drop-shadow(0 0 10px rgba(0, 230, 118, 0.6))
            brightness(1.1);
  }
}
}
.logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #00e676;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow:
    0px 1px 0px #0f0,
    0px 2px 0px #0d0,
    0px 3px 2px rgba(0, 230, 118, 0.3);
  transition: transform 0.25s ease;
}

.logo-text:hover {
  transform: scale(1.08);
  text-shadow:
    0 0 10px rgba(0, 255, 100, 0.8),
    0 0 20px rgba(0, 255, 100, 0.5);
}

/* Tactical-style navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  color: #00e676;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  transition: all 0.25s ease;
}

/* Hover effect — expand + glow */
.nav-links a:hover {
  color: #fff;
  transform: scale(1.08);
  text-shadow: 0 0 10px rgba(0, 230, 118, 0.6);
}

.book-btn {
  background: #00e676;
  color: #000;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.book-btn:hover {
  transform: scale(1.1);
  background: #0f0;
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.8);
}

.nav-links a:hover {
  color: #fff;
}

.book-btn {
  background: #00e676;
  color: #000;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background: #000;
}

.hero h1 {
  font-size: 2rem;
  color: #fff;
}

.hero p {
  color: #ccc;
  font-size: 1.2rem;
}

.brand-intro {
  font-family: 'Rajdhani', sans-serif;
  color: #00e676;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 0.4em;
  text-shadow: 0 0 6px rgba(0, 230, 118, 0.4);
}

/* WhatsApp Floating Button Container */
.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* iMessage-style bubble */
.whatsapp-message {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: 18px 18px 4px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
  position: relative;
  max-width: 240px;
  text-align: left;
}

/* Little bubble tail */
.whatsapp-message::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 18px;
  border-width: 6px;
  border-style: solid;
  border-color: #bbdefb transparent transparent transparent;
}

/* Visible state */
.whatsapp-message.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  width: 70px;
  height: 70px;
  background-color: #00e676;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 230, 118, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 230, 118, 0.7);
}

/* Red dot for unread message */
.whatsapp-dot {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 14px;
  height: 14px;
  background: red;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Fade-out effect */
.fade-out {
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
