* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.whatsapp-float {
            position: fixed;
            width: 56px;
            height: 56px;
            bottom: 24px;
            right: 24px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none; /* This removes the underline */
            transition: all 0.2s ease-in-out;
}

.whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        /* Pulse animation (optional) */
@keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }}
        
        .whatsapp-float.pulse {
            animation: pulse 2s infinite;
}
body {
    background-color: white;
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.logo-underline {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-top: 50px;
    margin-left: -110px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.logo-text {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    color: #1e40af;
    font: bold;
    font-weight: 700;
}

/* Desktop Navigation */
.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e40af, #fbbf24);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #1e40af;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Sign In Button */
.sign-in-btn {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
}

.sign-in-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #1e40af;
    font-size: 24px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-toggle:hover {
    background-color: #f3f4f6;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background-color: #1e40af;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.mobile-close:hover {
    background-color: #f3f4f6;
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
    flex: 1;
}

.mobile-nav-links a {
    display: block;
    text-decoration: none;
    color: #374151;
    font-size: 18px;
    font-weight: 500;
    padding: 16px 24px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
    background-color: #f8fafc;
    color: #1e40af;
    padding-left: 32px;
}

.mobile-sign-in {
    margin: 20px 24px 40px 24px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .nav-links {
        gap: 24px;
    }

    .nav-container {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .navbar {
        min-height: 70px;
        padding: 0 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .nav-container {
        display: none;
    }

    .mobile-toggle {
        display: block;
        order: 3;
    }

    .sign-in-btn {
        padding: 10px 20px;
        font-size: 13px;
        order: 2;
        margin-left: auto;
        margin-right: 16px;
    }

    .logo-section {
        order: 1;
    }

    .mobile-menu-content {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .navbar {
        min-height: 65px;
        padding: 0 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-section {
        gap: 8px;
        order: 1;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        border-radius: 10px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 0.5px;
    }

    .sign-in-btn {
        padding: 8px 16px;
        font-size: 12px;
        order: 2;
        margin-left: auto;
        margin-right: 12px;
    }

    .mobile-toggle {
        order: 3;
    }

    .mobile-menu-content {
        width: 100%;
    }

    .mobile-nav-links a {
        font-size: 16px;
        padding: 14px 20px;
    }

    .mobile-nav-links a:hover {
        padding-left: 28px;
    }

    .mobile-sign-in {
        margin: 20px 20px 40px 20px;
    }
}

/* Demo content */
.demo-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.high {
    letter-spacing: 1px;
}

.demo-content h1 {
    font-size: 48px;
    color: #1e40af;
    margin-bottom: 20px;
    font-weight: 700;
}

.demo-content p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .demo-content {
        padding: 40px 16px;
    }

    .demo-content h1 {
        font-size: 32px;
    }

    .demo-content p {
        font-size: 16px;
    }
}

.hero-box {
    background: linear-gradient(90deg, #0a2271, #1f43b9);
    width: 430px;
    height: 480px;
    position: absolute;
}

.triangle-clippath {
    width: 400px;
    height: 660.7px;
    background: linear-gradient(90deg, #1b3ca7, #0a2271);
    position: absolute;
    top: -100px;
    margin-left: 331px;
    clip-path: polygon(0 0, 90% 100%, 0 100%);
}

.hero-text {
    position: absolute;
    top: 260px;
    font-size: 40px;
    margin-top: -60px;
    margin-left: 40px;
    text-align: left;
    background: linear-gradient(90deg, #ac7d08, #fbbf24, #ac7d08);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text p {
    position: absolute;
    top: 50%;
    font-size: 14px;
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    margin-left: 40px auto;
    text-align: left;
    color: #ffffff;
}

.hero-btn {
    height: 56px;
    width: 130px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    padding: 10px 20px;
    border-color: #ffffff;
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    margin-top: 100px;
    position: absolute;
    font-size: 16px;
}

.hero-btn2 {
    height: 56px;
    width: 130px;
    background-color: #0a227100;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    padding: 10px 20px;
    border-color: #ffffff;
    border-radius: 10px;
    border-width: 2px;
    border-style: solid;
    margin-left: 160px;
    margin-top: 100px;
    position: absolute;
    font-size: 16px;
}

.texts {
    position: absolute;
    top: 305px;
    font-family: "montserrat", system-ui;
    font-size: 17px;
    margin-top: -100px;
    margin-left: 620px;
    text-align: left;
    background: linear-gradient(90deg, #404472, #404472, #404472);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 100;
    font: bold;
}

.texts2 {
    position: absolute;
    top: 310px;
    font-family: "Boldonse", system-ui;
    font-size: 46px;
    margin-top: -80px;
    margin-left: 620px;
    text-align: left;
    background: linear-gradient(90deg, #008c77, #008c77, #008c77);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 100;
    font: bold;
}

.time {
    position: absolute;
    top: 320px;
    font-family: "Boldonse", system-ui;
    font-size: 10px;
    margin-top: -10px;
    margin-left: 620px;
    text-align: left;
    font-size: 15px;
    background: linear-gradient(90deg, #161616, #161616, #161616);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 100;
    font: bold;
}

/* Image Slideshow Styles */
.image-slideshow {
    position: absolute;
    left: 910px;
    top: 362px;
    transform: translateY(-50%);
    right: 50px;
    width: 300px;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    border-radius: 8px;
}

.slide.active {
    opacity: 1;
}

.register-btn {
    position: absolute;
    top: 368px;
    margin-left: 720px;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #1c46d0, #1c46d0, #1c46d0);
    position: absolute;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border-style: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Add these media queries at the end of your CSS file */
@media (max-width: 1024px) {

    /* Adjust the hero box and triangle for smaller screens */
    .hero-box {
        width: 300px;
        height: 350px;
    }

    .triangle-clippath {
        width: 300px;
        height: 500px;
        margin-left: 200px;
    }

    /* Adjust text positions */
    .texts,
    .texts2,
    .time {
        margin-left: 500px;
    }

    /* Adjust image slideshow position */
    .image-slideshow {
        left: 600px;
        width: 250px;
        height: 350px;
    }

    /* Adjust register button position */
    .register-btn {
        left: 56.5%;
    }
}

@media (max-width: 768px) {

    /* Hide elements on mobile except hero-box */
    .triangle-clippath,
    .image-slideshow,
    .texts,
    .texts2,
    .blur,

    .time {
        display: none;
    }

    /* Adjust hero-box for mobile */
    .next-eve {
        position: relative;
        top: 0;
        left: 0;
        margin-top: -20px;
        font-size: 4px;
    }

    .line {
        position: absolute;
        top: 17px;
        left: 0px;
        width: 150px;
        height: 3px;
        background: linear-gradient(90deg, #000000, #000000, #000000);
    }

    .past-image {
        width: 100%;
        height: auto;
        margin-left: 0;
        margin-top: 20px;
        padding: 30px;
    }

    .hero-box {
        width: 100%;
        height: 300px;
        position: relative;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, #0a2271, #1f43b9);
    }

    /* Center the hero text and adjust its styling */
    .hero-text {
        position: relative;
        top: auto;
        margin: 40px auto;
        text-align: center;
        width: 90%;
        max-width: 500px;
        background: linear-gradient(90deg, #fbbf24, #fbbf24, #fbbf24);
        -webkit-background-clip: text;
        background-clip: text;
    }

    .hero-text p {
        position: relative;
        margin: 20px auto;
        text-align: center;
        color: #ffffff;
    }

    /* Adjust hero buttons */
    .hero-btn,
    .hero-btn2 {
        position: relative;
        margin: 20px auto;
        display: block;
        width: 80%;
        max-width: 200px;
    }

    .hero-btn2 {
        margin-left: auto;
        margin-top: 10px;
    }

    .past {
        display: flex;
        align-items: flex-start;
        padding: -10px;
        gap: 30px;
        flex-wrap: wrap;
        /* Mobile responsive */
        background-color: #ffffff;
        /* Optional soft background */
        border-radius: 20px;
    }

    /* Center and adjust the register button */
    .register-btn {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: block;
        margin: 30px auto;
        width: 80%;
        max-width: 250px;
        background: linear-gradient(90deg, #fbbf24, #fbbf24, #fbbf24);
        color: #1e40af;
    }

    .line {
        position: relative;
        top: 17px;
        left: 0px;
        width: 150px;
        height: 3px;
        background: linear-gradient(90deg, #000000, #000000, #000000);
    }
}

@media (max-width: 480px) {

    /* Further adjustments for very small screens */
    .hero-box {
        height: 400px;
        background: linear-gradient(180deg, #0a2271 50%, #19389c 70%, #1b389a 10%, #ffffff 100%)
    }

    .past {
        display: flex;
        align-items: flex-start;
        padding: -10px;
        gap: 30px;
        flex-wrap: wrap;
        /* Mobile responsive */
        background-color: #ffffff;
        /* Optional soft background */
        border-radius: 20px;
    }

    .hero-text {
        margin: 20px auto;
        position: absolute;
        top: 20%;
        left: 4%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .hero-btn,
    .hero-btn2 {
        padding: 8px 16px;
        height: 40px;
        font-size: 14px;
    }

    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.next-eve {
    color: #000000;
    font-family: "Montserrat", sans-serif;
    position: relative;
    margin-top: 530px;
    justify-content: center;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}

.blur {
    position: relative;
    margin-top: -110px;
    left: 0;
    width: 57%;
    height: 7px;
    background: linear-gradient(180deg, #fbbf24, #fbbf24, #fbbf24);
    backdrop-filter: blur(10px);
}

.next-ene {
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: "Montserrat", sans-serif;
    color: #0a2271;
    margin-top: 100px;
    font-size: 35px;
    font-weight: bold;
}

.next-date {
    font-family: "Montserrat", sans-serif;
    color: #0a2271;
    margin-top: 6px;
    font-size: 26px;
    display: flex;
    justify-content: center;
    font-weight: bold;
}

.card {
    width: 390px;
    height: 400px;
    background: linear-gradient(90deg, #333366, #333366);
    border-radius: 20px;
    position: relative;
    margin-top: 130px;
    margin-left: 20px;
    display: inline-block;
    padding-bottom: 70px;
    border-width: 3px;
    border-style: solid;
    border-color: #fbbf24;
}

.event-image {
    width: 100%;
    height: 200px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    border-radius: 20px 20px 0 0;
    object-fit: cover;
    border-radius: 20px;
}

.event-title {
    font-family: "Montserrat", sans-serif;
    color: #fbbf24;
    font-size: 16px;
    margin-left: 13px;
}

.event-description {
    font-family: "Montserrat", sans-serif;
    color: #38349c;
    font-size: 16px;
    padding: 10px;
    margin-left: 10px;
}

.card2 {
    width: 390px;
    height: 400px;
    background: linear-gradient(90deg, #38349c, #38349c);
    position: absolute;
    margin-top: 130px;
    margin-left: 20px;
    display: inline-block;
    padding-bottom: 70px;
    border-radius: 20px;
    border-width: 3px;
    border-style: solid;
    border-color: #fbbf24;
}

.main-h-details {
    position: relative;
    color: #fbbf24;
    padding-top: 15px;
    padding-left: 15px;
}

.line {
    position: absolute;
    top: 45px;
    left: 130px;
    width: 3px;
    height: 290px;
    background: linear-gradient(90deg, #fbbf24, #fbbf24, #fbbf24);
}

.line2 {
    position: absolute;
    top: 95px;
    left: 40px;
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #fbbf24, #fbbf24);
}

.line3 {
    position: absolute;
    top: 190px;
    left: 40px;
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #fbbf24, #fbbf24);
}

.line4 {
    position: absolute;
    top: 280px;
    left: 40px;
    width: 300px;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #fbbf24, #fbbf24);
}

.h-date {
    position: absolute;
    top: 55px;
    left: 60px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-align: left;
}

#date {
    position: absolute;
    top: 55px;
    left: 160px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-align: left;
}

.h-location {
    position: absolute;
    top: 135px;
    left: 50px;
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    color: #ffffff;
    text-align: left;
}

.location {
    position: absolute;
    top: 129px;
    left: 160px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    color: #ffffff;
    text-align: left;
}

.h-time {
    position: absolute;
    top: 228px;
    left: 60px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    color: #ffffff;
    text-align: left;
}


.time2 {
    position: absolute;
    top: 230px;
    left: 160px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    color: #ffffff;
    text-align: left;
}

.price {
    position: absolute;
    top: 310px;
    left: 60px;
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    color: #ffffff;
    text-align: left;
}

.h-price {
    position: absolute;
    top: 310px;
    left: 160px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: #ffffff;
    text-align: left;
}

.register-btn2 {
    position: absolute;
    width: 250px;
    top: 680px;
    left: -300px;
    font-family: "Roboto Mono", monospace;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #333366, #333366, #333366);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border-style: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.more-btn {
    position: absolute;
    top: 680px;
    gap: 20px;
    width: 220px;
    left: -40px;
    height: 45px;
    margin-bottom: 20px;
    transform: translate(-50%, -50%);
    color: #001a6e;
    padding: 12px 24px;
    border-radius: 8px;
    border-width: 2px;
    background-color: #3e3e7656;
    border-color: #333366;
    border-style: solid;
    font-size: 16px;
    font-family: "Roboto Mono", monospace;
    font-weight: bold;
    cursor: pointer;
}

.sponsor {
    position: absolute;
    top: 680px;
    width: 220px;
    font-family: "Roboto Mono", monospace;
    left: 220px;
    transform: translate(-50%, -50%);
    background-color: #ECEDEF;
    color: #333366;
    height: 45px;
    padding: 12px 24px;
    border-color: rgba(0, 0, 0, 0.1);
    border-width: 2px;
    border-radius: 8px;
    border-style: solid;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Card3 Styles */
.card3 {
    width: 355px;
    height: 400px;
    background: linear-gradient(90deg, #38349c, #38349c);
    position: relative;
    margin-top: 20px;
    margin-left: 20px;
    display: inline-block;
    border-radius: 20px;
    border-width: 3px;
    border-style: solid;
    border-color: #fbbf24;
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.slideshow {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slideshow img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Event details */
.card3 .event-details {
    padding: 15px;
    color: white;
}

.card3 .event-title {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 5px;
}

.card3 .event-description {
    color: #38349c;
    margin-top: 10px;
    font-size: 14px;
}

/* Navigation dots */
.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fbbf24;
}

/* Replace your existing marquee styles with this: */
.button-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: 20px;
    height: 70px;
}

.people-name1 {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    width: max-content;
    animation: scroll-left 30s linear infinite;
    position: relative;
}

.hero-buttons {
    margin-top: 50px;
}

/* Duplicate the buttons to create seamless looping */
.people-name1::after {
    content: "";
    display: flex;
    gap: 12px;
    padding: 10px 0;
    width: max-content;
    position: absolute;
    left: 100%;
    top: 0;
}

.people-name1 button {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    flex-shrink: 0;
    transition: background-color 0.3s, box-shadow 0.3s;
    width: 240px;
    box-sizing: border-box;
}

.people-name1 button:hover {
    background-color: #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.people-name1 button img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.people-name1 button .arrow {
    margin-left: auto;
    font-size: 18px;
    color: #666;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.button-marquee-wrapper:hover .people-name1 {
    animation-play-state: paused;
}

.next-eve4 {
    color: #000000;
    font-family: "Montserrat", sans-serif;
    position: relative;
    margin-top: 2000px;
    justify-content: center;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
}

#upcoming-event {
    margin-top: 500px;
}

/* Add this to properly structure your hero section */
.hero-box {
    z-index: 0;
}

.triangle-clippath {
    z-index: 0;
}

/* Responsive adjustments for card3 */
@media (max-width: 1024px) {
    .card3 {
        width: 300px;
        height: 380px;
    }

    .slideshow-container {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .card3 {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-bottom: 30px;
    }
}

.past {
    display: flex;
    align-items: flex-start;
    padding: 0px;
    gap: 30px;
    flex-wrap: wrap;
    /* Mobile responsive */
    background-color: #ffffff;
    /* Optional soft background */
    border-radius: 20px;
}

.past-image {
    height: 350px;
    border-radius: 20px;
    flex-shrink: 0;
    width: 400px;
    object-fit: cover;
}

.past-text {
    flex: 1;
    padding: 0px;
    text-align: left;
    margin-top: -30px;
    color: #1a1a1a;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 14px;
    line-height: 1.7;
}

.past-image {
    height: 350px;

    border-radius: 20px;
    flex-shrink: 0;
    width: 400px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.past-image.active {
    opacity: 1;
}

.past-container {
    position: relative;
    width: 400px;
    margin-top: -30px;
    height: 350px;
    overflow: hidden;
}

.line {
    position: absolute;
    top: 1720px;
    left: 530px;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #ffc738, #f7ba1f, #fcc741);
}

/* Existing CSS remains unchanged until media queries */

/* Existing media query for max-width: 768px */
@media (max-width: 768px) {

    /* Hide elements on mobile except hero-box */
    .triangle-clippath,
    .image-slideshow,
    .texts,
    .texts2,
    .register-btn,
    .blur,
    .time {
        display: none;
    }

    /* Adjust hero-box for mobile */
    .next-eve {
        position: relative;
        top: 0;
        left: 0;
        margin-top: -20px;
        font-size: 4px;
    }

    .hero-box {
        width: 100%;
        height: 300px;
        position: relative;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, #0a2271, #1f43b9);
    }

    /* Center the hero text and adjust its styling */
    .hero-text {
        position: relative;
        top: auto;
        margin: 40px auto;
        text-align: center;
        width: 90%;
        max-width: 500px;
        background: linear-gradient(90deg, #fbbf24, #fbbf24, #fbbf24);
        -webkit-background-clip: text;
        background-clip: text;
    }

    .hero-text p {
        position: relative;
        margin: 20px auto;
        text-align: center;
        color: #ffffff;
    }

    /* Adjust hero buttons */
    .hero-btn,
    .hero-btn2 {
        position: relative;
        margin: 20px auto;
        display: block;
        width: 80%;
        max-width: 200px;
    }

    .hero-btn2 {
        margin-left: auto;
        margin-top: 10px;
    }

    /* Center and adjust the register button */
    .register-btn {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        display: block;
        margin: 20px auto;
        /* Reduced margin to bring it closer to hero section */
        width: 80%;
        max-width: 250px;
        background: linear-gradient(90deg, #fbbf24, #fbbf24, #fbbf24);
        color: #1e40af;
    }

    /* Move up the upcoming event section */
    #upcoming-event {
        margin-top: 50px;
        /* Reduced from 500px to 50px */
        padding-top: 0;
        /* Ensure no extra padding pushes it down */
    }

    .line {
        position: relative;
        top: 17px;
        left: 0px;
        width: 150px;
        height: 3px;
        background: linear-gradient(90deg, #000000, #000000, #000000);
    }
}

/* Existing media query for max-width: 480px */
@media (max-width: 480px) {
    .register-btn {
        display: none;
    }

    /* Further adjustments for very small screens */
    .past-image {
        height: 350px;
        margin-left: -20;
        border-radius: 20px;
        flex-shrink: 0;
        width: 400px;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .hero-box {
        height: 400px;
        background: linear-gradient(180deg, #0a2271 50%, #19389c 70%, #1b389a 10%, #ffffff 100%);
    }

    .hero-text {
        margin: 20px auto;
        position: absolute;
        top: 20%;
        left: 4%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .hero-btn {
        padding: 8px 16px;
        height: 40px;
        font-size: 14px;
    }

    .hero-btn2 {
        
            padding: 8px 16px;
            height: 40px;
            font-size: 14px;
            border: 2px solid transparent;
            border-radius: 6px;
            background:
                linear-gradient(#fff, #ffffff) padding-box,
                /* Inner color */
                linear-gradient(180deg, #ffffff, #9cb1e9, #33377d) border-box;
            /* Border gradient */
            color: #2f57a0;
            font-weight: bold;
            cursor: pointer;
        

    }

    .register-btn {
        padding: 10px 20px;
        font-size: 14px;
        margin: 10px auto;
        /* Further reduced margin */
    }

    /* Ensure upcoming event section stays close */
    #upcoming-event {
        margin-top: 30px;
        /* Even closer for small screens */
    }
}

/* Toast Styles */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #333366;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 320px;
}

.toast.hidden {
    display: none;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-button {
    background-color: #fbbf24;
    color: #1e40af;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 10px;
    cursor: pointer;
    font-weight: bold;
}

.toast-button:hover {
    background-color: #f7ba1f;
}

.toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.toast-close:hover {
    color: #fbbf24;
}

/* From Uiverse.io by JohnnyCSilva */
.input-focus-effect:focus-within {
    box-shadow: 0 0 0 2px rgba(5, 50, 122, 0.5);
    border-color: #0b3374;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Base styles for .past-image (applies to all screens, including laptops) */
.past-image {
    height: 350px;
    display: block;
    margin-left: 0px;
    width: 400px;

    border-color: #f7ba1f;
    border-width: 4px;
    border-style: solid;
    border-radius: 6px;
    justify-content: center;
    align-self: center;
    align-self: center;
    display: flex;
    padding: 0;
    margin-top: 0px;
}

.past-container {
    margin-left: 25px;
}

/* Past container remains the same */
.past-container {
    position: relative;
    width: 400px;
    margin-top: -30px;
    height: 350px;
    overflow: hidden;
}

/* Past wrapper - fix invalid padding */
.past {
    display: flex;
    align-items: flex-start;
    padding: 0;
    /* Changed from -10px (invalid) to 0; adjust if needed */
    gap: 30px;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 20px;
}

/* Media query for mobile - override specifics, but padding is now inherited from base */
@media (max-width: 768px) {
    .past-image {
        width: 100%;
        /* Keeps mobile-specific width */
        height: auto;
        margin-left: 0;
        border-color: #f7ba1f;
        border-width: 4px;
        border-style: solid;
        border-radius: 6px;
        justify-content: center;
        align-self: center;
        align-self: center;
        display: flex;
        margin-top: 20px;

        /* Padding is already 30px from base; no need to repeat unless overriding */
    }

    .past {
        padding: 0;
        justify-content: center;
        align-self: center;
        align-self: center;
        display: flex;
        margin-top: 20px;
        /* Or set to 10px if you meant positive padding */
    }
}

@media (max-width: 480px) {
    .past-image {

        height: 350px;
        display: block;
        /* Note: fixed to -20px assuming that's what you meant */
        width: 400px;
        border-color: #f7ba1f;
        border-width: 4px;
        border-style: solid;
        border-radius: 6px;
        justify-content: center;
        align-self: center;
        align-self: center;
        display: flex;
        padding: 0;
        margin-top: 0px;
    }

    .past-container {

        margin-left: 10px;
        margin-right: 10px;

        /* Add padding for mobile */
    }

    .past-text {
        margin-top: 20px;
        padding-left: 15px;
        margin-left: 20px;
    }

}

.past {
    display: flex;
    align-items: flex-start;
    padding: 0;
    gap: 30px;
    flex-wrap: wrap;
    background-color: #ffffff;
    border-radius: 20px;
}

.past-container {
    position: relative;
    width: 400px;
    height: 350px;
    margin-top: -30px;
    overflow: hidden;
    border-radius: 20px;
}

.past-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.past-image.active {
    opacity: 1;
}

.past-text {
    flex: 1;
    padding: 0;
    text-align: left;
    margin-top: -30px;
    color: #1a1a1a;
    font-family: "Montserrat", sans-serif;
    font-weight: 100;
    font-size: 14px;
    line-height: 1.7;
}

.texts3 {
    font-size: 20px;
    color: #f7ba1f;
}

@media (min-width: 1429px) {
    .hero-box{
        height: 615px;
        width: 550px;
        position: block;
        background: linear-gradient(90deg, #0a2271, #1f43b9);
    }
    .triangle-clippath{
        height: 798px;
        width: 450px;
        position: block;
        margin-left: 500px;
        background: linear-gradient(90deg, #1e41b4, #0a2271);
    }

    .hero-btn{
        margin-top: 150px;
        height: 65px;
        width: 200px;
        font-size: 20px;
    }
    .hero-btn2{
        margin-top: 150px;
        margin-left: 250px;
        height: 65px;
        width: 200px;
        font-size: 20px;
    }
    .hero-text p{
        font-size: 18px;
        width: 500px;
    }
    .hero-text{
        font-size: 45px;
        margin-top: -10px;
    }
    .image-slideshow{
        margin-left: 200px;
        width: 400px;
        margin-top: 130px;
        height: 500px;
        display: flex;
    }
    .texts{
        margin-left: 830px;
        font-size: 20px;
    }
    .texts2{
        margin-left: 830px;
        font-size: 50px;
    }
    .time{
        margin-left: 830px;
        font-size: 20px;
    }
    .register-btn{
        margin-left: 940px;
        margin-top: 40px;
        font-size: 20px;
    }
    #upcoming-event {
        margin-top: 640px;
        /* Even closer for small screens */
    }
}

@media (min-width: 1600px) {
    #upcoming-event {
        margin-top: 730px;
        /* Even closer for small screens */
    }
    .hero-box{
        height: 700px;
        width: 550px;
        position: block;
        background: linear-gradient(90deg, #0a2271, #1f43b9);
    }
    .triangle-clippath{
        height: 882px;
        width: 480px;
        position: block;
        margin-left: 500px;
        background: linear-gradient(90deg, #1e41b4, #0a2271);
    }

    .hero-btn{
        margin-top: 180px;
        height: 80px;
        width: 200px;
        font-size: 20px;
    }
    .hero-btn2{
        margin-top: 180px;
        margin-left: 250px;
        height: 80px;
        width: 200px;
        font-size: 20px;
    }
    .hero-text p{
        font-size: 20px;
        width: 500px;
    }
    .hero-text{
        font-size: 50px;
        margin-top: -10px;
    }
    .image-slideshow{
        margin-left: 300px;
        width: 400px;
        margin-top: 130px;
        height: 500px;
        display: flex;
    }
    .texts{
        margin-left: 800px;
        font-size: 20px;
    }
    .texts2{
        margin-left: 800px;
        font-size: 60px;
    }
    .time{
        margin-left: 800px;
        margin-top: 5px;
        font-size: 20px;
    }
    .register-btn{
        margin-left: 910px;
        margin-top: 60px;
        font-size: 20px;
    }
}

@media (min-width: 1800px) {
    #upcoming-event {
        margin-top: 800px;
        /* Even closer for small screens */
    }
    .hero-box{
        height: 770px;
        width: 600px;
        position: block;
        background: linear-gradient(90deg, #0a2271, #1f43b9);
    }
    .triangle-clippath{
        height: 950px;
        width: 500px;
        position: block;
        margin-left: 600px;
        background: linear-gradient(90deg, #2044bc, #0a2271);
    }

    .hero-btn{
        margin-top: 200px;
        height: 85px;
        width: 220px;
        font-size: 26px;
    }
    .hero-btn2{
        margin-top: 200px;
        margin-left: 300px;
        height: 85px;
        width: 220px;
        font-size: 26px;
    }
    .hero-text p{
        font-size: 23px;
        width: 560px;
    }
    .hero-text{
        font-size: 55px;
        margin-top: 30px;
    }
    .image-slideshow{
        margin-left: 455px;
        width: 450px;
        margin-top: 195px;
        height: 550px;
        display: flex;
    }
    .texts{
        margin-left: 950px;
        font-size: 25px;
    }
    .texts2{
        margin-left: 950px;
        font-size: 66px;
    }
    .time{
        margin-left: 950px;
        margin-top: 10px;
        font-size: 22px;
    }
    .register-btn{
        margin-left: 1070px;
        margin-top: 70px;
        font-size: 22px;
        height: 75px;
        width: 270px;
    }
}
/* YouTube Videos Section */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        margin-bottom: 20px;
    }
    
    .video-container:last-child {
        margin-bottom: 0;
    }
}





