*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden; /* Disable horizontal scrolling */
}

img {
  max-width: 100%;
  height: auto;
}



.headings{
    text-align: center;
    color:#5B3B99 ;
    font-size: 2.0em;
    margin-bottom: 30px;
}



.heading{
  text-align: center;
  color:#5B3B99 ;
 font-weight: 700;
  margin-bottom: 30px;
}

p{
    text-align: justify;
}
.carousel-section{
    padding: 25px;
    margin: 25px;
}

.announcement-section{
    margin: 0;
    display: flex;
    background-color:  #e6ebf5;
    text-align: center;
    padding: 60px;
}
button{
    background-color: black;
    align-items: center;
    width: 120px;
    height: 40px;
    color: white;
    border-radius: 0;
    text-shadow: none;
    font-weight: 700;
    cursor: pointer;
    justify-content: center;
    font-style: 'Open Sans', arial, sans-serif;
}
 body {
    font-family: Arial, sans-serif;
    background-color: white;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
  }
  .image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    padding: 20px;
  }
  
  .image-container {
    position: relative;
    flex: 1 1 calc(33.333% - 40px);
    background-color: #c8d9fa;
    padding: 10px;
  }
  
  .image-container img {
    width: 100%;
    transition: transform 0.3s;
  }
  
  .image-container:hover img {
    transform: scale(1.1);
  }
  
  .hover-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    font-size: 16px;
  }
  
  .image-container:hover .hover-text {
    opacity: 1;
  }
  

  .club-link{
    text-decoration: none; 
    display: inline-block;
     text-align: center;
      width: 100%;
  }



.trusted-partners {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.trusted-partners h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
   
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px; /* Adjusted max width for 4 partners */
    margin: 0 auto;
}

.partner {
    overflow: hidden; /* Ensures that the hover effect does not affect surrounding elements */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.partner:hover {
    transform: scale(1.1); /* Enlarge the image on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

.partner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}



/* styles.css */

/* Testimonials Container */
/* Testimonials Container */


.testimonial-carousel {
  max-width: 80%; 
  padding: 40px 0;
  margin: 0 auto; 
  text-align: center;
  position: relative;
}

.carousel {
  display: flex;
  overflow: hidden; /* Only one item visible at a time */
  width: 100%;
  justify-content: flex-start;
  transition: transform 0.5s ease-in-out; /* Smooth transition */
}

.carousel-item {
  min-width: 300px; 
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: inline-block;
}

.carousel-item p {
  font-size: 1em;
  color: #555;
}

.carousel-item h3 {
  font-size: 1.2em;
  margin-top: 10px;
  color: #333;
}

.role {
  font-size: 0.8em;
  color: #777;
}

/* Carousel Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.carousel-controls button {
  background-color: transparent;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}

.carousel-controls button:hover {
  color: #5B3B99 ;
}
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

.container, .row {
  max-width: 100%;
}

.carousel-inner img {
  max-width: 100%;
  height: auto;
}

.announcement-section img {
  max-width: 100%;
  height: auto;
}

.card img {
  max-width: 100%;
  height: auto;
}

.table-wrapper {
  max-width: 100%;
  max-height: 400px; /* Adjust height as needed */
  overflow-x: auto;  /* Horizontal scrollbar */
  overflow-y: auto;  /* Vertical scrollbar */
  margin: 20px auto;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: #fff;
}

/* Optional: Style table for responsiveness */
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px; /* Minimum width to trigger horizontal scroll on small screens */
}

th, td {
  padding: 12px 15px;
  border: 1px solid #ccc;
  text-align: left;
}

th {
  background-color: #5B3B99;
  color: white;
  font-weight: 700;
}

tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
