@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Balthazar&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* General Reset */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */
body, html {
    overflow: visible;
}


parent-container {
    overflow: visible;
}
/* General Navbar Styles */

@keyframes fadeInUpBig {
    0% {
      transform: translateY(2000px);
      opacity: 0;
    }
    60% {
      transform: translateY(-20px);
      opacity: 1;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .fadeInUpBig {
    animation: fadeInUpBig 2s ease-in-out;
  }
  

/* Apply animation to each feature item */
.feature-item {
    opacity: 0; /* Make the items invisible initially */
    animation: leftToRight 10s ease-out forwards; /* Apply the animation */
    transform: translateX(-100%); /* Initially place items off the left side */
}

/* Add a slight delay to each item for staggered animation */
.feature-item:nth-child(1) {
    animation-delay: 5s; /* Delay for the first item */
}

.feature-item:nth-child(2) {
    animation-delay: 8s; /* Delay for the second item */
}

.feature-item:nth-child(3) {
    animation-delay: 2s; /* Delay for the third item */
}

.feature-item:nth-child(4) {
    animation-delay: 6s; /* Delay for the fourth item */
}

/* Optional: Add transition to make the images and text appear smoother */
.feature-item .feature-icon img {
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon img {
    transform: scale(1.1); /* Optional zoom effect on hover */
}
.feature-item {
    opacity: 0;
    transform: translateX(-50px); /* Start off-screen to the left */
    transition: all 0.5s ease-out;
}

.feature-item.animate__fadeInLeft {
    opacity: 1;
    transform: translateX(0); /* Move to original position */
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: white !important;
    color: #333333 !important;
    /* Text Color for readability */
}




body {
    margin: 0;
    padding: 0;
}



dl, ol, ul {
    /* margin-top: 0; */
    margin-bottom: 0 !important;
}

ol, ul {
    padding-left: 0 !important;
}


.display img {
    /* border-top-right-radius: 150px; */
    /* height: 100vh; */
    height: 100vh !important;
    z-index: 1;
}

.display {
    width: 100vw;
    /* height: 50vh; */
}



/* Tagline Styling */
/* Styling the tagline outside the filter */
.tagline {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
}

.tagline .welcome {
    font-family: "Open Sans";
    font-size: 7.5rem; /* Default font size for larger screens */
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 768px) { /* Tablet and smaller screens */
    .tagline .welcome {
        font-size: 1.8rem; /* Reduce font size for smaller screens */
        line-height: 1.2; /* Adjust line height for better readability */
    }

    .tagline {
        top: 40%; /* Adjust vertical position */
        padding: 10px; /* Add padding for better spacing */
    }
}

@media (max-width: 576px) { /* Mobile screens */
    .tagline .welcome {
        font-size: 1.5rem; /* Further reduce font size */
    }

    .tagline {
        top: 30%; /* Further adjust vertical position */
    }
}



.welcome {
    display: flex; /* Enables flexbox */
    flex-direction: column; /* Stacks the divs vertically */
    align-items: center; /* Centers text horizontally */
    justify-content: center; /* Centers text vertically */
    gap: 10px; /* Adds space between each div */
    font-size: 2.5rem; /* Adjust font size */
    font-weight: bold; /* Makes text bold */
    color: white; /* Text color */
    text-transform: uppercase; /* Makes text uppercase */
}

/* Adjust spacing for mobile screens */
@media (max-width: 576px) {
    .welcome {
        gap: 40px; /* Reduce space for smaller screens */
        font-size: 1.8rem; /* Smaller font size for mobile */
    }
    

}


/* Adjust text colors for the welcome and tag */
.welcome,
.tag {
    margin: -114px 0;
    font-size: 7rem;
    /* Adjust for visibility */
}



.welcome>div {
    /* font-size: 130px; */
    margin-bottom: -25px;
}

.welcome>div:nth-child(2) {
    margin-bottom: -25px;
    /* font-size: 130px; */
}

.welcome>div:last-child {
    /* font-size: 0px; */
    margin-bottom: -25px;
}


/* Parent container for carousel and tagline */
.display {
    position: relative;
    /* Enable absolute positioning for children */
    width: 100%;
    height: 50vh;
    /* Adjust height to fit the content */
    /* filter: contrast(0.6); */
}

.carousel {
    position: relative;
}




.carousel-item img {
    position: relative;
    z-index: 0;
    /* Keeps the image below the filter */
}

.welcome {
    color: white;
    /* Adjust text color */
    font-family: 'Open Sans';
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.tag {
    color: #ffffff !important;
    /* White text for the tagline */
    font-size: 2rem;
    /* Slightly smaller font size */
    text-align: left;
    background-color: #0078d7;
    /* Bright blue background */
    padding: 1rem;
    /* Adds padding for better spacing */
    border-radius: 10px;
    /* Rounds the edges */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    /* Adds shadow for a modern look */
    margin-right: 50rem;
}

.tag span {
    color: #ffcc00 !important;
    /* Bright yellow for "Excellence" */
    font-weight: bold;
    /* Emphasize the word */
}

/* Animation keyframes */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

html {
    scroll-behavior: smooth;
}
/* Footer Styles */
.footer {
    background-color: #116e63; /* Main background color */
    color: white;
    /* padding: 2rem 1rem; */
    font-family: Arial, sans-serif;
}

.footer h4 {
    color: #fda31b; /* Highlight color for section titles */
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer a {
    color: #fda31b; /* Highlight color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffcb7d; /* Lighter highlight for hover */
}

/* Footer Container Layout */
.footer-container {
    display: flex;
    flex-wrap: wrap; /* Ensures responsiveness */
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact,
.footer-social,
.footer-links {
    flex: 1; /* Equal spacing for each section */
    min-width: 250px; /* Minimum width for smaller screens */
}

.footer-contact p,
.footer-social a,
.footer-links ul li {
    margin-bottom: 0.5rem;
}

/* Footer Links List */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li a {
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffcb7d; /* Slightly lighter highlight for hover */
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0d554c; /* Slightly darker shade for footer bottom */
    text-align: center;
    padding: 1rem;
    color: white;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Contributors Section */
.contributors {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background-color: #fda31b; /* Highlight color for contributors section */
    color: #116e63;
    border-radius: 10px;
}

.contributors h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contributors-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.contributor {
    text-align: center;
    max-width: 150px;
}

.contributor img {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Circular images */
    object-fit: cover;
    margin-bottom: 0.5rem;
    border: 3px solid #116e63; /* Border matching the main color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contributor p {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #116e63;
}

.contributor a {
    font-size: 0.9rem;
    color: #116e63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contributor a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .contributors-list {
        flex-direction: column;
        align-items: center;
    }
}

.animated-tag {
    color: #ffffff !important;
    font-size: 2rem;
    width: 500px;
    font-family: cursive;
    text-align: left;
    background-color: #116e63;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-in-out 0.5s forwards;
}

/* Highlight animation for "Excellence" 
.animated-tag span {
    color: #ffcc00 !important;
    font-weight: bold;
    animation: fadeIn 2.5s ease-in-out forwards;
} */


.feature {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to new lines */
    justify-content: center; /* Centers the feature items */
    gap: 20px; /* Space between items */
    padding: 20px;
}

.feature-item {
    flex: 1 1 calc(25% - 20px); /* Take 25% width minus gap on larger screens */
    max-width: calc(25% - 20px);
    min-width: 200px; /* Ensures items don't shrink too small */
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.feature-icon img {
    width: 50px; /* Icon size */
    height: auto;
    margin-bottom: 10px;
}

.feature-content {
    margin-top: 10px;
}

.feature-title {
    font-size: 1.2rem;
    color: #116e63;
    margin-bottom: 8px;
    font-weight: bold;
}

.feature p {
    color: #6c757d;
    font-size: 0.95rem;
}

/* Responsive Styles */
@media (max-width: 992px) { /* For tablets and smaller screens */
    .feature-item {
        flex: 1 1 calc(50% - 20px); /* 2 items per row */
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) { /* For mobile screens */
    .feature-item {
        flex: 1 1 100%; /* Full width for single-column layout */
        max-width: 100%;
    }
}


.about {
    /* height: 100vh; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-top: 20rem; */
    /* margin-top: 0.5rem; */
}

.about_left {


    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    /* Space between the divs */
    justify-content: space-around;
    /* Adjust alignment */
    align-items: center;
    /* Vertically align */
    margin: 2rem;
    /* Space around the container */


}

.about_left div {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    /* Light background for placeholders */
    border: 1px solid #ccc;
    /* Optional border for visual clarity */
    aspect-ratio: 1 / 1;
    /* Ensures squares stay proportional */
    overflow: hidden;
    /* Crop images that overflow the div */
    gap: 4px;

}

.about_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images cover the square without distortion */
}

.about_right {
    background-color: #f9f9f9;
    /* Light background for contrast */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
    max-width: 800px;
    margin: 2rem auto;
    /* Center the section */
    font-family: 'Arial', sans-serif;
    /* Clean, modern font */
    line-height: 1.6;
}

.about_right h2 {
    margin-bottom: 16px;
    margin-top: -18px;
    font-family: 'Open Sans';
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.about_right h2 span{
    color: #fda31b;
}

.about_right h3 {
    font-family: 'Open Sans';
    color: #444;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.about_right p {
    font-size: 1rem;
    color: #555;
    /* Slightly lighter color for body text */
    margin-bottom: 1.5rem;
}

.about_right p br {
    line-height: 1.8;
    /* Adjust line spacing for better readability */
}

.about-experience {
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #fda31b !important;
    padding: 15px 20px 15px 15px;
    color: var(--color-white);
    border-radius: 50px 50px 50px 0;
    box-shadow: 0 0 40px 5px rgb(0 0 0/10%);
}

.about_left .about-experience{
    aspect-ratio: 0;
}

.about-experience-icon {
    color: var(--theme-color);
    font-size: 65px;
    width: 90px;
    height: 90px;
    line-height: 70px;
    text-align: center;
    margin: auto;
    background-color: cornsilk !important;
    border-radius: 50%;
}

/* Responsive Styling */
@media (max-width: 992px) { /* Tablet */
    .about {
        flex-direction: column; /* Stack content */
    }

    .about_left {
        flex-direction: column;
        max-width: 100%; /* Full width */
        justify-content: space-evenly; /* Center items */
        gap: 5px;
    }

    .about_right {
        max-width: 100%; /* Full width */
        text-align: center; /* Center align text */
    }

    .about_right h2 {
        font-size: 1.8rem;
    }

    .about_right h3 {
        font-size: 1.3rem;
    }

    .about_right p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) { /* Mobile */
    .about_left div {
        max-width: 100%; /* Smaller divs */
        flex: 1 1 40%; /* Adjust flex basis */
    }

    .about_left img {
        border-radius: 5px; /* Slightly less rounded */
    }

    .about_right h2 {
        font-size: 1.5rem;
    }

    .about_right h3 {
        font-size: 1.2rem;
    }

    .about_right p {
        font-size: 0.9rem;
    }

    .about-experience-icon {
        font-size: 30px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}


.text-start {
    text-align: left !important;
}

.ph2 {
    border-radius: 50%;
    height: 15rem;
    margin-left: 0rem;
    width: 15rem;
    background-color: lightblue;
    /* Just for visualization */
    /* border: 6px dotted #fda31b !important;  */
}


.ph1 {
    border-radius: 80px 80px 0 80px;
    height: 17rem;
    margin-right: 0rem !important;
    width: 20rem;
    background-color: lightgreen;
    /* Just for visualization */
}

.ph4 {
    border-radius: 0 80px 80px 80px;
    width: 17rem;
    background-color: lightcoral;
    /* Just for visualization */
    margin-top: 1.5rem;
}

/* Footer Styling */
.footer {
    /* background-color: #282c34; */
    color: #ffffff;
    /* padding: 2rem 1rem; */
    font-family: Arial, sans-serif;

    width: 100%;
    /* margin-top: 10rem; */
  
}

.footer-container {
    padding-top: 53px;
    margin-bottom: 17px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Contact Us Section */
.footer-contact h4,
.footer-social h4,
.footer-links h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin: 0.5rem 0;
}

.footer-contact a {
    color: #fda31b;
    text-decoration: none;
}

/* Social Media Section */
.footer-social {
    text-align: left;
}

.footer-social .social-icon {
    display: block;
    margin: 0.5rem 0;
    color: #fda31b;
    text-decoration: none;
}

/* Quick Links Section */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #fda31b;
    text-decoration: none;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #444;
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-contact,
    .footer-social,
    .footer-links {
        text-align: center;
    }
}

/* Overall Section Styling */
.gallery-section {
    margin-top: 16px;
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.gallery-text h2 {
    margin-bottom: 16px;
    margin-top: -18px;
    font-family: 'Open Sans';
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.blog-header h2 {
    /* margin-bottom: 16px; */
    margin-top: -18px;
    font-family: 'Open Sans';
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #333;
}

.blog-content h3{
    margin-top: -18px;
    font-family: 'Open Sans';
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #333;
}

.green {
    color: #fda31b;
}

.gallery-text p {
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 1.2rem;
    color: #949494;
    margin-bottom: 6px;
}

.blog-header p{
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 1.2rem;
    color: #949494;
    margin-top: -12px;
    margin-bottom: 6px;
}

.blog-content p{
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 1.2rem;
    color: #949494;
    margin-bottom: 6px;
}

.gal {
    display: flex;
}

.gal-margin{
    margin-top: 13px;
    margin-bottom: 13px;
}


/* Carousel Container */
.carousel2 {
    position: relative;
    overflow: hidden;
    width: 33%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Carousel Track */
.carousel .carousel-item {
    transition: transform 1s ease-in-out; /* Smoother animation */
}

.custom-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    position: relative; /* Required for overlay positioning */
    min-width: 100%;
    transition: opacity 0.5s ease;
}

.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: cover; /* Ensures images maintain proportions */
}

/* Add a dark overlay on top of each image */
.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 99%;
    background-color: rgba(0, 0, 0, 0.4); /* Black overlay with 40% opacity */
    z-index: 1; /* Overlay above the image */
}

/* Ensure content above the overlay */
.carousel-item img {
    z-index: 0;
    position: relative;
}

.carousel-control {
    position: absolute;
    top: 50%;
    color: #ffffff5e;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0);
    border: none;
    cursor: pointer;
    font-size: 2rem;
    padding: 0.5rem;
    z-index: 3; /* Ensure controls appear above overlay */
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.tagline {
    position: absolute;
    bottom: 20px;
    left: 50%;
    /* transform: translateX(-50%); */
    text-align: center;
    color: white;
    z-index: 2; /* Ensure tagline appears above overlay */
}


.carousel-control-prev,
.carousel-control-next {
    transition: opacity 0.3s ease; /* Smooth control button transition */
}

/* Optional: For smoother transitions between carousel items */
.carousel-track {
    display: flex;
    transition: transform 1s ease-in-out; /* Smoother sliding of items */
    width: 100%;
}

.sports-track img{
    height: 277px !important;
}

/* Images in the Carousel */
.carousel-track img {
    width: 100%;
    height: 450px;
    /* Set a consistent height */
    object-fit: cover;
    /* Ensures the image covers the space without distortion */
    flex: 0 0 100%;
    /* Each image takes full width */
    border-radius: 5px;
    /* Optional: add rounded corners */
}


/* Blog Section Styling */
/* Blog Section Styling */
.blog-section {
    display: flex;
    flex-direction: column; /* Stack content vertically on smaller screens */
    font-family: 'Open Sans';
    background-color: #f9f9f9;
    padding: 50px 40px;
    /* line-height: 1.6; */
    margin-top: 16px;
}

.blog-container {
    text-align: center;
    /* max-width: 900px; */
    /* margin: 0 auto; */
    background: #f9f9f9;
    /* padding: 1rem; */
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

/* Blog Header
.blog-header h2 {
    font-family: 'Open Sans';
    font-weight: 800;
    color: #333;
    font-size: 2rem;
    margin-bottom: 1rem;
} */

.blog-header h2 span {
    color: #fda31b;
}

/* .blog-header p {
    font-family: 'Open Sans';
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
} */

/* Blog Content */
.blog-content h3 {
    font-family: 'Open Sans';
    color: #444;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.blog-footer p{
    text-align: center;
}

/* .blog-content p {
    font-family: 'Open Sans';
    margin-bottom: 1rem;
    color: #555;
} */

.blog-content blockquote {
    font-family: 'Open Sans';
    font-style: italic;
    color: #777;
    border-left: 4px solid #fda31b;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background: #fef6e9;
}

/* Blog Footer */
.blog-footer {
    font-family: 'Open Sans';
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
    text-align: right;
}

.blog-footer strong {
    color: #333;
}

/* Blog Highlights Section */
.blog-highlights {
    font-family: 'Open Sans';
    text-align: center;
    border-radius: 10px;
}

.blog-title {
    font-family: 'Open Sans';
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.blog-images {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Blog Image Styling */
.blog-image {
    text-align: center;
    transition: transform 0.3s ease;
}

.blog-image2 img {
    border-radius: 80px 80px 80px 0px !important;
}

.blog-image img {
    width: 195px;
    height: 160px;
    border-radius: 80px 80px 0px 80px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-image img:hover {
    transform: scale(1.2); /* Slight zoom-in effect on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-image p {
    margin-top: 10px;
    font-size: 1rem;
    color: #555555;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.blog-image:hover p {
    color: #007bff;
}

/* Responsive Styles */

/* For Tablets and Smaller Screens */
@media (max-width: 992px) {
    .blog-header h2 {
        font-size: 1.5rem; /* Smaller font for tablets */
    }

    .blog-content h3 {
        font-size: 1.3rem; /* Smaller subheading font */
    }

    .blog-images {
        gap: 1rem; /* Reduce gap between images */
    }

    .blog-image {
        flex: 1 1 calc(33.33% - 1rem); /* 3 items per row on tablets */
        max-width: calc(33.33% - 1rem);
    }
}

/* For Mobile Screens */
@media (max-width: 576px) {
    .blog-header h2 {
        font-size: 1.2rem; /* Smaller heading for mobile */
    }

    .blog-content h3 {
        font-size: 1.1rem; /* Smaller subheading font */
    }

    .blog-images {
        flex-direction: column; /* Stack images vertically */
        gap: 1rem; /* Smaller gap for mobile */
    }

    .blog-image {
        flex: 1 1 100%; /* Full width for images on mobile */
        max-width: 100%;
    }

    .blog-footer {
        font-size: 0.8rem; /* Smaller footer text */
    }
}


.contributors {
    text-align: center;
    background-color: #282c34;
    padding: 2rem 1rem;

}

.contributors h3 {
    font-size: 1.5rem;
    color: whitesmoke;
    margin-bottom: 1rem;
}

.contributors-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contributors {
    text-align: center;
    background-color: #282c34;
    padding: 2rem 1rem;

}

.contributors h3 {
    font-size: 1.5rem;
    color: whitesmoke;
    margin-bottom: 1rem;
}

.contributors-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contributor {
    text-align: center;
    max-width: 150px;
}

.contributor img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contributor p {
    font-size: 1rem;
    font-weight: bold;
    color: #09ff00;
    margin-bottom: 5px;
}

.contributor a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #007bff;
    transition: color 0.3s ease;
}

.contributor a:hover {
    color: #0056b3;
}

@media (max-width: 768px) {
    .contributors-list {
        flex-direction: column;
        align-items: center;
    }

    .contributor {
        margin-bottom: 20px;
    }
}


.apply {
    font-family: 'Open Sans';
    display: flex;
    font-weight: bold;
    align-items: center !important;
    text-align: center !important;
    justify-content: center !important;
    width: 145px;
    border-radius: 0px 50px 50px 50px !important;
}

.apply {
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #fda31b !important;
    /* padding: 15px 20px 15px 15px; */
    color: white;
    border-radius: 50px 50px 50px 0;
    box-shadow: 0 0 40px 5px rgb(0 0 0/10%);
}

.faq-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    /* margin: 20px; */
}

.faq-column {
    width: 100%; /* Take full width for each section */
    margin: 0 auto; /* Center the columns */
    box-sizing: border-box;
}

/* FAQ Left Section */
.faq-left-section {
    text-align: center; /* Center-align content for better aesthetics */
    margin-bottom: 20px; /* Add spacing between sections */
}

.faq-title{
    font-size: 50px !important;
}

.faq-left-section .faq-title span {
    color: #fda31b;
}

/* .custom-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-btn:hover {
    background-color: #0056b3;
} */

/* FAQ Right Section */
.faq-right-section {
    margin: 0 auto; /* Center-align FAQ content */
    padding: 20px;/* Take full width */
    /* max-width: 800px; Optional: Restrict maximum width */
}

.faq-item {
    margin-bottom: 10px;
    border: 1px;
    border-radius: 5px;
}

.faq-question {
    border: 1px solid black;
    margin-bottom: 19px;
    padding: 15px;
    /* background-color: #007BFF; */
    color: black;
    font-size: 19px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px 50px 50px 0px;
    transition: background-color 0.3s ease;
}

/* Optional hover effect */
.faq-question:hover {
    background-color: #fda31b;
}


.faq-answer {
    border: 1px solid black;
    display: none;
    padding: 15px;
    background-color: #116e6330;
    font-size: 19px;
    /* line-height: 1.5; */
    text-align: left; /* Align answers to the left */
}

.faq-answer.open {
    color: black;
    border-radius: 0px 50px 50px 50px;
    display: block;
    margin-bottom: 15px;
}

/* Arrow styling */
.faq-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-arrow.rotate {
    transform: rotate(180deg);
}

/* .mb-3{
    width: 710px !important; 
} */

.eligi{
    width: 100%;
    /* margin-top: 95px; */
    /* margin-left: 220px; */
    margin-bottom: 20px;
}

.etxt {
    font-size: 16px;
}

.eli-title{
    font-weight: 800;
    text-transform: capitalize;
    font-size: 55px;
    color: #19232b;
    margin-top: 0;
    position: relative;
}

.etxt{
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #fda31b;
    position: relative;
    border-bottom: 2px solid #fda31b;
}

.content-txt{
    color: gray;
}

.content-txt {
    white-space: normal; /* Ensures text wraps naturally */
    line-height: 1.6;    /* Adjusts spacing between lines for better readability */
    font-size: 18px;     /* Default font size for larger screens */
    margin: 10px 0;
    /* width: 50%; */
}

/* General FAQ container styling for responsiveness */
@media (max-width: 576px) {
    .faq-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        margin: 10px; /* Adjust margins for smaller screens */
    }

    .faq-column {
        width: 100%; /* Make columns full width */
        margin-left: 0; /* Remove left margin for centered alignment */
        /* margin-top: 20px; Add spacing between sections */
    }

    .faq-left-section .faq-title {
        font-size: 1.8rem; /* Adjust title size for smaller screens */
        text-align: center; /* Center-align title */
    }

    .faq-title {
        font-size: 28px !important; /* Reduce font size for smaller screens */
    }

    .faq-left-section .faq-title span {
        font-size: 1.5rem; /* Adjust subtitle size */
    }

    .mb-3 {
        width: 90% !important; /* Adjust paragraph width for readability */
        text-align: justify; /* Align text for better aesthetics */
    }

    .etxt {
        font-size: 14px; /* Reduce tagline font size */
        letter-spacing: 2px; /* Adjust spacing for readability */
        text-align: center;
    }

    .content-txt {
        font-size: 16px; /* Reduce text size for smaller screens */
        line-height: 1.5; /* Adjust line spacing */
        width: 90%; /* Adjust width for better fit */
    }

    .faq-right-section {
        margin-left: 0; /* Center-align content */
        padding: 15px; /* Reduce padding for smaller screens */
    }

    /* .faq-item {
        margin-bottom: 15px;
        padding: 10px; /* Add padding for better spacing /
    } */

    .faq-question {
        font-weight: 400;
        font-size: 14px; /* Reduce font size */
        padding: 10px; /* Adjust padding for smaller screens */
    }

    .faq-answer {
        font-size: 0.9rem; /* Reduce font size */
        padding: 10px; /* Adjust padding */
    }

    .eli-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .eligi {
        margin-top: 30px;
        margin-bottom: 20px;
        /* margin-left: 45px; */
    }
    
    .sports-track img{
        object-fit: cover;
        height: 160px !important;
    }
    
    .gallery-section img{
        height: 200px;
    }

    .carousel-track img{
        height: 200px;
    }

    .ct img{
        max-height: 200px;
    }

    .gal-height {
        max-height: 200px;
    }

    .gallery-text h2{
        font-size: 1.5rem;
    }

    .gallery-text p{
        font-size: 1rem;
    }

    .faq-question{
        text-align: start;
    }

    .welcome,
.tag {
    margin: 196px 0;
    font-size: 7rem;
    /* Adjust for visibility */
}
}

.faq-title {
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break words if necessary */
  }
