
     *{
      margin: 0;
      padding: 0;
         overflow-x: hidden;
     }
     body{
      width: 100%;
       margin: 0;
  padding: 0;
      overflow-x: hidden;
       font-family: "Montserrat", sans-serif;
     }


/* Reset padding/margin on sections if needed */

     ::-webkit-scrollbar{
      width: 0;
     }
     .hero {
  background: url('./images/i1/home.jpg') no-repeat;
  background-size: cover;
  height: 100dvh;
  
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  color: white;
  margin-top: 50px; 
  text-align: center;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
 
   z-index: 1000;
  
  
  background-color: transparent; /* Optional: make navbar background transparent */
}
@media (max-width: 800px) {
   /* .navbar {
    backdrop-filter: blur(9px);
  } */
       .navbar-nav {
    backdrop-filter: blur(9px);
    z-index: 1000;
  
  } 
  footer .title{
  font-size: 18px;
}
  footer .para{
  font-size: 14px;
}
}
.close-icon {
  font-size: 1.5rem;
  color: #000;
  transition: 0.3s;
}
/* Fixed size for toggle button */
.navbar-toggler {
  width: 2.5rem;  /* or 40px */
  height: 2.5rem;
  padding: 0; /* removes extra internal spacing */
  display: flex;

  align-items: center;
  justify-content: center;
}

.navbar-toggler .navbar-toggler-icon,
.navbar-toggler .close-icon i {
  font-size: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
}

/* Remove outline and box shadow on focus */
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.hero-container{
  padding-top: 100px;
}
@media (min-width: 920px) {
   .hero-content .title {
   font-size: 30px;
  

  }
   .hero-content .title-2 {
   font-size: 50px;
  

  }

  .hero-container{
    margin-top: -100px;
  }
}
.hero-content h5{
  font-size:1.5rem;
  font-weight: 600;
  
}
   .hero-content h1{
 font-size: 2.2rem;
  
}

   .hero-content p{
   
font-size: 16px;   }


    .btn{
      border-radius: 0%;
      font-size: 13px;
      border: 2px solid white;
      letter-spacing: 1px;
      outline: 0;
    }
    .btn:hover {
      /* background-color: #153243; */
      background-color: #000;
      color: #ffff;
      
    }
   
    .image-wrapper {
  position: relative;
  overflow: hidden;
  /* Optional */
  height: 250px;      /* Set a fixed height */
}

.gallery-img {
  width: 100%;
    height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
  /* .gallery-img {
      width: 100%;
    
      object-fit: cover;
      
    } */
.gallery-img:hover {
  transform: scale(1.4); /* Smooth zoom effect */
}

    .service-card {
      position: relative;
      overflow: hidden;
      border-radius: 5px;
      cursor: pointer;
      transition: transform 0.3s ease;
      
    }

    .service-card img {
      width: 100%;
      height:300px;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .service-card:hover img {
      transform: scale(2);
    }

    .service-title {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-weight: bold;
      font-size: 1.5rem;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
      z-index: 2;
    }

    .service-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.3);
      transition: background 0.3s ease;
    }

    .service-card:hover::after {
      background: rgba(0, 0, 0, 0.5);
    }

  

    footer {
  background-color: #011627;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 400px) {
  footer .row {
    padding: 75px 25px 25px 25px;
   
  }
  .hero{
    height: 100%;
  }
}

footer h2 {
  font-size: 23px;
  font-weight: 400;
}
footer h6 {
  font-size: 17px;
  font-weight: 400;
}
footer p {
  font-size: 15px;
  font-weight: 400;
}

footer nav {
  margin-right: -50px;
  text-align: left;
}
footer a {
  color: white;
  transition: ease 0.3s;
}
footer a:hover {
  color: #99ff14;
}
