/* Global Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background: #232323;
  color: white;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.8em;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

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

.navbar .nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #BB86FC;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero-text .btn {
  background: #ff7f50;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  transition: background 0.3s ease;
}

.hero-text .btn:hover {
  background: #ff6347;
}

/* Section Styling */
.section {
  padding: 80px 20px;
  text-align: center;
  background-color: lightpink;
}

.section h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

.bg-light {
  background:aliceblue;
}

/* Vision Section */
.about-section {
  text-align: center;
  margin: 40px auto;
  padding: 20px;
  max-width: 800px;
  background-color: lightblue;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.styled-list {
  list-style-type: disc;
  text-align: left;
  margin: 0 auto;
  padding-left: 20px;
  max-width: 600px;
}

.styled-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #555;
}

/* Amenities Section */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(246, 221, 221, 0.1);
}

.card h3 {
  margin-bottom: 15px;
  color: #ff7f50;
}

.card p {
  color: #555;
}

/* Gallery Section */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px; /* Increased gap for larger images */
  justify-content: center;
  padding: 20px 0; /* Added padding for better spacing */
  
}

.gallery-grid img {
   max-width: 100%; /*Ensure images don't overflow */
  width: 400px; /* Increased width for larger images */
  height: 700px; /* Increased height for larger images */
  object-fit: cover; /* Ensures images maintain aspect ratio */
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
}

  /* Activities Section */
.activities-container {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.activities-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.activities-list {
  list-style: none;
  padding: 0;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.activities-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.bullet {
  font-size: 1.4rem;
  color: #ff7f50;
}
/* Trust Members Section */
.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 40px auto;
  background-color: grey;
}


.image-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.image-card {
  text-align: center;
  border: 2px solid #ff7f50;
  border-radius: 10px;
  padding: 15px;
  background-color: white;
  width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.image-item {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.info {
  margin-top: 10px;
}

.name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.profession {
  font-size: 14px;
  color: #777;
  margin-top: 5px;
}

/* Footer */
.footer {
  background: #232323;
  color: white;
  text-align: center;
  padding: 20px 0;
}

.footer address {
  margin: 10px 0;
  font-style: normal;
}

.footer p {
  margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .hero-text h1 {
    font-size: 2.5em;
  }

  .grid {
    flex-direction: column;
    align-items: center;
  }

  .image-list {
    flex-direction: column;
    align-items: center;
  }
}