*{
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
}
:root {
  --brand-blue: #1C068C;
  --brand-orange: #D18219;
  --white-color: #fff;
}

[data-aos] {
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}


body {
  margin: 0;
  font-family: 'Instrument Sans', sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* HERO */
.hero {
  background: url('./images/118968.jpg') no-repeat;
  background-size: cover;
  background-position: center 45%;
  color: white;
  text-align: center;
  /* min-height: 560; */
  padding: 250px 20px;
}

.hero span {
  color: var(--brand-orange);
}


@keyframes float-badge {
  0% {
    transform: translateY(-60px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  /* animation: float-badge 3s; */
}



.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  /* animation: float-badge 3s; */

}

.hero-btn {
  background-color: white;
  color: var(--brand-blue);
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  /* animation: float-badge 3s; */
}

.hero-btn:hover {
  background-color: var(--brand-orange);
  color: white;
}

/* SECTION STYLES */
section {
  padding: 80px 8%;
  text-align: center;
}

.section h2 {
  color: var(--brand-blue);
  margin-bottom: 2rem;
}

/* Footer Styling */
.custom-footer {
  background-color: var(--dark-gray);
  padding-top: 2rem;
  color: var(--white-color);
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 1.5rem;
}

.footer-logo-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--brand-orange);
}

.footer-logo-left img {
  height: 40px;
  width: auto;
  /* filter: brightness(0) invert(1); Ensures image is visible on dark background */
}

.footer-social-icons {
  display: flex;
  justify-content: center;
}

.footer-social-icons a {
  color: var(--white-color);
  font-size: 1.25rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-social-icons a:hover {
  color: var(--brand-orange);
}

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 1rem;
  justify-content: center;
}

.footer-nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-links a:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* Floating WhatsApp Icon */
#whatsapp-chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

#whatsapp-chat-button:hover {
  background-color: #1ebd5a;
}

/* Chat Widget Box */
#whatsapp-chat-box {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  display: none;
  z-index: 1001;
}

.chat-header {
  background-color: #1C068C; /* 075e54 */
  color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header .user-info {
  display: flex;
  align-items: center;
}

.chat-header img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.chat-header .close-btn {
  font-size: 20px;
  cursor: pointer;
}

.chat-body {
  background: #f0f0f0 url('https://web.whatsapp.com/img/bg-chat-tile_c7d7f4206ad00d56db4ba24f0384d08f.png');
  padding: 15px;
  min-height: 100px;
}

.message-bubble {
  background: #fff;
  border-radius: 7px;
  padding: 10px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 8px;
  max-width: 90%;
  font-size: 14px;
  position: relative;
}

.message-time {
  font-size: 11px;
  color: gray;
  text-align: right;
  margin-top: 5px;
}

.chat-footer {
  background: #fff;
  padding: 10px;
  border-top: 1px solid #ddd;
}

.start-chat-btn {
  width: 100%;
  text-align: center;
  background-color: #25D366;
  color: white;
  padding: 10px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 15px;
  display: block;
  transition: background 0.3s;
}

.start-chat-btn:hover {
  background-color: #1ebd5a;
}
/* Wrapper for image + active dot */
.profile-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 10px;
}

/* Active dot below the image */
.profile-wrapper .active-dot {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #4CAF50;
  border: 2px solid white;
  border-radius: 50%;
}
.profile-wrapper .active-dot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: rgba(76, 175, 80, 0.3);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

