/* General */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Font style Apply to the whole website */
body, html {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa; 
}

/* Headings stylish */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #111; 
}

/* Links */
a {
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #007bff;
}

button, .btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
}
/* Navbar Style */
.navbar .nav-link {
  color: #0d1b2a;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.navbar .nav-link.active {
  color: #007bff;
  font-weight: bold;
  border-bottom: 2px solid #007bff;
}

.navbar .nav-link:hover {
  color: #339af0;
  border-bottom: 2px solid #339af0;
  transition: 0.3s;
}
/* home carousel */
.carousel-item img {
  margin-top: 40px;
  width: 100%;
  height: 100vh;             
  object-fit: cover;         
  object-position: center; 
}
@media (max-width: 768px) {
  .carousel-item img {
    margin-top: 68px;
    width: 100%;
    height: 100vh;        
    object-fit: cover;       
  }
}
@media (max-width: 426px) {
  .carousel-item img {
    margin-top: 60px;
    height: auto;        
    /* max-height: 80vh;        */
    object-fit: contain; 
  }
}
/* section 2 */
.trusted{
    border: 1px solid;
    background: linear-gradient(45deg, #28a745, #17a2b8);
    color: whitesmoke;
    width: fit-content;
    padding: 5px 10px 5px 10px;
    border-radius: 25px;
    font-weight: 700; 
}

.img-hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transition: transform 0.5s ease, box-shadow 0.5s ease; 
}

.img-hover:hover {
  transform: scale(1.08); 
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35); 
}
.btn-hover:hover{
  transform: scale(1.08); 
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35); 
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 999;
}
/* service styles */
.service-list {
  border: 1px solid whitesmoke;
  background-color: whitesmoke;
  padding: 10px 10px;
  text-align: center;
  border-radius: 15px;
  background-color: #fff;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-list:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
/* about styles */
.text-justify {
  text-align: justify;
}
.about-image{
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}
.about-image:hover {
    transform: scale(1.05); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
/* WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
}

/* Scroll Button */
.scroll-top-btn {
  background: #25D366;
  color: white;
  font-size: 22px;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);

}

.scroll-top-btn:hover {
  background: #1DA851;
  transform: scale(1.1);
}

/* new style */
.map-wrapper {
  width: 80%;               /* Map width */
  height: 400px;            /* Professional height */
  margin: 20px auto;        /* auto = centered horizontally */
  border-radius: 10px;      /* smooth corners */
  overflow: hidden;         /* clean edges */
  box-shadow: 0 3px 15px rgba(0,0,0,0.2); /* professional shadow */
}

.map-wrapper iframe {
  width: 100%;              /* iframe fills the wrapper */
  height: 100%;
  border: 0;
}

