* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px 20px;
}

.brand {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 10px;
    transition: 0.3s;
}

.nav-links a:hover {
    background-color: #555;
    border-radius: 5px;
}
/*-------------------------*/
.gallery-header {
    text-align: center;
    padding: 2rem;
    background: #f4f4f4;
    border-bottom: 2px solid #ddd;
  }
  
  .gallery-header h1 {
    font-size: 2.5rem;
    margin: 0;
  }
  
  .gallery-header p {
    color: #666;
  }
  
  .gallery-section {
    padding: 2rem;
  }
  
  .gallery-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-left: 4px solid #007bff;
    padding-left: 1rem;
  }
  
  /* .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  } */
  
  .image-grid img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive layout */
    gap: 10px;
  }
  
  .image-grid img {
    width: 100%;
    height: 200px; /* or any fixed height you prefer */
    object-fit: cover; /* Ensures the image fills the box without stretching */
    border-radius: 8px; /* Optional: for rounded corners */
  }
  
  .image-grid img:hover {
    transform: scale(1.05);
  }
  
  .card {
    text-align: center;
    max-width: 250px;
  }
  .card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 15%;
    object-fit: cover;
    border: 5px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  
  .card p {
    margin-top: 0.5rem;
    font-weight: bold;
  }
   /* Footer */
   .footer-bottom {
    text-align: center;
    padding: 20px;
    background-color: black;
    color: white;
    margin-top: 40px;
  }
  .book-plot {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
  }
  
  .director-card {
    display: inline-block;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 300px;
  }
  
  .profile-pic {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 25%;
    border: 3px solid #ccc;
    margin-bottom: 15px;
  }
  
  .phone {
    font-size: 18px;
    margin: 10px 0 20px;
  }
  
  .social-icons a {
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
  }
  
  .social-icons .instagram {
    color: #e4405f;
  }
  
  .social-icons .youtube {
    color: #ff0000;
  }
  
  .social-icons .linkedin {
    color: #0077b5;
  }
  
  .social-icons .facebook {
    color: #1877f2;
  }