* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

.slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slider {
  height: 100%;
  position: relative;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: block;
  animation: fade 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: #fff;
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 25px;
  border-radius: 8px;
}

.controls {
  position: absolute;
  bottom: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.controls button {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 30px;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 50%;
  cursor: pointer;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}





.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: #ffffff;
  position: relative;
}

.logo img {
  height: 60px;
}

/* Center the nav-links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 4rem;
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
}

.nav-links li a {
  text-decoration: none;
  font-weight: bold;
  color: #970101;
  font-size: 20px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #FF0D14;
}

/* Responsive (optional basic stack layout) */
@media (max-width: 720px) {
  .navbar {
    flex-direction: column;
  }

  .nav-links {
    position: static;
    transform: none;
    flex-direction: column;
    margin-top: 1rem;
  }
}

/*-- hs top header Start --*/
.main_header_wrapper {
  float: left;
  width: 100%;
  background: #110125;


}

.hs_header_Wrapper {
  float: left;
  width: 100%;
  position: absolute;
  top: 60px;
  z-index: 1;
}

.hs_top_header_main_Wrapper {
  float: left;
  width: 100%;
  background: #542875;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.hs_header_logo_left {
  float: left;
  width: 30%;
}

.hs_logo_wrapper {
  float: left;
  padding-top: 20px;
}

.hs_header_add_wrapper {
  float: left;
  width: 230px;
  line-height: 70px;
  margin-left: 50px;
}

.hs_header_add_icon {
  float: left;
  text-align: center;
  font-size: 24px;
  color: #fff;
}

.hs_header_add_icon_cont {
  float: left;
  width: calc(100% - 50px);
  padding-left: 15px;
}

.hs_header_add_icon_cont p {
  font-size: 14px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

.hs_btn_wrapper {
  float: right;
}





.about-section {
  padding: 60px 20px;
  background-color: #fff;
}

.container {
  max-width: 1520px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #ba0000;
  margin-bottom: 30px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
  font-family: "Poppins", sans-serif;
}


/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }



  .about-text h2 {
    font-size: 2rem;
  }
}




.services-section {
  padding: 60px 20px;
  background-color: orangered;
  text-align: center;
}

.container {
  max-width: 1520px;
  margin: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffffff;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-box {
  background-color: #611307;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  height: 380px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px dashed yellow;
}

.service-box:hover {
  transform: translateY(-10px);
}

.service-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.service-box h4 a {
  font-size: 1rem;
  margin-top: 20px;
  color: #fff;

}

.service-box p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
  }
}


.locations-section {
  padding: 60px 20px;
  background-color: #FCC604;
  text-align: center;
}

.container {
  max-width: 1520px;
  margin: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: justify;
}

.locations-grid a {

  text-decoration: none;
  color: black;
  
    font-size: 17px;
}



.locations-grid i {

color:rgb(255, 0, 0) ;
background-color: #fff;
border-radius: 20px;
padding: 8px 8px 8px 8px;

}



body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.footer {
  background-color:#002633;
  color: #fff;
  padding: 50px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 17px;
  color: #fff;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #fff;
}

.map-container iframe {
  width: 100%;
  height: 120px;
  border: none;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #aaa;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
