


/* styles.css */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins:wght@200&family=Raleway:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
.logo-img {
  height: 50px;
  width: auto;
}



body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background-color: #4c3217;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo span {
  display: block;
  font-weight: 300;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #fbdc00;
  font-weight: 500;
}

.contact-info {
  display: flex;
  align-items: righ;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.phone-icon {
  width: 20px;
}

.main {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 400px;
  position: relative;
}


.main-text {
  background-color: #3f49ac;
  color: #FFDD3F;
  flex: 1 1 40%;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Vector decorations */
.main-text::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  background-color: #ffd6d6;
  border-radius: 50%;
  z-index: 0;
  animation: float 6s ease-in-out infinite;
}

.main-text::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: -10px;
  width: 40px;
  height: 6px;
  background-color: #ff5b2e;
  transform: rotate(45deg);
  z-index: 0;
  animation: spinSlow 12s linear infinite;
}

.main-text .vector-shape1,
.main-text .vector-shape2,
.main-text .vector-shape3,
.main-text .vector-shape4,
.main-text .vector-shape5 {
  position: absolute;
  z-index: 0;
}

.main-text .vector-shape1 {
  top: 60px;
  right: 40px;
  width: 30px;
  height: 30px;
  background-color: #fbdc00;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.main-text .vector-shape2 {
  bottom: 80px;
  right: 20px;
  width: 40px;
  height: 10px;
  background-color: #ff7b00;
  transform: rotate(-30deg);
  animation: spinSlow 10s linear infinite;
}

.main-text .vector-shape3 {
  top: 150px;
  left: 100px;
  width: 20px;
  height: 20px;
  background-color: #00d2ff;
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.main-text .vector-shape4 {
  top: 20%;
  left: 30%;
  width: 10px;
  height: 10px;
  background-color: #ffcb05;
  border-radius: 50%;
  animation: float 9s ease-in-out infinite;
}

.main-text .vector-shape5 {
  bottom: 30%;
  right: 30%;
  width: 25px;
  height: 6px;
  background-color: #3aff7a;
  transform: rotate(45deg);
  animation: spinSlow 11s linear infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.main-text h1,
.main-text p,
.btn {
  position: relative;
  z-index: 1;
}

.main-text h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 200;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.main-text p {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.btn {
  background: #fbdc00;
  color: #2e3ac3;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  width: fit-content;
}

.main-image {
  flex: 1 1 60%;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 2rem 14rem;
  text-align: justify;
  font-family: 'Raleway', sans-serif;
  color: #3f49ac;
}
.contact {
    padding: 1rem 20rem;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    color: #3f49ac;
  }


.section.facilities {
  background-color: #fddbcf;
  position: relative;
  overflow: hidden;
}

.section.facilities .facilities-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}

.facilities-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facilities-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.facilities-content {
  flex: 1 1 50%;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section.facilities ul {
  list-style: disc inside;
  padding-left: 1rem;
}

.section.facilities ul li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  loading: lazy;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.video-container {
  margin-top: 2rem;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonial {
  background: #f9f9f9;
  margin: 1rem auto;
  padding: 1.5rem;
  max-width: 600px;
  border-left: 5px solid #fbdc00;
  border-radius: 6px;
  font-style: italic;
}

footer {
  background: #4c3217;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  font-family: 'Raleway', sans-serif;
}

@media (max-width: 768px)
 {
  .main-text {
    background-color: #555874;

  }
    .section {
        padding: 2rem 1.5rem;
            }
      .contact {
        padding: 2rem 1.5rem;
            }

      

  .main {
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .main-text {
    text-align: center;
  }

  .main-text h1 {
    font-size: 2.2rem;
  }

  .main-image {
    text-align: center;
  }

  .main-image img {
    height: auto;
  }

  .section.facilities .facilities-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .facilities-content {
    text-align: center;
  }

  .section.facilities ul {
    list-style: none;
    padding-left: 0;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins:wght@200&family=Raleway:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background-color: #4c3217;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo span {
  display: block;
  font-weight: 300;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  text-decoration: none;
  color: #fbdc00;
  font-weight: 500;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.phone-icon {
  width: 20px;
}



