/* Google Font */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #e6f5ff;
}

.welcome-heading {
  color: #007bff; /* Bootstrap blue or pick your own hex */
}


/* Navbar Styles */
.navbar {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
}

.navbar-brand .logo {
  height: 40px;
  margin-right: 10px;
}

.brand-name {
  font-size: 22px;
  font-weight: bold;
  color: #007bff;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-links a {
  margin-left: 25px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Enquiry Button */
.enquiry-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none !important;
}

.enquiry-btn:hover {
  background: #1ebe5d;
  color: #f0f0f0;
  text-decoration: none !important;
}

/* Hero Section Styles */
.hero {
  background: url('Images/bg1.jpg') no-repeat center center/cover;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width:1200px;
  margin: 0 auto;
  width: 100%;
  padding: 20px;
  gap: 40px;
}

.hero-img {
  flex: 1;
  
}

.hero-img img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hero-text {
  flex: 1;
  padding: 0 10px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #003366;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 30px;
}

.get-started-btn {
  background-color: #25D366;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 0 auto;
}

.get-started-btn:hover {
  background-color: #1ebe5d;
}

/* Hamburger Icon */
.hamburger {
  font-size: 24px;
  cursor: pointer;
  display: none; /* Hide hamburger by default */
}

/* Responsive Styles */
@media (max-width: 768px) {

  .hamburger {
      display: block; /* Show hamburger on mobile */
      order: 2; 
  }

  .navbar-brand {
      order: 1; /* Logo stays left */
    }

  .container {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    padding: 20px;
    position: absolute;
    top: 70px;
    right: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 10px;
    width: 200px;
    transition: all 0.3s ease; 
  }

  .nav-links a.enquiry-btn {
      display: block;
      margin: 10px auto 0;
      text-align: center;
      width: fit-content;
    }

  .nav-links.active {
    display: flex;
  }

  .nav-links.show {
      display: flex;
    }

  .nav-links.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.3);
    z-index: -1;
  }

  .nav-links a {
      display: block;
      text-align: center;
      margin: 8px 0;
  }

  .enquiry-btn {
    margin-top: 10px;
    align-self: flex-start;
  }

  .hero {
    height: auto;
    padding: 40px 20px;
    background-size: cover;
    background-position: top center;
  }

  .hero-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero-img {
    order: 1;
  }

  .hero-text {
    order: 2;
   
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
      font-size: 0.95rem;
  }

  .get-started-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .services-cards {
      flex-direction: column;
      align-items: center;
      gap: 20px;
      display: flex;
    }
  
    .service-card {
      width: 90%;
      max-width: 400px;
      text-align: center;
    }

    /* why choose us */
    .why-cards {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .why-card {
      max-width: 400px;
      text-align: center;
      width: 90%;
    }

    section#why-choose-us > div:first-child {
      margin-top: 30px;
    }
   /* footer */

   .footer-section {
      padding-top: 20px;
      padding-bottom: 20px;
      margin-bottom: 10px;
    }

    .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }

    .footer-col {
      text-align: center;
      padding-top: 0px;
      padding-bottom: 0px;
      margin-bottom: 5px;
    }

    .footer-col h3 {
      font-size: 18px;
      margin: 5px 0;
    }
  
    .footer-col p {
      font-size: 14px;
    }
  
    iframe {
      margin-top: 10px;  /* Reduce spacing above map */
      margin-bottom: 10px;
    }

    .map-container iframe {
      height: 160px;
    }

    .social-icons a {
      font-size: 24px;
      margin: 0 8px;
    }
    
  
  
    /*services page  */
    .hero-slider {
      flex-direction: column;
      padding: 40px 15px;       
      text-align: center;
    }
  
    .hero-text {
      max-width: 100%;
      padding-right: 0;
      text-align: center;
      margin-bottom: 30px;
    }
  
    .slider {
      width: 100%;
    }

    .slider img {
      border-radius: 10px;
    }
  
    .dot {
      height: 10px;
      width: 10px;
    }
  
    .hero-text h1 {
      font-size: 28px;
    }
  
    .hero-text p {
      font-size: 16px;
    }
     
   /* modals */
  
  
  }


/* === Services Section === */


.services-preview {
  text-align: center;
  padding: 60px 20px;
  /* background: #f9f9f9; */
  background: linear-gradient(to bottom, #f8faff, #ffffff);

  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #00c853;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.services-preview {
  background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
  padding: 4rem 2rem;
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: -10px;
  margin-bottom: 40px;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  border-top: 4px solid #d1c4e9;

}

.service-card:hover {
  background-color: #f0faff;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);

}


.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon {
  font-size: 28px;
}

.service-card:hover .icon-circle {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Explore Button */
.explore-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #28a745;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.explore-btn:hover {
  background-color: #218838;
}


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

.service-card {
  animation: fadeInUp 0.8s ease both;
}

/* why choose us */
.why-choose-section {
  position: relative;
  background: url('Images/w.jpg') center/cover no-repeat;
  padding: 50px 20px;
  color: #000;
  overflow: hidden;
  text-align: center;
  margin-bottom: 60px;
 
}


.why-choose-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
 
}

.why-choose-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-choose-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1f1f1f;
  position: relative;
  margin-bottom: 10px;
}

.why-choose-content h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #00c26e; /* Match green underline */
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

.why-choose-content .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.why-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.why-card {
  background-color: #f0f8ff; /* Default to light blue */
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  flex: 1 1 280px;
  transition: all 0.3s ease;
  max-width: 320px;
  border: 1px solid rgba(0,0,0,0.05);
  align-items: center;

}

.why-card:nth-child(1) {
  background-color: #e6f0ff; /* Light Blue */
}

.why-card:nth-child(2) {
  background-color: #fff4e6; /* Light Peach */

}

.why-card:nth-child(3) {
  background-color: #eafff0; /* Light Mint Green */
}


.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.why-card i {
  font-size: 36px;
  color: #007bff;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}


.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/*footer*/
.footer {
  background-color: #013a6b;
  color: #fff;
  padding: 40px 20px 20px;
  font-size: 14px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 18px;
}
.footer-col p {
  font-size: 15px;
  margin-bottom: 8px;
}
.map-container iframe {
  width: 100%;
  border-radius: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: transform 0.3s, background-color 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Individual colors */
.social-icons .whatsapp {
  background-color: #25D366;
}

.social-icons .email {
  background-color: #6c757d;
}

.social-icons .facebook {
  background-color: #1877F2;
}

.footer-bottom {
  text-align: center;
  padding: 15px 0;
  font-size: 13px;
  color: #ccc;
}

/* General footer icon styling */
.footer-icon {
  font-size: 1.2rem;
  margin-right: 8px;
  vertical-align: middle;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* Specific icon color overrides */


.footer-icon.fa-phone {
  color: #198754;  /* Green – Phone number */
}

.footer-icon.fa-map-marker-alt
{
color: #DC3545;  /* Red – Location pins */
}


.footer-icon.fa-envelope {
  color:#f8f9fa /* Gray – Email */
}

.footer-col h3 .fa-id-card {
  background-color: #0dcaf0; /* info blue */
  color: white;
  padding: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.footer-col h3 .fa-handshake-alt {
  background-color:#FFC107; /* success green */
  color: white;
  padding: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.footer-col h3 .fa-clock {
  background-color: #fd7e14; /* orange for time */
  color: white;
  padding: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.footer-col h3 .fa-map-marked-alt {
  background-color: #dc3545; /* danger red for map */
  color: white;
  padding: 8px;
  border-radius: 50%;
  margin-right: 8px;
}

.footer-icon:hover {
  transform: scale(1.1);
}



/*services page*/
/* === HERO SECTION === */
.hero-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f6ff;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 1rem;

}

.hero-text {
  flex: 1;
  max-width: 600px;
  padding-right: 40px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #003366; /* dark navy/black */
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
  
  margin-bottom: 30px;
  color: #333;
 
}

.slider {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slide {
  width: 100%;
  height: auto;
  display: none;
  transition: opacity 0.5s ease-in-out;
  border-radius: 16px;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}


/* === DOTS === */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}


.dot.active {
  transform: scale(1.2);
  background-color: #007bff;
  transition: all 0.3s ease;
}


/* modals */
.services-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-top: 1px solid #eee;
}


.section-title {
  text-align: center;
  margin: 20px 0;
}

.cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

.card {
 
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}



.card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Modal styles */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: none;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.modal h3 {
  margin-top: 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
}

@media (min-width: 1024px) {
  .cards-container {
    grid-template-columns: repeat(4, 1fr); /* 4 cards in one row */
    max-width: 1300px;
    margin: 0 auto;
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .cards-container {
      grid-template-columns: repeat(2, 1fr);
      max-width: 1200px;
      margin: 0 auto;
  }
}

/* how it works */

.how-it-works-clean {
  background: linear-gradient(to bottom, #f0f8ff, #e7f0ff);
  padding: 2rem 1rem 3rem 1rem;
  text-align: center;
  border-radius: 12px;
  margin-top: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.how-it-works-clean h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  scroll-margin-top: 80px;
}

.how-it-works-clean h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #00c853; /* green underline */
  margin: 0.5rem auto 0 auto;
  border-radius: 2px;
}


.how-it-works-clean .how-desc {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.how-card-clean {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.how-step-clean {
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  padding: 20px 10px;
  border-radius: 16px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.how-step-clean:hover {
  background-color: #fff7e6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.how-step-clean .icon {
  font-size: 28px;
  color:#9B51E0;
  margin-bottom: 15px;
}

.how-step-clean h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.how-step-clean p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .how-step-clean {
    max-width: 100%;
  }

  .how-it-works-clean {
      padding: 2rem 1rem;
    }
 
}


/* Contact Page Styling */
/* Contact Page Styling */
.contact-section {
  padding: 40px 20px;
  background: #f9fbff;
}

/* Contact Banner */
.contact-banner {
  text-align: center;
  background-color: #ffe6f0;
  padding: 50px 20px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.contact-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #b0005d;
  margin: 20px 0 10px;
}

.contact-banner p {
  font-size: 1.1rem;
  color: #555;
}

.contact-banner .contact-icon {
  width: 60px;
  height: 60px;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-banner .contact-icon:hover {
  transform: scale(1.15);
  background-color: #d1eaff;
}

/* Contact Layout */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* Contact Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form,
.contact-map {
  flex: 1 1 50%;
  padding: 30px;
  box-sizing: border-box;
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #FF6B6B;
}

.contact-form h2 img {
  width: 24px;
  height: 24px;
  padding: 6px;
  background-color: #dfffea;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-form h2 img:hover {
  transform: scale(1.1);
  background-color: #c1f7db;
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form form button {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form form button:hover {
  background: #1ebc57;
}

.thank-you-msg {
  color: green;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

/* Google Map */
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    
  }

  .contact-form,
  .contact-map {
    flex: 1 1 100%;
    padding: 20px;
  }

  .contact-section {
    padding: 20px 10px;
  }

  .contact-banner h1 {
    font-size: 24px;
  }

  .contact-banner p {
    font-size: 14px;
  }

  .contact-map iframe {
    min-height: 300px;
  }

 
}



