* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
}


body {

  color: #1e1e1e;
  background: #f9f9f9;
}

img {
  max-width: 100%;
  border-radius: 10px;
}



/* WhatsApp Button */


.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;


  border-radius: 50px;

  cursor: pointer;
  padding: 5px 10px 5px 15px;
  transition: all 0.3s ease;
  z-index: 9999;
}

.contact-text {
  background-color: white;
  padding: 5px 10px;
  font-size: 14px;

  border-radius: 8%;
  font-weight: 600;
  color: #016e13;
  margin-right: 8px;
  transition: color 0.3s, font-weight 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  background: #25d366;
  border-radius: 50%;
  padding: 8px;
  box-sizing: border-box;
  transition: 1s linear;
}





/* Header */

/* Header */
.contact-header {
  background-image: url('../img/about/137539\ 1.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  text-align: center;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.inner-header h1 {
  background-color: #001f3fbb;
  display: flex;
  justify-content: center;
  
  color: white;
height: 300px;
  margin: 0%;
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  align-items: center;
  padding-top: 90px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}


.services-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.service-box {
  display: grid;
  grid-template-columns: 0.8fr 1.0fr 1fr;
  align-items: start;

  gap: 30px;
  margin-bottom: 20px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.027);
}

.service-box img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* Left Column (Title + Number) */
.service-number {
  font-size: 14px;
  font-weight: 600;
  color: #5b8de0;
  margin-bottom: 8px;
}

.service-title {
  font-size: 24px;
  color: #082c77;
  font-weight: 700;
  line-height: 1.3;
}

/* Middle Text */
.service-text p {
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
}

.service-text ul {
  list-style: none;
}

.service-text ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #333;
}

.service-text ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #0a3d91;
  font-weight: bold;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 900px) {
  .service-box {
    grid-template-columns: 1fr;
    text-align: center;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 20px;
  }

  .service-text {
    order: 3;
    text-align: left;
  }

  .service-title {
    font-size: 20px;
  }

  .service-box img {
    width: 60%;
    margin: 0 auto;
  }
}

.contact-section {
  position: relative;
  background: url('../img/contactBottom.jpg') center center/cover no-repeat;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
}

.contact-overlay {
  background-color: rgba(0, 0, 50, 0.7);
  padding: 40px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  width: 100%;
}

.subheading {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
}

.contact-section h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;

}

.contact-btn {
  padding: 12px 25px;
  background-color: #007bff;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 15px;
}

.contact-btn:hover {
  background-color: #0056b3;
}

.contact-number {
  font-size: 1.1rem;
}

.contact-number a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.footer {
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 20px;
  color: #0b1a42;
  font-size: 0.9rem;
  border-top: 1px solid #eee;
}

#social-icons a {
  color: #0b1a42;



  text-decoration: none;
  transition: color 0.3s ease;
}

#social-icons a:hover {
  color: #007bff;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .contact-section h1 {
    font-size: 1.5rem;
  }

  .contact-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .contact-number {
    font-size: 1rem;
  }
}


@media (max-width: 600px) {
.inner-header h1 {
  font-size: 30px;
}


}