/*------------------------------------------------------------
# Global classes
------------------------------------------------------------*/
.flex {
    display: flex;
}

body {
    padding-top: 4rem; /* Same height as the navbar */
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: hsl(0, 0%, 0%);
}

@font-face {
    font-family: "mountains";
    src: url(fonts/beyond_the_mountains.ttf);
    src: url(fonts/beyond_the_mountains.otf);
    font-weight: 400;
}

.d-col-n {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

/* Custom styles for section titles */
.section-title {
    color: #ffffff; /* Change to your desired color */
    font-family: "Roboto", sans-serif; /* Change to your desired font */
    font-size: 70px;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase; /* Makes the text uppercase */
    letter-spacing: 2px; /* Adds space between letters */
    margin-top: 30px;
    margin-bottom: 30px; /* Space below the title */
    padding: 20px; /* Add padding */
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 60px;
        margin-top: 25px;
        margin-bottom: 25px;
        padding: 18px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 50px;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 40px;
        margin-top: 15px;
        margin-bottom: 15px;
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 30px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 12px;
    }
}

.heading-container {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0;
}

/*------------------------------------------------------------
# site-header
------------------------------------------------------------*/
body {
    background: url(images/pageback.png) no-repeat center top;
    background-size: 100% auto; /* Changed from 'cover' to show full width */
    min-height: 100vh; /* Ensure minimum height covers viewport */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.site-header {
    position: relative;
    width: 100%;
}

.site-header .header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    z-index: 99;
    background: transparent; /* Initially transparent */
    transition: background-color 0.3s ease; /* Smooth transition */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* New class for scrolled state */
.site-header .header-bar.scrolled {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black when scrolled */
    backdrop-filter: blur(10px);
}

.site-header .site-branding {
    display: flex;
    align-items: center;
}

.site-header .site-branding img {
    height: 4rem;
    margin-left: 30px;
    margin-right: 5px;
    object-fit: cover;
}
.site-header .site-branding .majisticheadlogo{
    margin: 0;
}
.site-header .site-branding .majisticheadlogo img{
    height: 3rem;
    margin-right: 25px;
    margin-left: 0;
    object-fit: cover;
}

/* Improved hamburger menu styling */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px; /* Increased width */
    height: 30px; /* Increased height */
    cursor: pointer;
    z-index: 1001;
    position: relative;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.hamburger-menu span {
    width: 100%;
    height: 3px; /* Thicker lines */
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Refined hamburger animation */
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 6px);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
}

.hamburger-menu:hover span {
    background: rgb(217,215,102);
}

.site-navigation {
    display: flex;
    align-items: center;
}

.site-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-navigation ul li {
    margin: 0 15px;
}

.site-navigation ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
    position: relative;
}

.site-navigation ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: rgb(217,215,102);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-navigation ul li a:hover::after {
    width: 100%;
}

.site-navigation ul li a:hover {
    color: rgb(217,215,102);
}

/*------------------------------------------------------------
# Hero Section
------------------------------------------------------------*/
.hero-content {
    padding: 8vh 0 5vh; /* Reduced from 10vh 0 to 8vh 0 5vh */
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    min-height: auto; /* Changed from 110vh to auto to prevent fixed height issues */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible; /* Changed from hidden to visible to prevent content clipping */
    z-index: 1;
    top: 3vh;
    margin-bottom: 2vh; /* Reduced from 5vh to 2vh */
}

.hero-content .container {
    position: relative; /* Changed from absolute to relative */
    width: 90%;
    max-width: 90vw;
    transform: none; /* Remove transform that was causing positioning issues */
    margin: 0 auto; /* Center the container */
    padding: 3vh 0; /* Add padding for spacing */
}

.hero-content .entry-header {
    position: relative;
    text-align: center;
    top: 6vh;
}

.hero-content .entry-header .entry-meta-date {
    position: absolute;
    width: 100%;
    top: 2vh;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5vh;
    font-weight: 500;
    color: hsl(0, 0%, 90%);
    text-align: center;
}

.entry-header img {
    width: 70%;
    height: auto;
    max-height: 30vh;
    max-width: 70vw;
}

#registerBtn {
    margin: 0;
    position: relative;
    padding: 3vh 6vh;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5vh;
    font-size: 3vh;
    background: linear-gradient(90deg, rgba(113, 2, 240, 0.685), rgba(255, 0, 150, 0.685));
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 1vh 4vh rgba(0, 0, 0, 0.5);
    transition: background 0.3s, transform 0.3s;
}

#registerBtn:hover {
    background: linear-gradient(180deg, rgba(113, 2, 240, 0.685), rgba(255, 0, 150, 0.685));
    transform: scale(1.05);
    transition: background 0.5s, transform 0.5s;
}

/*------------------------------------------------------------
# Event Dates
------------------------------------------------------------*/
.event-dates {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 3vh 0;
    margin-top: 12vh;
}

.event-dates p {
    text-transform: uppercase;
    background: rgb(200,192,93);
    background: linear-gradient(90deg, rgba(200,192,93,1) 39%, rgba(231,199,95,1) 75%, rgba(227,224,68,0.5410539215686274) 100%);
    background-size: 100% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem); /* Responsive font size with min, preferred, and max */
    font-weight: 700;
    opacity: 0.8;
    animation: gradientAnim 3.5s ease alternate infinite;
}

.event-dates p sup {
    text-transform: uppercase;
    background: rgb(200,192,93);
    background: linear-gradient(90deg, rgba(200,192,93,1) 39%, rgba(231,199,95,1) 75%, rgba(227,224,68,0.5410539215686274) 100%);
    background-size: 100% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 3vw, 2.8rem); /* Responsive superscript size */
    font-weight: 700;
    opacity: 0.8;
    animation: gradientAnim 3.5s ease alternate infinite;
    vertical-align: super;
}

/*------------------------------------------------------------
# Countdown
------------------------------------------------------------*/
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
    margin-top: 2vh;
}

.countdown-holder {
    min-width: auto;
    margin-bottom: 2vh;
    display: inline-block;
    margin: 0 clamp(0.5rem, 3vw, 5rem); /* Adjusted for smaller screens */
}

.countdown-holder .dday,
.countdown-holder .dhour,
.countdown-holder .dmin,
.countdown-holder .dsec {
    display: block;
    font-size: clamp(1.5rem, 6vw, 5rem); /* Reduced min size for smaller screens */
    font-weight: 600;
    line-height: 1;
    color: hsl(0, 0%, 100%);
}

.countdown-holder label {
    display: block;
    font-size: clamp(0.75rem, 2vw, 1.5rem); /* Reduced min size for smaller screens */
    font-weight: 500;
    color: hsl(0, 0%, 100%);
}

/*------------------------------------------------------------
# Footer
------------------------------------------------------------*/
.hero-content .entry-footer {
    margin-top: 3vh;
    text-align: center;
    margin-bottom: 10vh;
    width: 100%;
}

/*------------------------------------------------------------
# Responsive Design - Consolidated Media Queries
------------------------------------------------------------*/

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .hero-content {
        padding: 6vh 0 4vh; /* Further reduced padding */
    }
    .entry-header img {
        max-height: 25vh;
        width: 80%;
    }
    #registerBtn {
        padding: 2.5vh 5vh;
        font-size: 2.5vh;
    }
    .event-dates {
        margin-top: 12vh;
    }
    .countdown-holder {
        margin: 0 clamp(0.5rem, 2.5vw, 4rem); /* Adjusted for better spacing */
    }
}

/* Large Tablets / Small Desktops (max-width: 992px) */
@media (max-width: 992px) {
    .hamburger-menu {
        display: flex;
    }
    .site-navigation {
        position: fixed;
        top: 6rem; /* Position right below navbar */
        right: 0;
        width: 100%;
        height: 0; /* Start with zero height */
        background: rgba(0, 0, 0, 0.8); /* Dark semi-transparent background */
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start; /* Align to top */
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.35s ease-in-out, height 0.35s ease-in-out;
        z-index: 98; /* Just below the header */
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .site-navigation.show {
        transform: translateX(0);
        height: calc(100vh - 6rem); /* Full height minus header */
    }
    
    .site-navigation ul {
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
        width: 100%; /* Ensure it covers 100% width of the screen */
        opacity: 0; /* Start with invisible menu items */
        transform: translateY(-20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .site-navigation.show ul {
        opacity: 1;
        transform: translateY(0);
    }
    
    .site-navigation ul li {
        margin: 15px 0;
        width: 100%;
    }
    
    .site-navigation ul li a {
        font-size: 24px;
        display: inline-block;
        padding: 10px 20px;
        width: 80%;
        text-align: center;
        border-radius: 30px;
        transition: all 0.3s ease;
    }
    
    .site-navigation ul li a:hover {
        background: rgba(217, 215, 102, 0.2);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(217, 215, 102, 0.3);
    }
    
    /* Remove the underline effect on mobile */
    .site-navigation ul li a::after {
        display: none;
    }
}

/* Smaller Tablets / Large Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .site-header .site-branding img {
        height: 3rem; /* Adjust height for smaller screens */
        margin-left: 10px; /* Reduce left margin */
        margin-right: 5px; /* Reduce right margin */
    }
    
    .site-header .site-branding .majisticheadlogo img {
        height: 2.5rem; /* Slightly smaller logo */
        margin-right: 10px;
    }
    
    .site-navigation ul li a {
        font-size: 20px;
        padding: 8px 16px;
    }
    
    .hamburger-menu {
        width: 30px; /* Smaller hamburger for mobile */
        height: 25px;
        margin-right: 10px;
    }
}

/* Smaller Tablets / Large Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .site-header .site-branding img {
        height: 3rem; /* Adjust height for smaller screens */
        margin-right: 10px; /* Adjust margin for smaller screens */
    }
    .site-navigation ul li a {
        font-size: 20px;
    }
    .hero-content {
        padding: 6vh 0 3vh; /* Reduced padding */
        margin-bottom: 0; /* Remove bottom margin */
    }
    .hero-content .entry-header {
        top: 1vh;
        padding-top: 0; /* Removed 100px padding */
    }
    .hero-content .entry-header span {
        font-size: 80px;
        white-space: nowrap; /* Ensure text stays in one line */
    }
    .entry-header img {
        width: 85%;
        margin-top: 2vh;
    }
    #registerBtn {
        padding: 2vh 4vh;
        font-size: 2vh;
    }
    .event-dates {
        margin: 10px 0; /* Reduced margin */
        margin-top: 8vh; /* Reduced from 12vh */
    }
    .event-dates p {
        margin-top: 3vh; /* Reduced from 8vh */
    }
    .countdown {
        order: 2; /* Ensure countdown is displayed second */
        width: 100%; /* Full width */
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px; /* Add margin to ensure it is below event dates */
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        margin-bottom: 50px;
    }
    .countdown-holder {
        margin: 0 clamp(0.3rem, 2vw, 3rem); /* Further reduced margin */
        
    }
    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: 3rem; /* Reduce font size for smaller screens */
    }
    .countdown-holder label {
        font-size: 1rem; /* Reduce font size for labels */
    }
    .hero-content .entry-footer {
        margin-top: 2vh;
        margin-bottom: 8vh;
    }
    .entry-footer .btn {
        padding: 10px 20px;
        font-size: 16px;
        margin-right: 10px;
    }
    .home-gallery {
        overflow: hidden; /* Hide overflow to prevent scrollbars */
        width: 100%; /* Full viewport width */
        height: 500px;
    }
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* Responsive columns */
        grid-auto-rows: 100px; /* Set row height to reduce vertical spacing */
        grid-gap: 5px; /* Reduce gap for smaller screens */
    }
    .gallery__item--hor {
        grid-column: span 1;
    }
    .gallery__item--vert {
        grid-row: span 1;
    }
    .gallery__item--lg {
        grid-column: span 1;
        grid-row: span 1;
    }
    .sponsor-marquee {
        height: 10vh;
    }
    .marquee-content li img {
        height: 80px;
    }
    .card-events {
        width: 100%; /* Full width for mobile screens */
        margin: 10px 0; /* Adjust margin for spacing */
    }
    .about-card {
        margin-top: -100px;
        padding: 15px;
    }
    .about-card p {
        font-size: 14px;
    }
    .slide-container {
        height: 60vh;
    }
    .card-events .imgContainer {
        width: 100%;
    }
    .card-events .imgContainer img {
        width: 100%;
    }
    .card-events .content {
        padding: 5px 10px;
    }
    .card-events .content h2 {
        font-size: 18px;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .site-navigation ul li a {
        font-size: 18px;
    }
    .hero-content {
        padding: 5vh 0 2vh; /* Reduced top and bottom padding */
        min-height: 90vh;
        margin-bottom: 0; /* Remove bottom margin */
    }
    .hero-content .entry-header {
        margin-top: 0; /* Reduced from 3vh to 0 */
        padding-top: 0; /* Removed top padding */
        top: 0; /* Reset top position */
    }
    .entry-header img {
        height: 100%;
        width: auto;
        margin-top: 2vh; /* Added margin to create some space at the top */
    }
    .hero-content .entry-footer {
        margin-top: 1.5vh;
        margin-bottom: 6vh;
    }
    .event-dates {
        margin-top: 3vh; /* Reduced from 5vh */
    }
    .event-dates p {
        margin-top: 0; /* Removed top margin */
    }
    .countdown {
        flex-wrap: wrap;
        margin-top: 1vh;
    }
    .countdown-holder {
        margin: 0 clamp(0.2rem, 1.5vw, 2rem) 1vh; /* Tighter margins for small screens */
    }
    .hero-content .entry-footer {
        margin-top: 1.5vh;
        margin-bottom: 6vh;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .hero-content {
        padding: 3vh 0 1vh; /* Minimal padding */
        margin-bottom: 0;
    }
    
    .hero-content .entry-header {
        padding-top: 0; /* Removed padding-top */
        margin-top: 0; /* No margin top */
    }
    
    .event-dates {
        margin-top: 2vh; /* Further reduced */
    }
    
    .completion-banner {
        padding: 12px;
    }
    
    .action-buttons {
        margin-top: 15px;
    }
    .countdown {
        flex-wrap: nowrap; /* Force no wrapping at 375px */
    }
    .countdown-holder {
        margin: 0 clamp(0.1rem, 0.8vw, 1rem) 0.5vh; /* Even tighter margins */
    }
    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: clamp(1rem, 4vw, 2.5rem); /* Further reduced for 375px */
    }
    .countdown-holder label {
        font-size: clamp(0.5rem, 1.2vw, 0.875rem); /* Further reduced for 375px */
    }
}
/* Remaining styles unchanged */
.hero-content .entry-footer .btn {
    background: hsl(0, 0%, 100%);
    padding: 16px 40px;
    border-radius: 0;
    margin-right: 20px;
    color: hsl(0, 0%, 17%);
    font-weight: 600;
}

.hero-content .entry-footer a:hover, 
.hero-content .entry-footer .current {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    color: hsl(0, 0%, 0%);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    color: #fff;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.116);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.majisticheadlogo {
    text-align: center;
    margin: 0 auto;
    padding: 20px 30px;
    width: 100%;
    max-width: 600px;
}

.modal h2 {
    margin-bottom: 20px;
}

.modal-option {
    display: block;
    background-color: #202020;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 10px auto;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 60%;
}

.modal-option:hover {
    background: -webkit-linear-gradient(#00d0ff, #25ffbf);
    background-color: rgb(217,215,102);
    background: linear-gradient(90deg, rgba(217,215,102,1) 0%, rgba(179,194,69,0.5410539215686274) 100%); 
    color: #000;
}

.close-btn {
    background-color: #ccc;
    color: #333;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin: 30px auto;
    margin-bottom: 10px;
    width: 40%;
}

.close-btn:hover {
    background-color: #bbb;
}

/* Remove footer styles */
.site-footer,
.site-footer::before,
.footer-content-wrapper,
.footer-content-wrapper .container,
.footer-content-wrapper .entry-title,
.footer-content-wrapper .entry-title a,
.footer-section,
.footer-section h3,
.footer-section p,
.footer-section ul,
.footer-section a,
.footer-section ul li,
.footer-section ul li a:hover,
.footer-bottom,
.footer-bottom a,
.footer-bottom a:hover,
.footer-social,
.footer-social ul,
.footer-social ul li,
.footer-social ul li a {
    display: none;
}

/*--------------- About Majestic Card -------------------*/
#about-majistic {
    max-width: 100%;
}

.about-card {
    background: rgba(255, 255, 255, 0.178);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: -170px;
}

#about-majistic p {
    color: #fff;
}

/*--------------- proshows CAROUSEL -------------------*/

#proshows {
    padding: 50px 0;
}

#proshows .heading-container {
    margin-bottom: 30px;
}

#proshows .carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#proshows .carousel-inner {
    display: flex;
    overflow: hidden;
}

#proshows .carousel-item {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

#proshows .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

#proshows .carousel-control-prev,
#proshows .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

#proshows .carousel-control-prev {
    left: 10px;
}

#proshows .carousel-control-next {
    right: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #proshows .carousel-item img {
        height: auto;
    }
}

/*----------------EVENTS CARDS-----------------*/
.events .container {
    width: 90%; /* Set the width to 90% of the viewport */
    max-width: 90%; /* Optional: Set a maximum width for larger screens */
    margin: 0 auto; /* Center the container */
}
.card-events {
    margin: 10px 10px;
    position: relative; /* Set position relative for absolute positioning of content */
    overflow: hidden; /* Hide overflow to prevent content from showing outside the card */
    transition: 0.3s ease-in-out;
    border-radius: 4px; /* Rounded corners for the image */
}

.card-events .imgContainer {
    position: relative;
    width: 450px; /* Use full width of the card */
    z-index: 1; /* Ensure the image is above the background */
}

.card-events .imgContainer img {
    max-width: 100%;
    border-radius: 4px; /* Rounded corners for the image */
    display: block; /* Remove bottom space under the image */
}

.card-events .content {
    position: absolute; /* Position content absolutely within the card */
    bottom: -10%; /* Start below of the card */
    left: 0; /* Align to the left */
    right: 0; /* Align to the right */
    padding: 10px 15px; /* Padding for the content */
    padding-bottom: 0; /* Remove bottom padding */
    text-align: center; /* Center the text */
    color: #ffffff; /* Text color */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.692), rgba(0, 0, 0, 0)); /* Gradient transparency background */
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Initially transparent */
    pointer-events: none; /* Prevent interaction when hidden */
    transition: 0.2s ease-in-out; /* Smooth transition for visibility and opacity */
}

.card-events:hover .content {
    z-index: 2; /* Raise content above the image */
    visibility: visible; /* Show content on hover */
    opacity: 1; /* Make content fully visible */
    pointer-events: auto; /* Allow interaction when visible */
    bottom: 0; /* Move content to the top of the card */
}

.card-events:hover .imgContainer img {
    transform: scale(1.05); /* Optional: Slightly scale the image on hover for effect */
    transition: transform 0.3s ease; /* Smooth scaling transition */
}



@media (max-width: 330px) {
    .container .card-events .imgContainer {
        left: -2px; /* Adjust for smaller screens */
    }
}

/*-------------------Stats-----------------*/
#stats .content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: sans-serif;
    padding: 20px;
}

#stats .box {
    width: 220px;
    margin: 15px 60px; /* Increased from 45px to 60px for more spacing */
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    background: #00000060; 
    color: #fff;
    box-shadow: 0 0 40px rgba(31, 31, 31, 0.5);
    backdrop-filter: blur(10px);
    visibility: hidden; /* Initially hidden */
    opacity: 0; /* Initially transparent */
    transition: visibility 0s, opacity 0.3s linear; /* Reduced from 0.5s to 0.3s */
}

#stats .box span {
    font-size: 50px;
    font-weight: bold;
    color: #1bfaef;
}

#stats .box p {
    margin: 10px 0 0 0;
    font-size: 18px;
}

/* Bounce-in and bounce-out animations */
@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.05, 1.05, 1.05); /* Reduced from 1.1 to 1.05 */
    }
    40% {
        transform: scale3d(0.95, 0.95, 0.95); /* Increased from 0.9 to 0.95 */
    }
    60% {
        opacity: 1;
        transform: scale3d(1.02, 1.02, 1.02); /* Reduced from 1.03 to 1.02 */
    }
    80% {
        transform: scale3d(0.98, 0.98, 0.98); /* Increased from 0.97 to 0.98 */
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceOut {
    20% {
        transform: scale3d(0.95, 0.95, 0.95); /* Increased from 0.9 to 0.95 */
    }
    50%, 55% {
        opacity: 1;
        transform: scale3d(1.05, 1.05, 1.05); /* Reduced from 1.1 to 1.05 */
    }
    100% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounce-in {
    animation: bounceIn 0.7s forwards; /* Reduced from 1s to 0.7s */
}

.bounce-out {
    animation: bounceOut 0.7s forwards; /* Reduced from 1s to 0.7s */
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Flip-in and flip-out animations */
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    30% {
        transform: perspective(400px) rotateX(-10deg);
    }
    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flip-in {
    animation: flipInX 1s forwards;
}

.flip-out {
    animation: flipOutX 1s forwards;
}

/*------------------- Highlights Section -------------------*/
.home-gallery {
    height: 770px;
    overflow: hidden; /* Hide overflow to prevent scrollbars */
    width: 100%; /* Full viewport width */
}

.gallery {
    display: grid; /* Use grid for layout */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Responsive columns */
    grid-auto-rows: 150px; /* Set row height to reduce vertical spacing */
    grid-gap: 5px; /* gap between items */
    animation: scroll 50s linear infinite; /* Animation for scrolling */
    width: calc(100% * 2); /* Double the width for seamless scrolling */
}

.gallery__item {
    align-items: center;
    display: flex;
    justify-content: center;
}

.gallery__item > img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* Animation for scrolling */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move to the left */
    }
}

/* Optional: Adjust item sizes for better visual appeal */
.gallery__item--hor {
    grid-column: span 2; /* Span 2 columns for horizontal items */
}

.gallery__item--vert {
    grid-row: span 2; /* Span 1 row for vertical items */
}

.gallery__item--lg {
    grid-column: span 2; /* Span 2 columns for large items */
    grid-row: span 2; /* Span 2 rows for large items */
}


@media (max-width: 768px) {
    .home-gallery{
        overflow: hidden; /* Hide overflow to prevent scrollbars */
        width: 100%; /* Full viewport width */
        height: 500px;
    }
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); /* Responsive columns */
        grid-auto-rows: 100px; /* Set row height to reduce vertical spacing */
        grid-gap: 5px; /* Reduce gap for smaller screens */
    }
    .about-card {
        margin-top: -100px;
        padding: 15px;
    }
    .about-card p {
        font-size: 14px;
    }
    .slide-container {
        height: 60vh;
    }
    .card-events .imgContainer {
        width: 100%;
    }
    .card-events .imgContainer img {
        width: 100%;
    }
    .card-events .content {
        padding: 5px 10px;
    }
    .card-events .content h2 {
        font-size: 18px;
    }
    .event-dates {
        order: 1; /* Ensure event dates are displayed first */
        width: 100%; /* Full width */
        text-align: center; /* Center align */
    }
    .countdown {
        order: 2; /* Ensure countdown is displayed second */
        width: 100%; /* Full width */
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px; /* Add margin to ensure it is below event dates */
    }
    .event-dates {
        margin: 20px 0; /* Reduce margin */
    }
    .countdown-holder {
        margin: 0 12px; /* Reduce space between each countdown holder */
    }
    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: 3rem; /* Reduce font size for smaller screens */
    }
    .countdown-holder label {
        font-size: 1rem; /* Reduce font size for labels */
    }
}

/*----------SPONORS SECTION------------*/

@import url('https://fonts.googleapis.com/css?family=Montserrat');
.sponsors-section{
    overflow: hidden;
}

.sponsor-marquee {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.sponsor-marquee {
  font-family: 'Montserrat', sans-serif;
  background-color: #eee;
  color: #111;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

:root {
  --marquee-width: 100vw;
  --marquee-height: 20vh;
  /* --marquee-elements: 12; */ /* defined with JavaScript */
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 1.8s);
}

.sponsor-marquee {
  width: var(--marquee-width);
  height: var(--marquee-height);
  background-color: #11111100;
  color: #eee;
  overflow: hidden;
  position: relative;
}
.sponsor-marquee:before, .sponsor-marquee:after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}
.sponsor-marquee:before {
  left: 0;
  background: linear-gradient(to right, #000000 0%, transparent 100%);
}
.sponsor-marquee:after {
  right: 0;
  background: linear-gradient(to left, #111 0%, transparent 100%);
}
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
  animation-play-state: paused;
} */
@keyframes scrolling {
  100% { transform: translateX(0); }
  0% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-align: center; */
  flex-shrink: 0;
  width: var(--marquee-element-width);
  max-height: 100%;
  font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  height: 150px;
}

@media (max-width: 600px) {
  html { font-size: 12px; }
  :root {
    --marquee-width: 100vw;
    --marquee-height: 16vh;
    --marquee-elements-displayed: 3;
  }
.sponsor-marquee:before, .sponsor-marquee:after { width: 5rem; }
.sponsor-marquee {
    height: 10vh;
}
.marquee-content li img {
    height: 80px;
}
}

/*Sub pages*/

/*---------------registration_event----------------*/

.registration-container {
    display: block; /* Change display type to block */
    padding: 20px 20px; /* Add gaps on all sides, with extra padding on top and bottom */

    margin-bottom: 10px; /* Space for footer */
    position: relative; /* Ensure it is positioned relative to the navbar */
    top: 60px; /* Offset to place it below the navbar */
}

.content-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 100%;
}

.banner-container {
    width: calc(40% - 20px); /* Adjust width to fit two columns with gaps */
    height: 100%; /* Adjust height to fit within the screen */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}
/* .form-container {
    width: calc(50% - 20px); /* Adjust width to fit two columns with gaps 
    height: 100%; /* Adjust height to fit within the screen 
    box-sizing: border-box; /* Include padding and border in element's total width and height 
} */
.banner-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.178);
    backdrop-filter: blur(10px);
    width: 100%;
}

.form-container img {
    max-width: 250px;
    margin-bottom: 20px;
}

.form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align form elements */
}

.form-container .form-group {
    display: flex;
    align-items: center;
    width: 100%; /* Set width to 100% of the form container */
    margin-bottom: 10px;
}

.form-container label {
    margin-right: 10px;
    color: white;
    font-size: 18px; /* Increase label font size */
}
.form-container p {
    color: white;
}

/* Modern, stylish, and animated input fields */
.form-container input, .form-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #00d0ff21;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.form-container input:focus, .form-container select:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
    outline: none;
    background-color: #00d0ff40;
}

.form-container input::placeholder, .form-container select::placeholder {
    color: #ccc;
    opacity: 0.4;
}

.form-container select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23ccc" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 8px 10px;
}

.form-container input[type="radio"] {
    width: auto;
    margin-right: 10px;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}


.form-container button {
    padding: 12px 24px;
    background: #5cb85c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px; /* Increase button font size */
    margin-top: 20px;
}

.form-container button:hover {
    background: #4cae4c;
}

.message {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.navbar {
    width: 100%;
    background: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0; /* Ensure the navbar is fixed to the left */
    z-index: 1000;
}

.footer {
    width: 100%;
    background: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        height: auto;
    }
    .banner-container, .form-container {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .banner-container img {
        height: auto;
    }
}

@media (max-width: 600px) {
    .form-container img {
        max-width: 20rem;
    }
    .form-container form {
    }
    .form-container label {
        width: 100%;
        margin-bottom: 5px;
    }
    .form-container input, .form-container select {
        width: 100%;
    }
    .form-container .form-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-container button {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .hero-content .container{
        padding-bottom: 50px;
    }
    .hero-content {
        padding: 80px 0 20px; /* Reduced bottom padding */
        min-height: auto; /* Changed from 100vh to auto */
    }

    .hero-content .entry-header {
        padding-top: 0; /* Removed padding-top */
        margin-top: 0; /* No margin top */
    }
    
    .hero-content .entry-header span {
        font-size: 80px;
    }

    .hero-content .entry-header .entry-meta-date {
        top: 40px;
        font-size: 18px;
    }

    .event-dates h2 {
        font-size: 5vw;
    }

    .event-dates h2 sup {
        font-size: 2vw;
    }

    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: 50px;
    }

    .countdown-holder label {
        font-size: 14px;
    }

    .entry-footer .btn {
        padding: 10px 20px;
        font-size: 14px;
        margin-right: 5px; /* Reduce margin */
    }

    .about-card {
        margin-top: -100px;
        padding: 15px;
    }

    .about-card p {
        font-size: 14px;
    }

    .slide-container {
        height: 60vh;
    }

    .card-events .imgContainer {
        width: 100%;
    }

    .card-events .imgContainer img {
        width: 100%;
    }

    .card-events .content {
        padding: 5px 10px;
    }

    .card-events .content h2 {
        font-size: 18px;
    }

    .home-gallery {
        height: 500px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        grid-auto-rows: 100px;
    }

    .gallery__item--hor {
        grid-column: span 1;
    }

    .gallery__item--vert {
        grid-row: span 1;
    }

    .gallery__item--lg {
        grid-column: span 1;
        grid-row: span 1;
    }

    .sponsor-marquee {
        height: 10vh;
    }

    .marquee-content li img {
        height: 80px;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 150px 0;
    }

    .hero-content .entry-header span {
        font-size: 100px;
        white-space: nowrap; /* Ensure text stays in one line */
    }

    .hero-content .entry-header .entry-meta-date {
        top: 50px;
        font-size: 20px;
    }

    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: 4rem;
    }

    .countdown-holder label {
        font-size: 1.2rem;
    }

    .entry-footer .btn {
        padding: 12px 30px;
        font-size: 18px;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 80px 0;
    }

    .hero-content .entry-header {
        padding-top: 0; /* Removed 100px padding */
        top: 0; /* Removed top position */
    }
    
    .hero-content .entry-header span {
        font-size: 80px;
        white-space: nowrap; /* Ensure text stays in one line */
    }

    .hero-content .entry-header .entry-meta-date {
        top: 40px;
        font-size: 18px;
    }

    .countdown {
        width: 90%; /* Resize to 90% width */
    }

    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: 3rem;
    }

    .countdown-holder label {
        font-size: 1rem;
    }

    .entry-footer .btn {
        padding: 10px 20px;
        font-size: 16px;
        margin-right: 10px;
    }
    .entry-header img {
        width: 90%; /* Increased from 85% to 90% */
        max-height: 22vh; /* Increased height to make image more prominent */
        margin: 1vh auto; /* Center the image */
        display: block; /* Ensure it's a block element for margin auto to work */
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 80px 0;
    }

    .hero-content .entry-header {
        padding-top: 0; /* Removed padding-top */
        margin-top: 0; /* No margin top */
    }

    .hero-content .entry-header span {
        font-size: 60px;
        white-space: nowrap; /* Ensure text stays in one line */
    }

    .hero-content .entry-header .entry-meta-date {
        top: 30px;
        font-size: 16px;
    }

    .countdown {
        width: 90%; /* Resize to 90% width */
    }

    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: 2.5rem;
    }

    .countdown-holder label {
        font-size: 0.8rem;
    }

    .entry-footer .btn {
        padding: 8px 16px;
        font-size: 14px;
        margin-right: 5px;
    }
    .entry-header img {
        max-height: 18vh; /* Increased from 15vh to 18vh */
        width: 90%;
        margin-top: 2vh; /* Added margin to create some space at the top */
    }
}

/* Responsive iframe container */
.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ...existing code... */

.message-box {
    position: fixed;
    width: 450px;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 10000;
    display: none; /* Initially hidden */
    animation: fadeOut 10s forwards; /* Fade out after 10 seconds */
}

.message-box.success {
    background: green;
}

.message-box.error {
    background: red;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; display: none; }
}

/* ...existing code... */

.hidden {
    display: none;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: white;
    width: 100%; /* Ensure label covers the whole width */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #00d0ff21;
    color: #fff;
}

.form-group input[type="radio"] {
    width: auto;
    margin-right: 20px; /* Add space between Yes and No options */
}

/* ...existing code... */

.form-group .radio-group {
    gap: 30px; /* Add space between Yes and No radio inputs */
}

/* ...existing code... */




/*Mearch pagre*/
#checkoutModal .modal{
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.322); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect */
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    width: 100%;
    max-width: 600px;
}
#checkoutModal .modal-dialog{
    top: 50%;
}

/* ...existing code... */

.nav-logo {
    margin-right: 15px;
}

/* ...existing code... */

.nav-logo-wrapper a {
    margin-right: 15px;
}

.nav-logo-wrapper a:last-child {
    margin-right: 0;
}

/* ...existing code... */

@media (max-width: 768px) {
    .event-dates {
        order: 1; /* Ensure event dates are displayed first */
        width: 100%; /* Full width */
        text-align: center; /* Center align */
    }

    .countdown {
        order: 2; /* Ensure countdown is displayed second */
        width: 100%; /* Full width */
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-top: 20px; /* Add margin to ensure it is below event dates */
    }
    .event-dates {
        margin: 20px 0; /* Reduce margin */
    }

    .countdown-holder {
        margin: 0 12px; /* Reduce space between each countdown holder */
    }

    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: 3rem; /* Reduce font size for smaller screens */
    }

    .countdown-holder label {
        font-size: 1rem; /* Reduce font size for labels */
    }
}

/* ...existing code... */

@media (max-width: 600px) {
    .hero-content {
        padding: 0 0 0; /* Minimal padding */
        min-height: 60vh;
        margin-bottom: 0; /* Remove bottom margin */
    }

    .hero-content .entry-header span {
        font-size: 80px;
    }

    .hero-content .entry-header .entry-meta-date {
        top: 40px;
        font-size: 18px;
    }

    .event-dates {
        margin: 10px 0; /* Reduced margin */
    }

    .event-dates h2 {
        font-size: 5vw;
    }

    .event-dates h2 sup {
        font-size: 2vw;
    }

    .countdown-holder .dday,
    .countdown-holder .dhour,
    .countdown-holder .dmin,
    .countdown-holder .dsec {
        font-size: 50px;
    }

    .countdown-holder label {
        font-size: 14px;
    }

    .entry-footer .btn {
        padding: 10px 20px;
        font-size: 14px;
        margin-right: 5px; /* Reduce margin */
    }

    .about-card {
        margin-top: -100px;
        padding: 15px;
    }

    .about-card p {
        font-size: 14px;
    }

    .slide-container {
        height: 60vh;
    }

    .card-events .imgContainer {
        width: 100%;
    }

    .card-events .imgContainer img {
        width: 100%;
    }

    .card-events .content {
        padding: 5px 10px;
    }

    .card-events .content h2 {
        font-size: 18px;
    }

    .home-gallery {
        height: 500px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        grid-auto-rows: 100px;
    }

    .gallery__item--hor {
        grid-column: span 1;
    }

    .gallery__item--vert {
        grid-row: span 1;
    }

    .gallery__item--lg {
        grid-column: span 1;
        grid-row: span 1;
    }

    .sponsor-marquee {
        height: 10vh;
    }

    .marquee-content li img {
        height: 80px;
    }
    .form-container img {
        max-width: 20rem;
    }
    .form-container form {
    }
    .form-container label {
        width: 100%;
        margin-bottom: 5px;
    }
    .form-container input, .form-container select {
        width: 100%;
    }
    .form-container .form-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-container button {
        font-size: 14px;
    }
}

/* ...existing code... */

@media (max-width: 992px) {
    .card-events {
        width: 45%; /* Adjust width for tablet screens */
        margin: 10px 2.5%; /* Adjust margin for spacing */
    }
}

@media (max-width: 768px) {
    .card-events {
        width: 100%; /* Full width for mobile screens */
        margin: 10px 0; /* Adjust margin for spacing */
    }
}

/* ...existing code... */

/* ...existing code... */

.events-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.events-carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.events-carousel-item {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.events-carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.events-carousel-control-prev,
.events-carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.events-carousel-control-prev {
    left: 10px;
}

.events-carousel-control-next {
    right: 10px;
}

/*---------FOOTER---------*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

footer {
    margin-top: 50px;
    background: url('images/footer-cover.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    position: relative;
    width: 100%;
    padding-top: 40px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Darker overlay for better readability */
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

footer img {
    width: 200px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

footer img:hover {
    transform: scale(1.05);
}

footer h5 {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: rgb(217,215,102);
    background: linear-gradient(90deg, rgba(217,215,102,1) 0%, rgba(179,194,69,0.5410539215686274) 100%);
}

footer p {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
    color: #e0e0e0;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

footer a:hover {
    color: rgb(217,215,102);
    transform: translateX(5px);
}

footer .address {
    display: block;
    margin-top: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.social {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social a:hover {
    transform: translateY(-5px);
    background: rgb(217,215,102);
    background: linear-gradient(90deg, rgba(217,215,102,1) 0%, rgba(179,194,69,0.8) 100%);
}

.social i {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social a:hover i {
    color: #000;
}

.copyright {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright span {
    color: #e0e0e0;
    font-size: 14px;
    margin: 5px 0;
}

.copyright a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: rgb(217,215,102);
    transform: none;
}

/* Footer responsive styles */
@media only screen and (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
    }
    
    .footer-container > div {
        flex: 0 0 calc(50% - 30px);
    }
}

@media only screen and (max-width: 768px) {
    footer h5 {
        font-size: 20px;
    }
    
    footer a, footer p {
        font-size: 15px;
    }
}

@media only screen and (max-width: 576px) {
    .footer-container {
        flex-direction: column;
    }
    
    .footer-container > div {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .copyright .container {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright span {
        margin: 5px 0;
    }
    
    footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer h5, footer p, footer .address {
        text-align: center;
    }
    
    .social {
        justify-content: center;
    }
}

/* ...existing code... */

/* ...existing code... */

.info-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.info-card ul {
    list-style-type: none; /* Remove bullets */
    padding-left: 0; /* Remove default padding */
}

.info-card ul li {
    font-size: 18px;
    padding-left: 20px; /* Add padding to align text */
    position: relative; /* Position relative for custom bullets */
}

.info-card ul li::before {
    content: ""; /* Custom bullet */
    position: absolute; /* Position absolute for custom bullets */
    left: 0; /* Align custom bullet to the left */
    color: #fff; /* Color of the custom bullet */
}

@media (max-width: 768px) {
    .info-card {
        width: 95%;
    }
}

/* ...existing code... */

/* Enhanced Info Card for Registration Pages */
.info-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 16px;
    margin: 0 auto 30px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(86, 241, 92, 0.2);
}

.info-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.info-card ul li {
    font-size: 1.1rem;
    padding: 10px 0 10px 35px;
    position: relative;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    text-align: left;
}

.info-card ul li i {
    position: absolute;
    left: 0;
    color: #56f15c;
    font-size: 1.25rem;
}

.info-card ul li strong {
    color: #56f15c;
    margin-left: 5px;
}

.info-card ul li a {
    color: #25ffbf;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card ul li a:hover {
    color: #56f15c;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info-card {
        width: 95%;
        padding: 20px 15px;
    }
    
    .info-card ul li {
        font-size: 1rem;
        padding-left: 30px;
    }
}

/* ...existing code... */

/* Enhanced Info Card for Registration Pages with Blue/Purple Theme */
.info-card {
    background: linear-gradient(135deg, rgba(12, 25, 50, 0.7), rgba(25, 15, 80, 0.7));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 18px;
    border-radius: 12px;
    margin: 0 auto 25px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 15px rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 3px;
    background: linear-gradient(90deg, #00d0ff, #7928ca, #00d0ff);
    background-size: 200% 100%;
    animation: gradientBorder 3s linear infinite;
}

@keyframes gradientBorder {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.info-card ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-card ul li {
    font-size: 1rem;
    padding: 6px 0 6px 30px;
    position: relative;
    color: #e0e7ff;
    display: flex;
    align-items: center;
    text-align: left;
}

.info-card ul li i {
    position: absolute;
    left: 0;
    color: #00d0ff;
    font-size: 1.1rem;
}

.info-card ul li strong {
    color: #a5b4fc;
    font-weight: 600;
}

.info-card ul li a {
    color: #00d0ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-card ul li a:hover {
    color: #7928ca;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .info-card {
        width: 95%;
        padding: 15px 12px;
    }
    
    .info-card ul li {
        font-size: 0.95rem;
        padding-left: 25px;
    }
}

/* ...existing code... */
