@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  max-width: 100vw;
  overflow-x: hidden;
}

.header {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container .site-title {
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
  color: #ffbf00;
  margin: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: medium;
}

.nav-links li a {
  color: #000000;
    font-family: Arial, sans-serif;
    font-size: 1.1rem; 
  
}

.nav-links li a:hover {
  color: #ffbf00;
   /* red on hover */
}


.image-container {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.slider-wrapper {
    position: relative;
    display: inline-block;
}

.slider-wrapper img {
    width: 100vw;
    height: 70vh;
    object-fit: cover; 
}


.slider-heading {
    position: absolute;
    left: 21%;
    bottom: calc(20vh + 10px);
    transform: translateX(-50%);
    color: #ffbf00;
    text-align: center;
    max-width: 90vw;
    min-width: 30vw;
    width: 100%;  
    max-width: 600px; 
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 0.6em; 

}



@media (max-width: 1450px) {
    .slider-heading {
        left: 28%;
        transform: translateX(-50%);
        width: 90vw;  
        min-width: auto; 
    }
}

@media (max-width: 1300px) {
    .slider-heading {
        left: 28%;
        transform: translateX(-50%);
        width: 90vw;  
        min-width: auto; 
    }
}

@media (max-width: 1200px) {
    .slider-heading {
        left: 28%;
        transform: translateX(-50%);
        width: 90vw;  
        min-width: auto; 
    }
}
@media (max-width: 1000px) {
    .slider-heading {
        left: 32%;
        transform: translateX(-50%);
        width: 90vw;  
        min-width: auto; 
    }
}
@media (max-width: 900px) {
    .slider-heading {
        left: 34%;
        transform: translateX(-50%);
        width: 90vw;  
        min-width: auto; 
    }
}
@media (max-width: 900px) {
    .slider-heading {
        left: 40%;
        transform: translateX(-50%);
        width: 90vw;  
        min-width: auto; 
    }
}

@media (max-width: 768px) {
    .slider-heading {
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;  
        min-width: auto;
        bottom: 60%; 
    }
}

.slider-heading h1 {
    font-size: clamp(1.4rem, 2vw, 2vw);
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.slider-heading p {
    color: white; 
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    margin: 0;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* .slider-heading button {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    padding: 0.6em 1.4em;
    background-color: #ffbf00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 140px; 
    text-align: center;
} */

.slider-heading button {
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  padding: 0.6em 1.4em;
  background-color: #ffbf00;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 140px; 
  text-align: center;

  /* Add animation */
  animation: blinkBackground 3s infinite;
}

@keyframes blinkBackground {
  0%, 50%, 100% {
    background-color: #ffbf00; /* original */
  }
  25%, 75% {
    background-color: #ffdb4d; /* lighter shade */
  }
}


.slider-heading button:hover {
    background-color: #ffbf00;
}




button {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us {
  background-color: transparent;
  color: #000;
  border: 2px solid #ffbf00;
}

.about-us:hover {
  background-color: #ffbf00;
  color: #fff;
}

.book-now {
  background-color: #ffbf00;
  color: #fff;
  border: 2px solid #ffbf00;
}

.book-now:hover {
  background-color: #000;
  color: #ffbf00;
}

button::after {
  content: '→';
  margin-left: 0.5rem;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

button:hover::after {
  transform: translateX(5px);
}

.description {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #f4b400;
  padding: 40px 20px;
  text-align: center;
}

.description > div {
  max-width: 500px;
  margin-bottom: 20px;
}

.description img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.description p {
  font-size: 16px;
  color: #000;
  padding: 10px;
  text-align: justify;
}
@media (max-width: 800px) {
  .description {
    flex-direction: column;
  }
}

.image-carousel {
  width: 100%;
  background-color: #333;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

@media (max-width: 800px) {
  .image-carousel {
    flex-direction: column;
  }
}

.image-carousel img {
  border-radius: 25px;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: #f4f4f4;
}

.service-card {
  width: 90%;
  max-width: 340px;
  margin: 10px;
  padding: 15px;
  background-color: #fff;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.service-card img {
  width: 100px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 10px;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer {
  background-color: #002244;
  color: #fff;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-container {
  display: flex;
  flex-direction: row;
  gap:10%;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.footer-section {
  margin-bottom: 20px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 10px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: #ffd000;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #ffd700;
}

.footer-icon {
  width: 50px;
  margin-bottom: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
  margin: 0 5px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

