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

body {
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

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

/* =========================================
   NAVBAR
========================================= */
.navbar {
  background: #1d4ed8;
  padding: 15px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  height: 40px;
}

.brand span {
  color: white;
  font-weight: 700;
  font-size: 18px;
}

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

.nav-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar nav a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #ffffff;
}

.navbar nav a.active {
  color: #ffffff;
  font-weight: 600;
  border-bottom: 2px solid #22c55e;
}

.pay-btn {
  background: #22c55e;
  padding: 8px 14px;
  border-radius: 6px;
  color: white !important;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}



/* =========================================
   HERO SECTION
========================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 10%;
}

.hero-text {
  max-width: 45%;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  color: #4b5563;
}

.hero-image img {
  width: 520px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-section {
  padding: 80px 10%;
  background: #f8f9fa;
  text-align: center;
}

.services-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.services-container {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.service-card {
  min-width: 32%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding-bottom: 20px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.service-card h3 {
  margin: 20px 0 10px;
}

.service-card p {
  padding: 0 20px;
  font-size: 14px;
  color: #555;
}

.read-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: #0b5ed7;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */
.testimonial-section {
  padding: 80px 10%;
  background: #f1f5f9;
  text-align: center;
}

.testimonial-slide {
  display: none;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.testimonial-slide.active {
  display: block;
}

.stars {
  color: #fbbf24;
  font-size: 20px;
}

/* =========================================
   ABOUT SECTION
========================================= */
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: #f8f9fa;
  gap: 50px;
}

.about-text {
  max-width: 45%;
}

.about-text h1 {
  font-size: 42px;
  margin-bottom: 25px;
}

.about-image img {
  width: 600px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================================
   TEAM SECTION
========================================= */
.team-section {
  padding: 80px 10%;
  text-align: center;
}

.team-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* =========================================
   SERVICES PAGE GRID
========================================= */
.services-page {
  padding: 100px 10%;
  background: #f8f9fa;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-box {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

/* =========================================
   GALLERY SECTION
========================================= */
.gallery-section {
  padding: 100px 10%;
  background: #f8f9fa;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

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

.contact-form {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 25px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
}

/* =========================================
   PAYMENT FORM
========================================= */
.payment-section {
  padding: 100px 10%;
  background: #f1f5f9;
  text-align: center;
}

.payment-form {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* =========================================
   SERVICE DETAIL PAGE
========================================= */
.service-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 10%;
  background: #f8f9fa;
  gap: 60px;
}

.detail-text {
  max-width: 50%;
}

.detail-image img {
  width: 650px;
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 60px 10% 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #1e293b;
  padding-top: 15px;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #cbd5e1;        /* Light grey */
  text-decoration: none; /* Remove underline */
  transition: 0.3s ease;
}

.footer-column ul li a:hover {
  color: #22c55e;        /* Green on hover */
}

/* =========================================
   WHATSAPP FLOAT
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  z-index: 999;
  text-decoration: none;
  transition: 0.3s ease;
}

.whatsapp-float i {
  font-size: 36px;   /* Bigger icon */
  color: #ffffff;    /* White icon */
}

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

/* Mobile Navigation */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 900px) {

  .navbar {
    padding: 15px 5%;
  }

  .brand span {
    font-size: 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    background: #1d4ed8;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 18px;
  }

  .pay-btn {
    margin-top: 20px;
  }

   /* HERO FIX */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-image {
    margin-top: 25px;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
    margin: auto;
    border-radius: 12px;
  }

   .services-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .service-card {
    min-width: 90%;
    scroll-snap-align: center;
  }

  .nav-btn {
    display: none; /* Hide arrows on mobile */
  }

}

/* =========================================
   ABOUT PAGE MOBILE FIX
========================================= */
@media (max-width: 900px) {

  .about-section {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
    gap: 30px;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h1 {
    font-size: 36px;
  }

  .about-text p {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }

}

/* =========================================
   TEAM MOBILE FIX (CLEAN VERSION)
========================================= */
@media (max-width: 900px) {

  .team-section {
    padding: 50px 20px;
  }

  .team-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .team-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .team-card {
    max-width: 100%;
    text-align: center;
  }

  .team-card img {
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
  }

  .team-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .team-card .position {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .team-card .bio {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }
  
}
