/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Banner Section */
.banner-section {
  background: url('banner.jpg') center center/cover no-repeat;
  min-height: 80vh;
  position: relative;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.banner-content {
  color: white;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  z-index: 2;
  position: relative;
}

.banner-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  background-color: #f39c12;
  color: white;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #d35400;
}

/* Info Sections */
.info-section {
  padding: 4rem 2rem;
}

.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.info-container.reverse {
  flex-direction: row-reverse;
}

.info-image {
  flex: 1 1 400px;
}

.info-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.info-text {
  flex: 1 1 400px;
  padding: 1rem;
}

.info-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-text p {
  font-size: 1.1rem;
  color: #444;
}

/* Section Colors */
.section-blue { background-color: #cce5ff; }
.section-purple { background-color: #bfbfff; }
.section-beige { background-color: #fdf1dc; }
.section-green { background-color: #d4f4dd; }
.section-pink { background-color: #f5d0f5; }
.section-yellow { background-color: #fdf6e3; }

/* Testimonials */
.testimonials {
  padding: 4rem 2rem;
  background-color: #ebd391;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.testimonial {
  background-color: #fefefe;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 350px;
}

.testimonial img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
  color: #333;
}

/* CTA Section */
.cta {
  background: linear-gradient(to right, #1a2980, #26d0ce);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-secondary {
  background-color: #27ae60;
  padding: 0.8rem 1.6rem;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-secondary:hover {
  background-color: #1e8449;
}

/* Footer container */
footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}

/* Footer links */
footer a {
  color: #ccc;                   /* Light gray link color */
  text-decoration: underline;   /* Show underline */
  margin: 0 8px;                 /* Spacing between links */
  transition: color 0.3s ease;  /* Smooth color change on hover */
}

/* Footer links on hover */
footer a:hover {
  color: #fff;                   /* Bright white on hover */
  text-decoration: none;        /* Optional: remove underline */
}

/* Optional: Email link styling */
footer a[href^="mailto:"] {
  font-weight: bold;            /* Make email stand out */
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }

  .info-section {
    padding: 2rem 1rem;
  }

  .info-container,
  .info-container.reverse {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0;
  }

  .info-image {
    margin-bottom: 0.5rem;
  }

  .info-image img {
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin: 0 auto;
  }

  .info-text {
    padding: 0 1rem;
  }

  .info-text h2 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .info-text p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial {
    margin-bottom: 1.5rem;
  }

  .cta {
    padding: 3rem 1.5rem;
  }
}


/* WhatsApp Buttons */
.whatsapp-desktop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  z-index: 999;
  box-shadow: 0 0 15px #25D366;
  animation: blinkGlow 1.5s infinite;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 999;
  background-color: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(37, 211, 102, 0.3), 0 0 16px rgba(37, 211, 102, 0);
  animation: blinkGlow 0.5s infinite;
  backdrop-filter: blur(2px);
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  display: block;
}

.whatsapp-inline-btn {
  display: inline-block;
  background-color: #4be958;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  animation: blinkGlow 1.5s infinite;
  transition: background 0.3s ease;
}

.whatsapp-inline-btn i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.whatsapp-inline-btn:hover {
  background-color: #1ebd5b;
}

@keyframes blinkGlow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(37, 211, 102, 1), 0 0 40px rgba(37, 211, 102, 0.8);
  }
}

@media (max-width: 768px) {
  .whatsapp-desktop {
    display: none;
  }
}

@media (min-width: 769px) {
  .whatsapp-float {
    display: none;
  }
}


