/* Reset some default browser styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Apply a font */
body {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}

/* Background Image with Dark Tint */
.hero {
  position: relative;
  height: 100vh;
  background: url("images/background.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  /* Makes the background image fixed */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  /* Dark tint */
}

.content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.5rem;
  color: white;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  /* Start at the top */
  left: 0;
  width: 100%;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(74, 70, 70, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
  transition: top 0.3s;
  /* Smooth transition for hiding/showing */
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  object-fit: contain;
  /* Maintains aspect ratio */
}

.site-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  /* Enhances readability */
}

/* Navigation Menu */
.navbar-right {
  list-style: none;
  display: flex;
  margin-left: auto;

  /* Push the menu to the right */
}

.navbar-right li {
  margin-left: 20px;
}

/* Combine similar styles where possible */
.navbar-right a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  position: relative;
  padding-bottom: 11px;
  transition: color 0.3s, border-bottom 0.3s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.navbar-right a:hover {
  color: #f44336;
  /* Add hover effect directly here */
}

/* Reduce redundancy in hover states */
.activity-card:hover,
.class-level:hover,
.resource-item:hover {
  transform: scale(1.05);
}

.navbar-right a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f44336;
  /* Updated to the new hover color */
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

.navbar-right a:hover::after {
  visibility: visible;
  transform: scaleX(1);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  /* Initially hidden */
  font-size: 2rem;
  /* Make sure the icon is large enough */
  cursor: pointer;
  color: #ffffff;
  /* Ensure the icon is visible against the background */
  margin-left: auto;
  /* Align it to the right */
  transition: transform 0.3s, color 0.3s;
  /* Smooth transition for hover */
}

.hamburger:hover {
  transform: scale(1.1);
  /* Slightly increase size on hover */
  color: #f44336;
  /* Change color on hover */
}

/* Responsive Navigation */
@media (max-width: 1460px) {
  .navbar {
    padding: 10px 15px;
    /* Adjust padding for mobile */
  }

  .navbar-right {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #373c4f;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    max-height: 700px;
    overflow-y: auto;
    display: grid;
    gap: 5px;
  }

  .navbar-right.active {
    display: flex;
    /* Show menu when active */
    opacity: 1;
    /* Set opacity to 1 when active */
    transform: translateY(0);
    /* Move to original position */
  }

  .navbar-right li {
    margin: 10px 0;
    /* Adjust margin for list items in mobile */
    text-align: center;
    /* Center-align menu items */
  }

  .navbar-right a {
    padding: 10px 20px;
    /* Increase padding for touch targets */
    transition: background-color 0.3s;
    /* Add background transition */
  }

  .navbar-right a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    /* Light hover effect */
    border-radius: 5px;
    /* Rounded corners on hover */
  }

  .content h1 {
    font-size: 2.5rem;
  }

  .content p {
    font-size: 1.2rem;
  }

  .hero {
    background-attachment: scroll;
    /* Disable fixed background on small screens */
  }

  .site-name,
  .navbar-right a {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    /* Ensure readability on smaller screens */
  }

  .hamburger {
    display: block;
    /* Show hamburger on small screens */
  }
}

/* Sections */
section {
  padding: 60px 30px;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333333;
  /* Darker color for text */
}

section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #2c3e50;
  /* Darker color for text */
}

/* About Us Section */
#about {
  background-color: #ffffff;
  padding: 80px 30px;
  /* Increased top and bottom padding */
  text-align: center;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.about-text {
  flex: 1;
  min-width: 250px;
  color: #333333;
  text-align: left;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.6;
  text-align: center;
}

/* Statistics Subsection */
.about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  /* Space between stats */
  margin-top: 60px;
  /* Space above the stats */
  flex-wrap: wrap;
}

.stat-item {
  background-color: #e78180;
  /* Light red background */
  color: #ffffff;
  /* White text for contrast */
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.stat-item p {
  font-size: 1.2rem;
  margin: 0;
}

/* Activities Section */
.activities-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 50px 30px;
  background-color: #f0f0f0;
}

.activity-card {
  background-color: #ffffff;
  /* Keeping the background white */
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  width: 300px;
  margin: 20px;
  /* overflow: hidden; */
  transition: transform 0.2s;
  position: relative;
}

.activity-card:hover {
  transform: scale(1.05);
}

.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.activity-info {
  padding: 15px;
}

.activity-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.activity-info p {
  margin: 5px 0;
  color: #2c3e50;
  font-size: 1rem;
}

/* Class Levels Section */
#class-levels {
  display: grid;
  background: linear-gradient(135deg, #373c4f, #2c2f3a);
  gap: 2rem;
}

@media (max-width: 768px) {
  .class-levels {
    flex-direction: column;
  }
}

.class-levels {
  display: flex;
  align-items: center;
  /* Align items vertically centered */
  padding: 20px;
  /* Padding around the section */
  background-color: #f9f9f9;
  /* Light background color */
  border-radius: 10px;
  /* Rounded corners */
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.459);
  /* Subtle shadow for depth */
}

.class-level-image {
  flex: 0.7;
  /* Take up 50% of the width */
  margin-right: 20px;
  /* Space between image and content */
}

.class-level-image img {
  width: 100%;
  /* Make image responsive */
  border-radius: 10px;
  /* Match image corners to section corners */
}

.class-level-content {
  flex: 2;
  /* Take up 50% of the width */
}

.class-level-content h2 {
  font-size: 24px;
  /* Font size for the heading */
  color: #333;
  /* Dark color for the heading */
  margin-bottom: 10px;
  /* Space below heading */
}

.class-level-content p {
  font-size: 16px;
  /* Font size for the paragraph */
  color: #666;
  /* Gray color for the text */
  line-height: 1.5;
  /* Spacing between lines */
}

#news {
  background-color: #f0f0f0;
  padding: 60px 30px;
  text-align: center;
  min-height: 100vh;
  position: relative;
}

.news-carousel {
  position: relative;
  display: flex;
  /* overflow: hidden; */
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.carousel-slide {
  display: none;
  /* Hide slides initially */
  min-width: 100%;
  transition: transform 0.5s ease;
  text-align: center;
  position: relative;
}

.carousel-slide.active {
  display: block;
  /* Show the active slide */
}

/* Increase image height */
.carousel-slide img {
  width: 100%;
  /* Make images take up full width of the slide */
  height: 850px;
  /* Increased fixed height for more prominent images */
  object-fit: cover;
  /* Maintain aspect ratio and crop if necessary */
  border-radius: 8px;
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Darker background for better readability */
  padding: 20px;
  color: white;
  text-align: left;
  box-sizing: border-box;
  /* Make padding included in width */
}

.slide-content h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 16px;
  color: #f0f0f0;
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  /* Modern blue color */
  color: white;
  font-size: 36px;
  padding: 15px 20px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  /* Rounded buttons */
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Subtle shadow */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.prev-btn {
  left: 20px;
  /* Move button to the left */
}

.next-btn {
  right: 20px;
  /* Move button to the right */
}

/* Hover effect for buttons */
.carousel-btn:hover {
  background-color: #1a5f87;
  /* Darker blue on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  /* Stronger shadow on hover */
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
  .slide-content {
    font-size: 14px;
  }

  .carousel-btn {
    font-size: 28px;
    /* Slightly smaller buttons on mobile */
    padding: 10px;
  }

  .carousel-slide img {
    height: 500px;
    /* Smaller image height on mobile */
  }
}

/* Testimonials Section */
/* #testimonials {
    background-color: #ffffff;
    padding: 60px 30px;
    text-align: center;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: #333333;
}

.testimonial h4 {
    margin-top: 10px;
    font-weight: bold;
    color: #2980B9;
} */

.cadet-quote-container {
  /* Updated class name */
  background-color: #ffffff;
  /* White background for the quote section */
  border-radius: 10px;
  /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
  max-width: 600px;
  /* Limit the width */
  margin: auto;
  /* Center the container */
}

.header {
  text-align: center;
  /* Center align the header */
  font-size: 24px;
  /* Font size for the header */
  color: #333;
  /* Dark text color */
  margin: 20px 0;
  /* Space above and below the header */
  padding: 10px;
  /* Optional padding */
}

.quote-content {
  /* Updated class name */
  display: flex;
  /* Use flexbox for layout */
  align-items: center;
  /* Center items vertically */
  border-left: 5px solid #2c3e50;
  /* Left border for emphasis */
  padding: 30px;
  /* Padding inside the quote content */
}

.cadet-image {
  width: 110px;
  /* Fixed width for the image */
  height: 130px;
  /* Fixed height to maintain aspect ratio */
  border-radius: 50%;
  /* Circular image */
  margin-right: 15px;
  /* Space between image and text */
}

.quote-text {
  /* New class for text content */
  flex: 1;
  /* Allow text to take available space */
}

.cadet-name {
  font-weight: bold;
  /* Bold name */
  font-size: 18px;
  /* Size for the name */
  color: #2c3e50;
  /* Color to match the border */
  margin: 0;
  /* Remove default margin */
}

.quote {
  font-style: italic;
  /* Italic style for the quote */
  font-size: 16px;
  /* Size for the quote */
  color: #555;
  /* Darker gray for the quote text */
  margin-top: 5px;
  /* Space above the quote */
}

/* Events Calendar Section */

/* Staff & Instructors Section */
#staff {
  background-color: #ffffff;
  padding: 60px 30px;
  text-align: center;
}

.staff-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.staff-member {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 200px;
  text-align: center;
}

.staff-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
}

.staff-member h3 {
  color: #2980b9;
  margin-bottom: 5px;
}

.staff-member p {
  color: #555555;
  font-size: 0.9rem;
}

/* Achievements & Honors Section */
/* General body style removed for uniqueness */
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7f7f7;
}
.margin {
  margin-bottom: 100px;
}
.card {
  flex: 1;
  padding: 20px;
  text-align: left;
  color: #000;
  position: relative;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  margin: 15px;
  height: 400px;
  /* Increased height for better layout */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card1 {
  background-color: #a1d7d1;
}

.card2 {
  background-color: #dec28e;
}

.card3 {
  background-color: #a1c4de;
}

.logo {
  font-size: 20px;
  color: #81a89e;
  font-weight: 500;
}

.title {
  font-size: 26px;
  font-weight: bold;
  margin: 20px 0;
  color: #333;
}

.description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.showcase-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Circle design */
.design-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  /* Adjust to make it larger and touch the edges */
  height: 300px;
  opacity: 0.2;
  /* Lower opacity for a subtle effect */
  z-index: 1;
  /* Ensures it stays behind the text */
}

@media (max-width: 768px) {
  .design-img {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 1460px) {
  .design-img {
    width: 200px;
    height: 200px;
  }
}
/* @media (max-width: 1199px) {
  .design-img {
    width: 250px;
    height: 250px;
  }
} */

/* @media (max-width: 7) */
/* Adding a subtle hover effect on the cards */
.card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

/* Social Media Feed Section */
/* #social-media {
  background-color: #ffffff;
  padding: 60px 30px;
  text-align: center;
}

.social-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-container a img {
  width: 63px;
  height: 60px;
  transition: transform 0.3s, opacity 0.3s;
}

.social-container a img:hover {
  transform: scale(1.2);
  opacity: 0.8;
} */

/* Resources & Downloads Section */
/* #resources {
  background-color: #f9f9f9;
  padding: 60px 30px;
  text-align: center;
}

.resources-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.resource-item:hover {
  transform: scale(1.05);
}

.resource-item a {
  text-decoration: none;
  color: #333333;
}

.resource-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.resource-item h3 {
  font-size: 1rem;
  color: #2980b9;
} */

/* Partners & Sponsors Section */
/* #partners {
  background-color: #f0f0f0;
  padding: 60px 30px;
  text-align: center;
}

.partners-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 150px;
  text-align: center;
}

.partner img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.partner p {
  color: #333333;
  font-size: 0.9rem;
} */

/* Contact Section */
/* #contact {
  background-color: #f0f0f0;
  padding: 60px 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  margin-bottom: 5px;
  color: #2c3e50;
  text-align: left;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 10px;
  background-color: #e78180;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #d5606c;
} */

/* Footer */
footer {
  background: rgba(74, 70, 70, 0.2);
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
  padding: 20px;
  text-align: center;
  color: #fff;
}

/* Responsive Design for All Sections */
@media (max-width: 768px) {
  /* About Us Section */
  .about-container {
    flex-direction: column;
  }

  .about-text {
    text-align: center;
  }

  /* Statistics Subsection */
  .about-stats {
    gap: 20px;
  }

  .stat-item {
    padding: 15px 20px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 1rem;
  }

  /* Activities Section */
  .activities-container {
    flex-direction: column;
    align-items: center;
  }

  .activity-card {
    width: 90%;
  }

  /* Class Levels Section */
  .class-level-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  /* News & Announcements Section */
  .news-container {
    grid-template-columns: 1fr;
  }

  /* Staff & Instructors Section */
  .staff-container {
    flex-direction: column;
    align-items: center;
  }

  /* Achievements & Honors Section */
  .achievements-container {
    flex-direction: column;
  }

  /* Partners & Sponsors Section */
  .partners-container {
    flex-direction: column;
  }

  /* Social Media Feed Section */
  .social-container {
    flex-direction: column;
  }
}

/* Additional Enhancements */

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Apply a font */
body {
  font-family: "Roboto", sans-serif;
  color: #ffffff;
}

/* Sections */
/* section {
  padding: 60px 30px;
  min-height: 100vh;
} */

section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #333333;
  /* Darker color for text */
}

section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
  color: #2c3e50;
  /* Darker color for text */
}

/* About Us Section */
#about {
  background-color: #ffffff;
  padding: 80px 30px;
  /* Increased top and bottom padding */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center vertically */
  align-items: center;
  /* Center horizontally */
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 100px;
  max-width: 1200px;
  margin: 40px 0;
  /* Added margin-top and margin-bottom for spacing */
}

.about-container img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
}

.about-text {
  flex: 1;
  min-width: 250px;
  color: #333333;
  text-align: left;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 2;
  /* text-align: left; */
}

/* Statistics Subsection */
.about-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  /* Reduced gap for uniformity */
  margin-top: 60px;
  /* Space above the stats */
  flex-wrap: wrap;
}

.stat-item {
  background-color: #373c4f;
  /* Updated color to a shade of blue */
  color: #ffffff;
  /* White text for contrast */
  padding: 2cm 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 300px;
  /* Fixed width for uniformity */
  height: 200px;
  /* Fixed height for uniformity */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.stat-item p {
  font-size: 1.2rem;
  margin: 0;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  /* About Us Section */
  #about {
    padding: 60px 15px;
    /* Adjusted padding for smaller screens */
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    margin: 20px 0;
    /* Reduced margin for smaller screens */
  }

  .about-text {
    text-align: center;
  }

  /* Statistics Subsection */
  .about-stats {
    gap: 20px;
  }

  .stat-item {
    width: 150px;
    /* Reduced width for smaller screens */
    height: 120px;
    /* Reduced height for smaller screens */
    padding: 15px 20px;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 1rem;
  }
}

/* Calendar Styling */
:root {
  --primary-clr: #373c4f;
}

/* nice scroll bar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--primary-clr);

  border-radius: 50px;
}

::-webkit-scrollbar-thumb {
  background: #f5f5f5;
  border-radius: 50px;
}

.container {
  position: relative;
  width: 1200px;
  min-height: 850px;
  margin: 5rem auto;
  padding: 5px;
  color: #fff;
  display: flex;

  border-radius: 10px;
  background-color: #373c4f;
}

.left {
  width: 60%;
  padding: 20px;
}

.calendar {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #878895;
  border-radius: 5px;
  background-color: #fff;
}

/* set after behind the main element */
.calendar::before,
.calendar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 12px;
  height: 97%;
  border-radius: 0 5px 5px 0;
  background-color: #d3d4d6d7;
  transform: translateY(-50%);
}

.calendar::before {
  height: 94%;
  left: calc(100% + 12px);
  background-color: rgb(153, 153, 153);
}

.calendar .month {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: capitalize;
}

.calendar .month .prev,
.calendar .month .next {
  cursor: pointer;
}

.calendar .month .prev:hover,
.calendar .month .next:hover {
  color: var(--primary-clr);
}

.calendar .weekdays {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
}

.weekdays div {
  width: 14.28%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar .days {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.calendar .days .day {
  width: 14.28%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary-clr);
  border: 1px solid #f5f5f5;
}

.calendar .days .day:nth-child(7n + 1) {
  border-left: 2px solid #f5f5f5;
}

.calendar .days .day:nth-child(7n) {
  border-right: 2px solid #f5f5f5;
}

.calendar .days .day:nth-child(-n + 7) {
  border-top: 2px solid #f5f5f5;
}

.calendar .days .day:nth-child(n + 29) {
  border-bottom: 2px solid #f5f5f5;
}

.calendar .days .day:not(.prev-date, .next-date):hover {
  color: #fff;
  background-color: var(--primary-clr);
}

.calendar .days .prev-date,
.calendar .days .next-date {
  color: #b3b3b3;
}

.calendar .days .active {
  position: relative;
  font-size: 2rem;
  color: #fff;
  background-color: var(--primary-clr);
}

.calendar .days .active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px 2px var(--primary-clr);
}

.calendar .days .today {
  font-size: 2rem;
}

.calendar .days .event {
  position: relative;
}

.calendar .days .event::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  width: 75%;
  height: 6px;
  border-radius: 30px;
  transform: translateX(-50%);
  background-color: var(--primary-clr);
}

.calendar .days .day:hover.event::after {
  background-color: #fff;
}

.calendar .days .active.event::after {
  background-color: #fff;
  bottom: 20%;
}

.calendar .days .active.event {
  padding-bottom: 10px;
}

.calendar .goto-today {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 0 20px;
  margin-bottom: 20px;
  color: var(--primary-clr);
}

.calendar .goto-today .goto {
  display: flex;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--primary-clr);
}

.calendar .goto-today .goto input {
  width: 100%;
  height: 30px;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 20px;
  color: var(--primary-clr);
  border-radius: 5px;
}

.calendar .goto-today button {
  padding: 5px 10px;
  border: 1px solid var(--primary-clr);
  border-radius: 5px;
  background-color: transparent;
  cursor: pointer;
  color: var(--primary-clr);
}

.calendar .goto-today button:hover {
  color: #fff;
  background-color: var(--primary-clr);
}

.calendar .goto-today .goto button {
  border: none;
  border-left: 1px solid var(--primary-clr);
  border-radius: 0;
}

.container .right {
  position: relative;
  width: 40%;
  min-height: 100%;
  padding: 20px 0;
}

.right .today-date {
  width: 100%;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  padding-left: 70px;
  margin-top: 50px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.right .today-date .event-day {
  font-size: 2rem;
  font-weight: 500;
}

.right .today-date .event-date {
  font-size: 1rem;
  font-weight: 400;
  color: #878895;
}

.events {
  width: 100%;
  height: 100%;
  max-height: 600px;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding-left: 4px;
}

.events .event {
  position: relative;
  width: 95%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
  padding-left: 50px;
  color: #fff;
  background: linear-gradient(90deg, #3f4458, transparent);
  cursor: pointer;
}

/* even event */
.events .event:nth-child(even) {
  background: transparent;
}

.events .event:hover {
  background: linear-gradient(90deg, var(--primary-clr), transparent);
}

.events .event .title {
  display: flex;
  align-items: center;
  pointer-events: none;
}

.events .event .title .event-title {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 20px;
}

.events .event i {
  color: var(--primary-clr);
  font-size: 0.5rem;
}

.events .event:hover i {
  color: #fff;
}

.events .event .event-time {
  font-size: 0.8rem;
  font-weight: 400;
  color: #878895;
  margin-left: 15px;
  pointer-events: none;
}

.events .event:hover .event-time {
  color: #fff;
}

/* add tick in event after */
.events .event::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 3rem;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  color: var(--primary-clr);
  transform: translateY(-50%);
}

.events .event:hover::after {
  display: flex;
}

/* .add-event {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #878895;
  border: 2px solid #878895;
  opacity: 0.5;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
}
.add-event:hover {
  opacity: 1;
}
.add-event i {
  pointer-events: none;
} */
.events .no-event {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #878895;
}

.add-event-wrapper {
  position: absolute;
  bottom: 100px;
  left: 50%;
  width: 90%;
  max-height: 0;
  overflow: hidden;
  border-radius: 5px;
  background-color: #fff;
  transform: translateX(-50%);
  transition: max-height 0.5s ease;
}

.add-event-wrapper.active {
  max-height: 300px;
}

.add-event-header {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: #373c4f;
  border-bottom: 1px solid #f5f5f5;
}

.add-event-header .close {
  font-size: 1.5rem;
  cursor: pointer;
}

.add-event-header .close:hover {
  color: var(--primary-clr);
}

.add-event-header .title {
  font-size: 1.2rem;
  font-weight: 500;
}

.add-event-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
}

.add-event-body .add-event-input {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.add-event-body .add-event-input input {
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #f5f5f5;
  padding: 0 10px;
  font-size: 1rem;
  font-weight: 400;
  color: #373c4f;
}

.add-event-body .add-event-input input::placeholder {
  color: #a5a5a5;
}

.add-event-body .add-event-input input:focus {
  border-bottom: 1px solid var(--primary-clr);
}

.add-event-body .add-event-input input:focus::placeholder {
  color: var(--primary-clr);
}

.add-event-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.add-event-footer .add-event-btn {
  height: 40px;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  border: none;
  color: #fff;
  background-color: var(--primary-clr);
  border-radius: 5px;
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid var(--primary-clr);
}

.add-event-footer .add-event-btn:hover {
  background-color: transparent;
  color: var(--primary-clr);
}

/* media queries */

@media screen and (max-width: 1000px) {
  body {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .container {
    min-height: 100vh;
    flex-direction: column;
    border-radius: 0;
  }

  .container .left {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }

  .container .right {
    width: 100%;
    height: 100%;
    padding: 20px 0;
  }

  .calendar::before,
  .calendar::after {
    top: 100%;
    left: 50%;
    width: 97%;
    height: 12px;
    border-radius: 0 0 5px 5px;
    transform: translateX(-50%);
  }

  .calendar::before {
    width: 94%;
    top: calc(100% + 12px);
  }

  .events {
    padding-bottom: 340px;
  }

  .add-event-wrapper {
    bottom: 100px;
  }
}

@media screen and (max-width: 500px) {
  .calendar .month {
    height: 75px;
  }

  .calendar .weekdays {
    height: 50px;
  }

  .calendar .days .day {
    height: 40px;
    font-size: 0.8rem;
  }

  .calendar .days .day.active,
  .calendar .days .day.today {
    font-size: 1rem;
  }

  .right .today-date {
    padding: 20px;
  }
}

.credits {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #fff;
  background-color: #b38add;
}

.credits a {
  text-decoration: none;
  font-weight: 600;
}

.credits a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .container {
    align-items: center;
    width: 100%;
    /* Adjust width for medium screens */
    flex-direction: column;
    padding: 10px;
  }

  .left {
    width: 100%;
    /* Full width for mobile */
    padding: 10px;
  }

  .right {
    width: 100%;
    /* Full width for mobile */
    padding: 10px;
  }

  .calendar .month {
    padding: 0 20px;
    /* Adjust padding for smaller screens */
    font-size: 1rem;
    /* Adjust font size */
  }

  .calendar .weekdays {
    padding: 0 10px;
    /* Adjust padding for smaller screens */
  }

  .calendar .days .day {
    width: 14.28%;
    /* Maintain grid layout */
    height: 60px;
    /* Adjust height */
    font-size: 0.9rem;
    /* Adjust font size */
  }

  .calendar .days .day.active {
    font-size: 1.5rem;
    /* Adjust active day font size */
  }

  .goto-today {
    padding: 0 10px;
    /* Adjust padding */
    font-size: 0.9rem;
    /* Adjust font size */
  }

  .right .today-date {
    padding: 0 20px;
    /* Adjust padding */
    font-size: 0.9rem;
    /* Adjust font size */
  }

  .events .event {
    padding: 0 10px !important;
    /* Adjust padding */
    min-height: 60px;
    /* Adjust height */
  }

  .events .event .title .event-title {
    font-size: 0.9rem;
    /* Adjust font size */
  }

  .events .event .event-time {
    font-size: 0.7rem;
    /* Adjust font size */
  }

  .card-container {
    flex-direction: column !important;
  }
}

@media screen and (max-width: 1000px) {
  .event-date,
  .event-title {
    padding: 10px;
  }
}

.chain-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 5rem;
}

.events-calendar-section {
  background-color: #373c4f;
}

.h2-calendar-color {
  color: white;
}

.main-text {
  color: #fff;
}

#social-media {
  min-height: 20vh;
  background: rgba(74, 70, 70, 0.2);
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
}

.show-month-events {
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #007bff;
  /* Blue background */
  color: white;
  /* White text */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.show-month-events:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
}

@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap");

/* #gallery {
  
} */

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  width: 300px;
  height: 400px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  filter: blur(1px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}

.swiper-slide-active {
  filter: blur(0px);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-slide span {
  text-transform: uppercase;
  color: #fff;
  background: #1b7402;
  padding: 7px 18px 7px 25px;
  display: inline-block;
  border-radius: 0 20px 20px 0px;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-family: "Open Sans", sans-serif;
}

.swiper-slide--one span {
  background: #62667f;
}

.swiper-slide--two span {
  background: #087ac4;
}

.swiper-slide--three span {
  background: #b45205;
}

.swiper-slide--four span {
  background: #087ac4;
}

.swiper-slide h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 15px;
  padding: 25px 45px 0 25px;
}

.swiper-slide p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  padding: 0 25px 35px 25px;
}

.swiper-slide svg {
  color: #fff;
  width: 22px;
  height: 22px;
  margin-right: 7px;
}

.swiper-slide--one {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/1 (10).jpeg") no-repeat 50% 50% / cover;
}

.swiper-slide--two {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/1 (13).jpeg") no-repeat 50% 50% / cover;
}

.swiper-slide--three {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/1 (15).jpeg") no-repeat 50% 50% / cover;
}

.swiper-slide--four {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/1 (18).jpeg") no-repeat 50% 50% / cover;
}

.swiper-slide--five {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/1 (1).jpeg") no-repeat 50% 50% / cover;
}

.swiper-slide--six {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/1 (2).jpeg") no-repeat 50% 50% / cover;
}

.swiper-slide--seven {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/1 (4).jpeg") no-repeat 50% 50% / cover;
}
.swiper-slide--eight {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry1.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--nine {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry2.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--ten {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry3.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--eleven {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry4.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--twelve {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry5.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--thirteen {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry6.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--fourteen {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry7.jpg") no-repeat 50% 50% / cover;
}
.swiper-slide--fifteen {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry8.jpg") no-repeat 50% 50% / cover;
}
.swiper-slide--sixteen {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry9.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--seventeen {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry10.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--eighteen {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry11.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--nineteen {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry12.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--twenty {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry13.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--twenty-one {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry14.jpg") no-repeat 50% 50% / cover;
}

.swiper-slide--twenty-two {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry15.jpg") no-repeat 50% 50% / cover;
}
.swiper-slide--twenty-three {
  background: linear-gradient(to top, #0f2027, #203a4300, #2c536400),
    url("./Gallery/glry16.jpg") no-repeat 50% 50% / cover;
}
/* Add similar styles for swiper-slide--eight to swiper-slide--thirty */

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

.unique-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  /* Spacing between boxes */
  margin-top: 120px;
  /* Space above the container */
  padding: 20px;
  /* Padding inside the container */
}

.unique-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 300px;
  /* Fixed height for consistency */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Distribute space evenly */
  padding: 20px;
  /* Padding inside each box */
  position: relative;
  /* Required for dropdown positioning */
}

.file-image {
  max-width: 30%;
  height: auto;
  /* margin-bottom: 10px; */
  /* Space between image and text */
}

.unique-box h2 {
  color: #373c4f;
  font-size: 1.2em;
  margin: 10px 0;
  /* flex-grow: 1; */
  /* Allow title to grow and take available space */
}
.unique-dropdown-btn {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}
.unique-button,
.unique-dropdown-btn {
  background-color: #373c4f;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
  /* Full width for consistency */
}

.unique-dropdown-content {
  display: none;
  /* Hidden by default */
  position: absolute;
  /* Position absolute for dropdown */
  background-color: white;
  min-width: 160px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  margin-top: 5px;
}

.unique-dropdown-content a {
  color: #373c4f;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.unique-dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .unique-container {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
  }
}

@media (max-width: 900px) {
  .unique-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
  }
}

@media (max-width: 600px) {
  .unique-container {
    grid-template-columns: 1fr;
    /* 1 column */
  }

  .unique-box {
    height: auto;
    /* Allow height to adjust based on content */
  }
}

.partners-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 50px;
  background-color: #f1f1f1;
  /* Light background for contrast */
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partners-title {
  text-align: center;
  font-size: 2rem;
  color: #373c4f;
  /* Primary color */
  margin-bottom: 30px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* Flexible columns based on available space */
  gap: 20px;
}

.partner-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partner-logo {
  max-width: 100px;
  margin-bottom: 15px;
}

.partner-name {
  font-size: 1.5rem;
  color: #373c4f;
  margin-bottom: 10px;
}

.partner-description {
  font-size: 1rem;
  color: #666;
}

/* Additional Responsive Design */
@media (max-width: 768px) {
  .partners-title {
    font-size: 1.75rem;
  }

  .partner-item {
    padding: 15px;
  }
}

@media (max-width: 500px) {
  .partners-title {
    font-size: 1.5rem;
  }

  .partner-item {
    padding: 10px;
  }
}

/* Full Width Contact Section */
.contact-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #373c4f;
  /* Main color */
  color: #ffffff;
  text-align: center;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-title {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.contact-description {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Contact Content */
.contact-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background-color: rgba(255, 255, 255, 0.1);
  /* Slightly transparent white */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 1rem;
  color: #ffffff;
  /* Set text color to white */
}

/* Social Media & Google Form */
.contact-interaction {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.social-links {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.social-links h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
  /* Set text color to white */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  display: inline-block;
}

.social-icons img {
  width: 60px;
  /* Increased size */
  height: 60px;
  /* Increased size */
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Google Form */
.google-form {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.google-form h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ffffff;
  /* Set text color to white */
}

/* Align Email and Office Hours */
.email-container,
.office-hours {
  display: flex;
  flex-direction: column;
  height: 100px;
  /* Set height to match */
}

.office-hours {
  height: 100px;
  /* Reduced height */
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .social-icons img {
    width: 50px;
    /* Adjusted size for smaller screens */
    height: 50px;
    /* Adjusted size for smaller screens */
  }
}

.space-styling {
  height: 130px;
}

/* Footer */
.footer {
  background-color: #373c4f;
  /* Dark background */
  color: white;
  /* White text for contrast */
  padding: 30px 20px;
  /* Padding around the footer */
  text-align: center;
  /* Centered text */
}

.footer-content {
  display: flex;
  flex-direction: column;
  /* Stack items vertically */
  align-items: center;
  /* Center align items */
}

.footer-connect {
  margin-bottom: 20px;
  /* Spacing below the connect section */
}

.footer-connect h3 {
  margin-bottom: 10px;
  /* Space below heading */
  font-size: 1.5rem;
  /* Larger font size for headings */
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  /* Center the icons */
  gap: 15px;
  /* Space between icons */
  margin-bottom: 10px;
  /* Space below icons */
}

.footer-social-icons img {
  width: 30px;
  /* Icon size */
  height: 30px;
  /* Icon size */
  transition: transform 0.3s;
  /* Smooth transition for hover effects */
}

.footer-social-icons img:hover {
  transform: scale(1.1);
  /* Scale effect on hover */
}

.logo-placeholder {
  margin-top: 10px;
  /* Space above logo */
}

.logo-placeholder img {
  max-width: 150px;
  /* Set max width for the logo */
  height: auto;
  /* Maintain aspect ratio */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  /* Light top border */
  padding-top: 15px;
  /* Space above copyright */
}

.footer-bottom p {
  font-size: 0.9rem;
  /* Smaller font for copyright */
  margin: 0;
  /* No margin */
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  /* Distance from the bottom */
  right: 30px;
  /* Distance from the right */
  background-color: #fff;
  /* Yellow color */
  color: #373c4f;
  /* Dark text */
  border: none;
  border-radius: 50%;
  /* Circular button */
  width: 50px;
  /* Button size */
  height: 50px;
  /* Button size */
  text-align: center;
  /* Center text */
  font-size: 1.5rem;
  /* Font size */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* Shadow effect */
  cursor: pointer;
  /* Pointer cursor on hover */
  transition: background-color 0.3s;
  /* Smooth background color transition */
}

.scroll-to-top:hover {
  background-color: #373c4f;
  /* Darker background on hover */
  color: #f44336;
  /* Yellow text on hover */
}

/* Responsive Design */
@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    /* Arrange items horizontally on larger screens */
    justify-content: center;
    /* Center the footer content */
    width: 80%;
    /* Adjust width as necessary */
    margin: 0 auto;
    /* Center the footer content */
  }
}

body {
  overflow-y: auto !important;
  /* Allow vertical scrolling */
  margin: 0;
  /* Remove default margin */
  padding: 0;
  /* Remove default padding */
}

@media (max-width: 1033px) {
  .testimonials-div {
    flex-direction: column;
  }
  .faq-header {
    text-align: center;
    font-size: 2.2rem !important; /* Smaller font size */
    margin-bottom: 25px;
    font-weight: 500 !important;
  }
}

.special-sizing {
  height: 50px;
}
#max-gallery-height {
  /* max-height: 100vh; */
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: linear-gradient(135deg, #2c3e50 0%, #4a697a 100%); */
  /* background-color: #f5f5f5; */
  /* overflow: hidden; */
}

#testimonials {
  min-height: 30vh;
}

.testimonials-div {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
  margin-top: 5rem;
}

.event-title,
.event-time {
  color: white !important;
}

.highlighted {
  background-color: #f0f0f0;
  /* Light background for highlighted events */
  border-left: 4px solid #007bff;
  /* Blue border to mark highlighted events */
  padding: 10px;
  margin-bottom: 10px;
}

.no-events {
  text-align: center;
  font-style: italic;
  color: #888;
}

/* NEWFAQ */
#faq {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #373c4f, #2c2f3a);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  flex-direction: column;
}

.faq-container {
  max-width: 700px;
  width: 90%;
  border-radius: 12px; /* Slightly more rounded edges */
  background: rgba(55, 60, 79, 0.9);
  padding: 25px;
  backdrop-filter: blur(10px);
  animation: fadeIn 1s ease-in-out;
}

.faq-header {
  text-align: center;
  font-size: 3rem; /* Smaller font size */
  margin-bottom: 25px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.faq-item {
  border-bottom: 1px solid #555;
  margin-bottom: 10px; /* Increased margin for more spacing */
}

.faq-question {
  background: #2c2f3a;
  padding: 15px; /* Smaller padding */
  cursor: pointer;
  font-size: 1.3rem; /* Slightly smaller font size */
  position: relative;
  transition: background 0.2s, transform 0.2s;
  border-radius: 8px; /* More rounded corners */
  border: 1px solid #444;
}

.faq-question:hover {
  background: #373c4f;
  transform: scale(1.02);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 1.6rem; /* Smaller icon */
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #373c4f;
  border-radius: 0 0 8px 8px; /* Slightly rounded bottom corners */
  font-size: 1.1rem; /* Smaller font size */
  opacity: 0;
  color: white;
  transform: translateY(-10px);
  transition: max-height 0.7s ease, opacity 0.7s ease, transform 0.7s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 15px 20px;
  transform: translateY(0);
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-left-title {
  margin-bottom: 10rem;
}
