/* General Styles */
*{
	margin:0;
	padding:0;
	font-family: 'Noto Sans', sans-serif
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease; /* Smooth transition for scrolling */
}

/* Optional: Make the header solid on scroll */
.header1.scrolled {
  background: linear-gradient(90deg, #0077b6, #00b4d8); /* Solid background on scroll */
}


.menuitem{
	padding-left:10px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
}

.nav {
  display: flex;
}

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

.nav-links li {
  margin: 0 10px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #90e0ef;
}

.cta .btn {
  background: #023e8a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.active {
    background-color: #0077b6; /* Blue background */
    color: white; /* White text for better contrast */
    font-weight: bold; /* Highlight the active item with bold text */
    padding: 10px 15px; /* Ensure padding matches your menu style */
    border-radius: 5px; /* Add rounded corners, optional */
    text-decoration: none; /* Remove underline from links */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for better focus */
}

.active:hover {
    background-color: #005f8c; /* Slightly darker blue on hover */
    color: #f0f0f0; /* Subtle color shift on hover */
}
.cta .btn:hover {
  background: #48cae4;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle i {
  font-size: 1.5rem;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #00b4d8;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links {
    flex-direction: column;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav.active {
    display: flex;
  }
}



/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  
  padding:0px;
  margin:0px;
}

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

.hero-image.active {
  opacity: 1;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin: 0 0 15px;
  animation: fadeInDown 1s ease-in-out;
}


    .page-title {
      text-align: center;
      font-size: 2.5em;
      color: #0077b6;
	  text-transform: uppercase;
	margin-top:30px;
	margin-bottom:50px;
    }

    .page-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background: #00b4d8;
      margin: 30px auto;
    }


.hero-text p {
  font-size: 1.2rem;
  margin: 0 0 20px;
  animation: fadeInUp 1s ease-in-out;
}

.btn {
  padding: 10px 25px;
  background-color: #0077b6;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  animation: fadeIn 1s ease-in-out;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #48cae4;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}





/****** ABOUT Section **/
/* General Styles */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* About Section */
.about {
  padding: 50px 20px;
  background: linear-gradient(to bottom, #e0f7fa, #ffffff);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

.about-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.8;
  animation: fadeIn 1.5s ease-in-out;
}

.about-description i {
  color: #00b4d8;
  margin-right: 10px;
  font-size: 1.5rem;
}

.about-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.card-icon {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.card-title {
  font-size: 1.5rem;
  color: #023e8a;
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .card {
    width: 90%;
    margin: 0 auto;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }

  .card-title {
    font-size: 1.2rem;
  }

  .card-text {
    font-size: 0.9rem;
  }
}








/* Honorable Members Section */
.honorable-members {
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f0f9ff, #ffffff);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}


/* Members Grid */
.members-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.member-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 280px;
  text-align: center;
  padding: 20px;
  padding-top:50px;
  animation: fadeInUp 1s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin:5px;
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.member-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
  margin-top: 10px;
  animation: pulse 2s infinite;
}

.member-name {
  font-size: 1.5rem;
  color: #023e8a;
  margin-bottom: 5px;
}

.member-role {
  font-size: 1.2rem;
  color: #0077b6;
  margin-bottom: 15px;
  font-weight: bold;
}

.member-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

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

  .member-card {
    
  }
}




/***** Activity Calender ******/
/* Section Styles */
.activity-events {
  padding: 50px 20px;
  background: linear-gradient(to bottom, #ffffff, #e0f7fa);
}

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

/* Section Title */
.section-title {
  font-size: 2.5rem;
  color: #0077b6;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-in-out;
}


/* Activity Calendar */
.activity-calendar {
  margin-bottom: 50px;
}

.calendar-list {
  list-style: none;
  padding: 0;
}

.calendar-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 20px;
  animation: fadeInLeft 1s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calendar-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.calendar-item i {
  font-size: 2rem;
  color: #0077b6;
  margin-right: 20px;
}

.calendar-details h3 {
  font-size: 1.5rem;
  color: #023e8a;
}

.calendar-details p {
  margin: 5px 0;
  font-size: 1rem;
  color: #555;
}

/* Upcoming Events */
.upcoming-events .events-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.event-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 30%;
  text-align: center;
  padding: 10px;
  padding-top: 20px;
  animation: fadeInUp 1s ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.event-icon {
  font-size: 2.5rem;
  color: #00b4d8;
  margin-bottom: 15px;
}

.event-title {
  font-size: 1.5rem;
  color: #023e8a;
  margin-bottom: 5px;
}

.event-date {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

.event-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .events-grid {
    flex-direction: column;
  }

  .event-card {
    width: 100%;
  }
}




/**** Contact *****/
/* Contact & Location Section */
.contact-location {
  padding: 50px 20px;
  background: linear-gradient(to bottom, #f0f9ff, #ffffff);
}

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

/* Grid Layout */
.contact-location-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Contact Information */
.contact-info {
  flex: 1;
  max-width: 45%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  animation: fadeInLeft 1s ease-in-out;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #023e8a;
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1rem;
  color: #555;
}

.contact-list i {
  font-size: 1.5rem;
  color: #00b4d8;
  margin-right: 15px;
}

/* Google Maps */
.location-map {
  flex: 1;
  max-width: 45%;
  animation: fadeInRight 1s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-location-grid {
    flex-direction: column;
  }

  .contact-info,
  .location-map {
    max-width: 100%;
  }
}





/* Gallery Section */
.gallery-section {
  padding: 50px 20px;
  background: linear-gradient(to bottom, #ffffff, #f0f9ff);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}


/* Carousel Styles */
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 33.33%;
  padding: 10px;
}

.carousel-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.carousel-item img:hover {
  transform: scale(1.1);
}

.member-card img {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.member-card img:hover {
  transform: scale(1.1);
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0077b6;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.carousel-btn:hover {
  background: #023e8a;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-item {
    min-width: 100%;
  }
  .carousel-btn {
    font-size: 1.2rem;
    padding: 8px;
  }
}


.img-logo{
	max-height: 70px;
	margin: 0px;
	padding:0px;
	width: auto;
}













/* Footer Section */
.footer-section {
  background: linear-gradient(to top, #1e293b, #0f172a);
  color: #ffffff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  position: relative;
}

.container-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #38bdf8;
  display: inline-block;
  padding-bottom: 5px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #7dd3fc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #bae6fd;
}

/* Social Media Links */
.social-links a {
  color: #7dd3fc;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #bae6fd;
  transform: scale(1.2);
}

/* Contact Information */
.footer-column p {
  margin: 10px 0;
}

.footer-column i {
  margin-right: 10px;
  color: #38bdf8;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #38bdf8;
  padding-top: 10px;
}

.footer-bottom p {
  margin: 0;
}

/* Back to Top Button */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #38bdf8;
  color: #ffffff;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, transform 0.3s ease;
  display: none; /* Initially hidden */
}

#back-to-top:hover {
  background: #7dd3fc;
  transform: scale(1.1);
}

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

  .footer-column {
    text-align: center;
  }

  .social-links a {
    margin-right: 10px;
  }
}








/* Vision, Mission, and Values Section */
#vision-mission-values {
  padding: 50px 20px;
  background: linear-gradient(to right, #f9f9f9, #ffffff);
  color: #333333;
}

#vision-mission-values .container {
  max-width: 1200px;
  margin: auto;
  margin-top:-70px;
  text-align: center;
}

#vision-mission-values .section-header h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  position: relative;
  color: #2c3e50;
  animation: fadeIn 1s ease-in-out;
}

#vision-mission-values .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

#vision-mission-values .card {
  flex: 1 1 30%;
  max-width: 30%;
  background: #ffffff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideUp 1s ease-in-out;
  min-height:500px;
}

#vision-mission-values .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

#vision-mission-values .card .icon {
  font-size: 2.5em;
  color: #3498db;
  margin-bottom: 10px;
  animation: pulse 2s infinite;
}

#vision-mission-values .card h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #2c3e50;
}

#vision-mission-values .card p,
#vision-mission-values .card ul {
  font-size: 1.1em;
  text-align: left;
  line-height: 1.6;
  color: #555555;
}

#vision-mission-values .card ul {
  list-style: none;
  padding: 0;
}

#vision-mission-values .card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

#vision-mission-values .card ul li:before {
  content: '\f00c';
  font-family: FontAwesome;
  color: #3498db;
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  #vision-mission-values .card {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}










/* SEAT Section */
#seat-section {
  padding: 50px 20px;
  margin-top:-50px;
  background: linear-gradient(to right, #f9f9f9, #ffffff);
  color: #333333;
}

#seat-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

#seat-section .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

#seat-section .column {
  flex: 1 1 45%;
  max-width: 700px;
  box-sizing: border-box;
  padding: 20px;
}

#seat-section .features {
  text-align: left;
  animation: slideInLeft 1s ease-in-out;
}

#seat-section .features h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #2c3e50;
}

#seat-section .features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#seat-section .features ul li {
  font-size: 1.2em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
  color: #555555;
}

#seat-section .features ul li i {
  font-size: 1.5em;
  color: #3498db;
  position: absolute;
  left: 0;
  top: 0;
}

#seat-section .image {
  text-align: center;
  animation: fadeIn 1.5s ease-in-out;
}

#seat-section .image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#seat-section .image img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  #seat-section .column {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }

  #seat-section .features {
    text-align: center;
  }
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}




/* OUR MEMBERS */

.members-section {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.members-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
}

.member-box {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  
}

.member-box:hover {
  background: #e3f2fd;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.member-box h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00b4d8;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #0077b6;
  padding-bottom: 5px;
}

.member-box h2 i {
  margin-right: 8px;
}

.member-box p {
  font-size: 1rem;
  margin: 0;
  color: #333;
}

.member-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-box ul li {
  font-size: 0.9rem;
  margin: 5px 0;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.member-box ul li:hover {
  background: #dff6ff;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .member-box h2 {
    font-size: 1rem;
  }

  .member-box ul li {
    font-size: 0.85rem;
  }
}



/** SEAT **/



.seat-section {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.section-title i {
  margin-right: 10px;
}

.content-grid {
  display: grid;
  gap: 20px;
}

.content-grid.two-column {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.text-content ul {
  list-style: none;
  padding: 0;
}

.text-content ul li {
  background: #e3f2fd;
  margin: 10px 0;
  padding: 10px 15px;
  border-left: 5px solid #0077b6;
  border-radius: 5px;
}

.image-content img {
  width: 100%;
  max-height: 250px; /* Reduced height */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .content-grid.two-column {
    grid-template-columns: 1fr;
  }
}





/**** Activity Calenders ****/


.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.event-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.event-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-details {
  padding: 15px;
}

.event-title {
  font-size: 1.5rem;
  color: #005b96;
  margin-bottom: 10px;
}

.event-description {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.event-timings {
  font-size: 0.9rem;
  color: #0077b6;
  display: flex;
  align-items: center;
}

.event-timings i {
  margin-right: 5px;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .event-title {
    font-size: 1.2rem;
  }

  .event-description {
    font-size: 0.9rem;
  }
}
