/* ========== GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
}

/* ========== NAVBAR ========== */
header {
  background: #004d40;
  color: white;
  padding: 15px 5%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links li { margin: 0; }

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffcc00;
}

/* ========== HERO (legacy) - preserved if used elsewhere ========== */
.hero {
  /* kept in case other pages use .hero */
  background-color: #004d40;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.hero h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.whatsapp-btn {
  background: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.25s;
}

.whatsapp-btn:hover { background: #1da851; }

/* ========== ABOUT ========== */
.about-section {
  padding: 60px 10%;
  background: #f8f9fa;
}

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

.about-img {
  width: 300px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text { max-width: 600px; }

.about-text h2 {
  font-size: 2em;
  color: #004d40;
  margin-bottom: 15px;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.about-text h3 {
  color: #004d40;
  margin: 20px 0 10px;
}

/* ========== SOCIAL ICONS (footer & elsewhere) ========== */
social-icons {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

social-icons a {
  color: white;
  font-size: 25px;
  margin: 0 8px;
  transition: transform 0.25s, color 0.25s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

/* Hover / scale */
social-icons a:hover { transform: scale(1.12); }

/* Brand-like coloring (text or gradient where possible) */
bxl-tiktok { color: #010101; background: linear-gradient(45deg, #25F4EE, #FE2C55); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
bxl-twitter { color: #1DA1F2; background: none; }
bxl-facebook { color: #1877F2; background: none; }
.bxl-youtube { color: #FF0000; background: none; }
.bxl-instagram {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
bxl-whatsapp { color: #25D366; background: none; }





/* ========== CONTACT ========== */
.contact-section {
  padding: 70px 10%;
  background: #f8f9fa;
  text-align: center;
}

.contact-container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.contact-container h2 { color: #004d40; margin-bottom: 10px; }
.contact-container p { color: #555; margin-bottom: 25px; font-size: 1.1em; }

.contact-form { display: flex; flex-direction: column; gap: 15px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1em;
  outline: none;
  transition: box-shadow .25s, border-color .25s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #004d40;
  box-shadow: 0 0 6px rgba(0, 77, 64, 0.15);
}

.contact-form button {
  background: #004d40;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: transform .18s, background .18s;
}

.contact-form button:hover { transform: translateY(-3px); background: #00695c; }

.or-line { margin: 25px 0 15px; font-weight: bold; color: #555; }

/* ========== FAQ / WHY CHOOSE / NEWS ========== */
.faq {
  background: #fff;
  padding: 50px 10%;
  text-align: center;
}

.faq h2 { font-size: 1.em; color: #004c3f; margin-bottom: 20px; }
.faq-item { text-align: left; margin-bottom: 20px; background: #f0f0f0; padding: 20px; border-radius: 10px; }
.faq-item h3 { color: #004c3f; margin-bottom: 10px; }

.why-choose {
  background: #f9f9f9; padding: 60px 10%; text-align: center;
}
.why-choose h2 { color: #004c3f; margin-bottom: 30px; }

.reasons {
  display: flex; justify-content: space-around; flex-wrap: wrap;
}


.reason {
  background: #fff; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  width: 30%; padding: 25px; margin: 10px; transition: transform .25s;
}
.reason i { font-size: 3em; color: #ffb703; margin-bottom: 15px; }
.reason h3 { margin-bottom: 10px; color: #004c3f; }
.reason:hover { transform: translateY(-10px); }

.news {
  padding: 60px 10%; text-align: center; background: #fff;
}
.news h2 { color: #004c3f; margin-bottom: 30px; }

.news-cards {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 20px;
}

.card {
  width: 30%; background: #f9f9f9; border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06); margin-bottom: 20px; overflow: hidden;
  transition: transform .25s;
}
.card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.card h3 { color: #004c3f; margin: 15px; }
.card p { margin: 0 15px 15px; }
.card .read-more { display: inline-block; margin: 0 15px 20px; color: #ffb703; text-decoration: none; font-weight: bold; }
.card:hover { transform: translateY(-8px); }




/* ========== FOOTER ========== */
footer {
  background: #004c3f;
  color: white;
  text-align: center;
  padding: 30px 10%;
}

.footer-info p { margin: 5px 0; 
  font-size: 1rem;
  
  
}

/* footer social icons already styled above; keep behavior */
.social-icons { margin: 15px 0; }

.social-icons a {
  color: white; font-size: 1.8em; margin: 0 10px; transition: color .25s, transform .25s;
}
.social-icons a:hover { color: #ffb703; transform: scale(1.08); }








/* ========== HERO SLIDER (final consolidated, keep last to avoid overrides) ========== */
.hero-slider {
  position: relative;
  max-width: 100%;
  height: 80vh;
  overflow: hidden;
  background: #000;
}

.hero-slider .slides {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

hero-slider .text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1.5em;
  z-index: 5;
}

.hero-slider .prev,
.hero-slider .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 16px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  transition: background .18s, transform .18s;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 6px;
  z-index: 10;
}

.hero-slider .next { right: 10px; }
.hero-slider .prev { left: 10px; }

.hero-slider .prev:hover,
.hero-slider .next:hover { background: rgba(0, 0, 0, 0.7); transform: scale(1.03); }

.fade { animation-name: fade; animation-duration: 1s; }
@keyframes fade { from { opacity: 0.4 } to { opacity: 1 } }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .reason, .card { width: 45%; }
}

@media (max-width: 600px) {
  .reasons, .news-cards { flex-direction: column; align-items: center; gap: 18px; }
  .reason, .card { width: 90%; }
  .hero-slider { height: 60vh; }
  .hero-slider .text { font-size: 1.1em; bottom: 12%; padding: 10px 14px; }
}











 
/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-in-out, transform 1.5s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 25px;
  border-radius: 10px;
  max-width: 500px;
  animation: fadeInUp 1.2s ease-in-out;
}

.slide-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1.2rem;
}

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

.slider-controls {
  position: absolute;
  width: 100%;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

.slider-controls button {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s;
}

.slider-controls button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 1.8rem;
  }
  .slide-content p {
    font-size: 1rem;
  }
  .hero-slider {
    height: 70vh;
  }
}







 /* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: -120px; /* start hidden for slide-in */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
  animation: slideIn 1.2s ease-out forwards;
}

/* Individual buttons */
.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: bounce 0.4s infinite ease-in-out;
}

.floating-buttons a img {
  width: 28px;
  height: 28px;
}

/* Color accents for each */
.floating-buttons a.whatsapp {
  background-color: white;
}
.floating-buttons a.call {
  background-color:  white;
}
.floating-buttons a.location {
  background-color: white;
}

/* Hover pop effect */
.floating-buttons a:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Slide in from right */
@keyframes slideIn {
  from {
    right: -120px;
    opacity: 0;
  }
  to {
    right: 25px;
    opacity: 1;
  }
}

/* Gentle bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}





















 
 .footer-bottom {
  max-width: 1100px;
  margin: 25px auto 0;
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #bdbdbd;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

/* Brand colors */
.facebook { background: #1877F2; }
.twitter { background: #000000; }
.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.youtube { background: #FF0000; }
.tiktok { background: #000000; }
.linkedin { background: #0077B5; }
.whatsapp { background: #25D366; }

/* Hover animation */
.footer-social a:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
  opacity: 0.9;
}
 