/* Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
 background-color: #a0a0a0;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  padding: 10px 20px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  margin-bottom: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Shadow for visibility */
}

/* Add padding to the body to avoid content hiding behind navbar */
body {
  padding-top: 60px; /* Adjust based on navbar height */
  background-color: #a0a0a0;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: white;
  padding: 8px 12px;
}

.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #444;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 10px;
  color: white;
  white-space: nowrap;
}

.dropdown.active .dropdown-menu {
  display: block;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 60px; /* Prevent overlap with fixed navbar */
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

/* Banner */
.banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  z-index: 0;
  margin-bottom: 0; /* ✨ no space below banner */
  
  
}

.banner img {
  width: 100%;
  height: 115%;
  object-fit: contain;  /* ✅ shows full image */
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.banner img.active {
  opacity: 1;
  z-index: 1;
}



/* About Us Section */
.about-us {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto; /* no gap from top */
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-content {
  flex: 1 1 300px;
}

.about-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .about-content {
    padding-top: 20px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 body {
      font-family: Arial, sans-serif;
      background-color: #a0a0a0;
      margin: 0;
      padding: 40px 20px;
    }

    h1 {
      text-align: center;
      margin-bottom: 40px;
    }

    .services-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .service-card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      position: relative;
      
    }

    .service-card i {
      font-size: 40px;
      color: #3b82f6;
      margin-bottom: 10px;
    }

    .service-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .service-description {
      font-size: 14px;
      color: #555;
    }

    .read-more {
      display: none;
      margin-top: 10px;
      font-size: 14px;
      color: #333;
    }

    .btn-toggle {
      margin-top: 15px;
      padding: 8px 16px;
      background: #3b82f6;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
    }

    .btn-toggle:hover {
      background: #2563eb;
    }
     * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

body {
 background-color: white;
}

section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  
}

.column {
  width: 100%;
  max-width: 300px;
  padding: 15px;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  font-size: 40px;
  color: #3b82f6;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #555;
}
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 50px;
  height: 50px;
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: background 0.3s, transform 0.3s;
}

.float-btn.call {
  background-color: #0a66c2; /* Blue for call */
}

.float-btn:hover {
  transform: scale(1.1);
}

.contact-section {
      display: flex;
      flex-wrap: wrap;
      padding: 20px;
    }

    .map-container {
      flex: 1 1 300px;
      min-height: 300px;
      margin-right: 20px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .contact-info {
      flex: 1 1 300px;
      background-color: #f5f5f5;
      padding: 20px;
      border-radius: 8px;
    }

    .contact-info h2 {
      margin-top: 0;
    }

    .contact-info p {
      margin: 8px 0;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }

      .map-container {
        margin-right: 0;
        margin-bottom: 20px;
      }
    }
 h2 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 28px;
    }

    .contact-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 40px;
    }

    .contact-box {
      flex: 1 1 220px;
      background-color: #fff;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .contact-box i {
      font-size: 30px;
      color: #007bff;
      margin-bottom: 10px;
    }

    .contact-box h4 {
      margin-bottom: 8px;
      font-size: 16px;
      font-weight: bold;
    }

    .contact-bottom {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .contact-form, .map-container {
      flex: 1 1 300px;
      background-color: #fff;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .contact-form h3 {
      margin-bottom: 10px;
    }

    .contact-form input, 
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 14px;
    }

    .contact-form button {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
    }

    .contact-form button:hover {
      background-color: #0056b3;
    }

    .map-container h4 {
      margin-bottom: 10px;
    }

    .map-container iframe {
      width: 100%;
      height: 300px;
      border: 0;
      border-radius: 5px;
    }

    @media (max-width: 768px) {
      .contact-top, .contact-bottom {
        flex-direction: column;
      }
    }
    .footer-5-column {
  padding-top: 3rem;
  margin-top: 2rem;
}
.footer-5-column p {
  color: #414141;
}
.footer-5-column .footer-container {
  max-width: 1320px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}
.footer-5-column .footer-container .footer-navbar-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details {
  width: 35%;
  max-width: 100%;
  flex: 0 0 auto;
  padding-right: 2rem;
  line-height: 1.428;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-logo {
  width: 60px;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-logo
  img {
  max-width: 100%;
  height: auto;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-logo
  svg {
  width: 100%;
  height: auto;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-content {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.8;
  padding-right: 1rem;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-icons {
  margin-top: 1.5rem;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-icons
  ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-icons
  ul
  li {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin-right: 14px;
}
.footer-5-column
  .footer-container
  .footer-navbar-container
  .footer-company-details
  .footer-icons
  ul
  li
  a {
  width: 30px;
  padding: 6px;
}
.footer-5-column .footer-navbar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  flex-grow: 1;
  line-height: 1.428;
}

.footer-5-column .footer-navbar > .footer-navbar-col {
  width: 25%;
  flex: 0 0 auto;
}
.footer-5-column .footer-navbar .footer-navbar-col h5 {
  margin-bottom: 1.5rem;
  color: #000;
  overflow-wrap: break-word;
  padding: 0 0.5rem 0 0;
}
.footer-5-column .footer-navbar .footer-navbar-col ul {
  padding: 0 0.5rem 0 0;
  margin: 0;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li {
  list-style: none;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #777777;
  overflow-wrap: break-word;
}
.footer-5-column .footer-navbar .footer-navbar-col ul li a:hover {
  color: #000;
}

.footer-5-column .footer-copyright {
  padding: 2rem 0;
  border-top: 1px solid rgb(219, 215, 215);
}
.footer-5-column .footer-copyright p {
  font-size: 14px;
  margin-bottom: 0;
}

@media all and (max-width: 1140px) {
  .footer-5-column .footer-container .footer-navbar-container,
  .footer-5-column .footer-navbar {
    row-gap: 3rem;
  }
  .footer-5-column
    .footer-container
    .footer-navbar-container
    .footer-company-details,
  .footer-5-column .footer-container .footer-navbar-container .footer-navbar {
    padding: 0;
    width: 100%;
  }
}
@media all and (max-width: 992px) {
  .footer-5-column .footer-navbar .footer-navbar-col {
    width: 50%;
  }
}

