

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}



.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* Navbar */
header {
  position: relative;
  height: 0px;
  top: -50px;
  left: 0;
  width: 100%;
    font-family: 'Segoe UI', sans-serif;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
  
}

.logo img {
  width: 250px;
  height: auto;
  margin-left: -90px;
  position: relative;
}


.desktop-menu {
  display: flex;
  gap: 60px;

}

.desktop-menu a {
  text-decoration: none;
  color: white;
  font-size: 16px;
   font-family: cursive;
  position: relative;
  /*margin-left: 100px;*/
  transition: color 0.3s ease;
}

.desktop-menu a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #000;
  transition: width 0.3s ease;
}


.desktop-menu a:hover::after {
  width: 100%;
}

.desktop-menu .btn {
  border: 2px solid white;
  padding: 10px 40px;
  color: #fff;
  font-family:Arial, Helvetica, sans-serif;
  border-radius: 5px;
  margin-top: -10px;
  background: none;
  font-size:1rem;
  cursor: pointer;
  transition: 0.3s ease;
}
.desktop-menu .btn:hover{
  border: 2px solid #000;
    color: #000;
    background: #fff;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  cursor: pointer;
}


.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #111;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.sidebar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.close-btn {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
  color: white;
}


.zero {
    
  height:90vh;
  background: url('./image/3.jpg');
  background-size: cover;    /* or contain */
  background-position: center;
  width: 100%;
  padding-top: 90px;
  display:flex;
     font-family: 'Segoe UI', sans-serif;
  align-items: center;
  color: #fff;
  justify-content: flex-start;
}

.overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.zero-content {
  max-width: 600px;
  margin-left: 100px;
  text-align: left;
  padding: 20px;
}



.zero-content p {
  font-size: 1rem;
  margin-bottom: 25px;
}

.quote-btn {
  text-decoration: none;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 6px;
  width: 160px;
  cursor: pointer;
  text-align: center;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  transition: 0.3s ease;
  display: inline-block;
}

.quote-btn:hover {
  background: white;
  color: #0458d9;
}


@media (max-width: 768px) {
    .logo img {
  width: 250px;
  height: auto;
  margin-top: -30px;
  margin-left: -40px;
}
  .desktop-menu {
    display: none;
  }

  .hamburger {
     padding: 10px 15px;
    background:none;
  display: block;
  font-size: 22px;
   margin-top: 10px;
  margin-right: 20px;
  color: white;
  cursor: pointer;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #111;
  padding: 20px;
  display: flex;
 
  flex-direction: column;
  gap: 20px;
  transition: right 0.3s ease;
  z-index: 9999;
}

.sidebar a {
  color: white;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  font-size: 18px;
}

  .hero-content {
    margin-left: 20px;
    text-align: center;
    max-width: 100%;
  }


  .zero-content h1 {
    font-size: 2.8rem;
  }

  .zero-content p{
    font-size: 1rem;
  }
  .container {
  width: 100%;
  max-width: 1400px;
  margin: auto;

}
video{
  justify-content: center;
  width: 100%;
  height: 200px;
  
}
}
@media (max-width: 1366px) {
  .logo img {
  width: 250px;
  height: auto;
  margin-top: -30px;
  margin-left: -40px;
}
}


.info-section {
  padding: 10px 20px;
  background: linear-gradient(135deg, #dbeafe, #3b82f6);
}

.info-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin-left: 100px;
  font-family: Arial, Helvetica, sans-serif;

  gap: 40px;
}

.info-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.info-text {
  margin-top: 60px;
  max-width: 900px;

}

.info-text p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.info-button {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 20px;
  width: 160px;
  background:none;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  border: 2px solid #fff;
  font-weight: bold;
  transition: background 0.3s ease;
}

.info-button:hover {
  background-color:  #3064d4;
  color: #fff;
}
.services-section {
  padding: 50px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 20fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.service-card {
  background: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
   box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
}

.service-card img {
  width: 70%;
  height: 300px;
  size-adjust:unset;
  object-fit: cover;
}

.service-card h3 {
  padding: 15px;
  font-size: 1.1rem;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.modal-content img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 6px;
}

.modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.modal-content p {
  font-size: 1rem;
  color: #333;
}
a{
  text-decoration: none;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.third__container{
  color: #007bff;
  background-color: #fff;
  /* color: #007bff; */
 /* background: linear-gradient(135deg, #dbeafe, #3b82f6); */
/* background: rgba(91, 33, 182, 0.8);
backdrop-filter: blur(5px); */
/* background-color: #ffe5b4; */
/* background-color:rgb(202, 150, 54); */
/* background: linear-gradient(45deg, #004e92, #070c39); */
/* background: linear-gradient(45deg, orange, rgb(139, 100, 25)); */


}
.third__container h2{
  top: 20px;
  font-size: 2rem;
  position: relative;
      text-align: center;

      margin-bottom:50px;
    }

    .third__services {
      display: grid;
      grid-template-columns: repeat(3, minmax(240px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: auto;
    }

    .third__service {
      text-align: center;
      cursor: pointer;
      transition: transform 0.3s;
    }

    .third__service:hover {
      transform: translateY(-5px);
    }

    .third__service img {
      width: 100%;
      max-height: 200px;
      object-fit: contain;
      border-radius: 10px;
    }
    .third__container img:hover{
      transform: scale(1.2);
    }

    .third_service-title {
      margin-top: 10px;
      font-weight: bolder;
      color:#000;
      font-size: 1.2rem;
    }
    .modal, .form-modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      display: none;
      justify-content: center;
      align-items: center;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }
    .modal1, .form-modal{
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      display: none;
      justify-content: center;
      align-items: center;
      background: rgba(0, 0, 0, 0.7);
      z-index: 999;
    }

    .modal-content, .form-content {
      background: #fff;
      padding: 25px;
      max-width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      text-align: left;
      border-radius: 10px;
      position: relative;
    }

    .modal-close, .form-close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #000;
    }

    .book-btn {
      margin-top: 20px;
      padding: 12px 20px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }

    .book-btn:hover {
      background-color: #0056b3;
    }

    .form1 input, .form1 textarea, .form1 select {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border-radius: 5px;
      border: 1px solid #ccc;
    }

    .form1 button {
      padding: 10px 15px;
      width: 100%;
      background-color:#007bff  ;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
.marquee-container {
      overflow: hidden;
      white-space: nowrap;
      background-color: #1e1e2f;
      height: 500px;
      padding: 20px 10px;
      position: relative;
    }
.marquee-container h2{
  color:#fff;
  font-size: 2rem;
  margin-top: 40px;
  text-align: center;
  justify-content: center;
  
}
    .marquee-content {
      display: inline-flex;
      gap: 40px;
      animation: scroll-left 20s linear infinite;
      animation-delay: 2s; 
    }

    .marquee-content img {
      height: auto;
      width: 400px;
      margin-top: 100px;
    }
.marquee-content #abc{
  height: auto;
      width: 200px;
}
    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    
      .info-text {
  margin-top: 0px;
  max-width: 550px;

}
.marquee-container{
  max-width: 100%;
  
}
      .marquee-content img {
         width: 160px;
      }
      .marquee-container h2{
  color:#fff;
  font-size: 2rem;
  text-align: center;
  justify-content: center;
  align-items: center;

}
    }

    
.testimonial-section {
    background-color: lightgray;
     font-family: Arial, sans-serif;
  padding: 40px 20px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 32px;
  text-align: center;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 30px 20px;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote {
  font-size: 30px;
  color: black;
}

.testimonial-card p {
  font-size: 16px;
  margin: 10px 0;
}

.testimonial-card a {
  display: inline-block;
  color: blue;
  font-size: 15px;
  margin: 5px 0;
  text-decoration: underline;
}

.testimonial-card h4 {
  margin: 10px 0 0;
  font-weight: 500;
  font-size: 16px;
}
.footer {
  background-color: #000;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #999;
  padding-bottom: 30px;
  gap: 40px;
}

.footer-left, .footer-right {
  flex: 1 1 300px;
}

.footer-left p {
  font-size: 16px;
  line-height: 1.7;
}

.footer-right h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-right p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  color: #ccc;
}


@media (max-width:768px){
    .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
}

    @media (max-width: 768px) {
      .carousel__img img {
        width: 200px;
      }

      .carousel__img img.active {
        width: 300px;
        height: 200px;
      }
    }

    @media (max-width: 480px) {
        
    
  
      .carousel__img img {
        width: 100px;
      }

      .carousel__img img.active {
        width: 200px;
      }
    }



    
    @media (max-width: 768px) {
      .third__services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap:40px;
      max-width: 1200px;
      margin: auto;
    }
      .modal-content, .form-content {
        padding: 15px;
        overflow-x: hidden;
      }

      .third__service img {
        max-height: 140px;
      }
    }

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #333;
    width: 200px;
    display: none;
    padding: 10px 0;
  }

  .nav-links.show {
    display: flex;
  }

   

}


@media (max-width: 768px) {
    .details{
  margin: 10px;
  width: 350px;
  border-radius: 10px;
  background-color: #fff;
}
.grid{
  gap: 10px;
}
 .carde p { font-size: 10px; top: -100px; color: #000; font-family: Arial, sans-serif; }
 .grid img { padding: 50px 0px; border-radius: 8px; position: relative; }
.carde img {  border-radius: 8px; position: relative; }
     
    }
 @media (max-width:1024px) {
       .carde img { width: 100%; height: 290px; border-radius: 8px; }
     
    }











    @media (max-width: 1024px) {
   
      
      .vodal-content img {
     padding: 20px;
      width: 80%;
      margin-top: -40px;
      margin-left: 0px;
      height: 200px;
      background:none;
      border-radius: 8px;
      align-items: center;
      
    }
    
      .containerr{padding: 100px 20px; width: 100%; }
      .carde { width: 100%;}
     .containerr img{width: 30%;}
     .form-section {
  position: static;
  width:100%;
    margin-top: 20px;
  }
   .buttons {
    width: 100%;
    justify-content: center;
    
    flex-direction: column;
    gap: 10px;
}
}
