html,
body {
    width: 100%;
    height: auto;
    overflow-x: hidden;
    background: black;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

::-webkit-scrollbar {
    width: 0;
    /* Remove scrollbar space */
}

#canvas {
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(0, 0, 0);
    user-select: none;
}


#myButton {
    /* position: absolute; */
    padding: 10px;
    top: 70px;
    color: #fff;
    border: 2px solid aliceblue;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(255, 17, 17, 0);
    cursor: pointer;
    transition: box-shadow 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

#myButton:hover {
    background: white;
    color: black;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}


#ui-button {
    position: fixed;
    left: 50px;
    bottom: 0px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 10px;
    border: solid 2px;
    border-radius: 6px;
    outline: none;
    opacity: 1;
    transition: transform 0.1s cubic-bezier(0.09, 0.95, 0.14, 1.25), opacity 0.1s cubic-bezier(0.09, 0.95, 0.14, 1.25);
    display: none;

    &:before {
        content: attr(data-on);
    }

    &.off {
        opacity: 0.3;
        transform: translate(-2px, 2px);

        &:before {
            content: attr(data-off);
        }
    }

    &:hover {
        color: rgba(225, 205, 255, 0.6);
    }
}


button {
    font-size: 1em;

    @media only screen and (min-device-width : 375px) and (max-device-width : 812px) {
        font-size: 2em;
    }
}

/* .footer {
            padding-top: 10px;
            position: absolute;
            bottom: -100vh;
            z-index: 150;
            display: flex;
            left: 0;
            width: 100%;

        } */

.content {
    width: 100%;
}

.top {
    display: flex;
    justify-content: space-evenly;
}

.content .top .media-icons {
    display: flex;
}

.content .top .media-icons a {
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
    background: #f60fad;
}

.top .media-icons a:nth-child(1):hover {
    color: #f60fad;
    background: #fff;
}


.top .media-icons a:nth-child(2) {
    background: #4267B2;
}

.top .media-icons a:nth-child(2):hover {
    color: #4267B2;
    background: #fff;
}

.top .media-icons a:nth-child(3) {
    background: #1DA1F2;
}

.top .media-icons a:nth-child(3):hover {
    color: #1DA1F2;
    background: #fff;
}

.top .media-icons a:nth-child(4) {
    background: #0077B5;
}

.top .media-icons a:nth-child(4):hover {
    color: #0077B5;
    background: #fff;
}

@media only screen and (max-width: 768px) {

    /* Mobile styles */
    .footer {
        bottom: 0;
        bottom: -100vh;
    }

    .content {
        padding: 10px;
    }

    .top {
        flex-direction: column;
        align-items: center;
    }

    .logo-details img {
        margin-bottom: 10px;
    }

    .media-icons {
        margin-top: 10px;
    }

    .top .media-icons a {
        height: 30px;
        width: 30px;
        margin: 0 5px;
        font-size: 14px;
    }

    p {
        font-size: 0.8em;
    }
}

.logo {
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;

}

@media only screen and (min-width: 769px) {

    /* PC styles */
    /* .footer {
                bottom: -100vh;
            }*/
}

.myButton {
    font-size: 20px;
}

.events-page-container {
    display: flex;
    justify-content: center;
}

.event-container {
    width: fit-content;
    height: 80%;
    margin: 50px 0;
    padding: 20px;
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid #45586e;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.box-title {
    color: snow;
    font-family: Arial, Helvetica, sans-serif;
}

.eventname {
    color: snow;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;

}

.event-name {
    color: #ffddb2;
    font-family: Arial, Helvetica, sans-serif;


}

.toggle-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}

#section1 {
    width: 100vw;
    height: 98vh;
    position: relative;
    z-index: 999;
    color: #fff;
    font-family: Lato, sans-serif;
    /* margin-top: 630px; */
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    position: fixed;
    top: 0;
    z-index: 100000000000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 15px;
    width: 100%;
    border-radius: 30px;
}

.navbar>.nav-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
}

.navbar>.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 20px;
    backdrop-filter: blur(20px);
    border-radius: 50px;
}

.nav-links {
    font-size: 15px;
    margin: 10px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-family: Lato, sans-serif;
}

.nav-links:hover {
    color: #805ced;
    transition: all 0.2s ease;
}

.navbar>.nav-logo>.nav-img {
    width: 40px;
    margin-left: 10px;
}

.navbar>.nav-logo>.nav-text {
    font-size: 18px;
    cursor: default;
}

.navbar>.nav-links>.nav-btn {
    border: none;
    border-radius: 30px;
    width: 100px;
    border-width: 2px;
    font-size: 15px;
    border: 2px solid #7444ff;
    color: #fff;
    background: #ffffff40;
    cursor: pointer;
    padding: 8px;
    margin-left: 5px;
}

.navbar>.nav-links>.nav-btn:hover {
    background-color: #181717;
    transition: all .3s ease-in-out;
}

.navbar>.nav-links>.nav-btn>a {
    color: #fff;
    text-decoration: none;
    font-family: Lato, sans-serif;
}

@font-face {
    font-family: myfont;
    src: url(./ailerons/Ailerons-Typeface.otf);
}

.landing-page-content {
    text-align: center;
    padding: 20px;
    animation: fadeIn 2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90vh;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.landing-page-content h2 {
    font-size: 45px;
    margin: 20px;
    color: #fff;
    cursor: default;
    animation: slideIn 2s;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.landing-page-content h1 {
    font-size: 14vmin;
    font-family: myfont;
    font-weight: 400;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-shadow: 0 0 10px rgba(0, 0, 0, .7);
    color: #fff;
    outline: none;
    cursor: default;
    margin: 0;
    animation: zoomIn 2s;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sponsor-container {
    position: relative;
    margin: 10px 0;
}

.sponsors,
.golden-sponsors {
    font-size: 25px;
    font-weight: 700;
    cursor: pointer;
    margin: 10px 0;
    animation: fadeIn 2s 2s;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
    transition: all 0.3s ease;
}

.sponsors:hover,
.golden-sponsors:hover,
.sponsors:focus,
.golden-sponsors:focus {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.sponsor-logos {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.sponsor-container:hover .sponsor-logos,
.sponsors:focus+.sponsor-logos,
.golden-sponsors:focus+.sponsor-logos {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.sponsor-logo {
    width: 150px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    animation: fadeIn 2s 3s;
}

.btn {
    border: none;
    border-radius: 30px;
    width: 150px;
    font-size: 20px !important;
    color: #fff;
    background: #7444ff;
    cursor: pointer;
    padding: 10px;
    transition: all .2s ease-in-out;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background: #4627a4;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

.scroll-gif {
    position: absolute;
    bottom: 5%;
    text-align: center;
    transition: all .3s ease-in-out;
    animation: bounce 2s infinite;
}

.scroll-gif .gif {
    height: 80px;
    margin: -50px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-30px);
    }

    60% {
        transform: translateY(-15px);
    }
}

#section5 {
    width: 100vw;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: Lato, sans-serif;
    backdrop-filter: blur(5px);
    opacity: 0.9;
    height: fit-content;
}

@font-face {
    font-family: myfont;
    src: url(./ailerons/Ailerons-Typeface.otf);
}

/* .footer {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border-top-right-radius: 70px;
            border-top-left-radius: 70px;
            border-top: 2px solid #8eb3dd;
            backdrop-filter: blur(5%);
            background-color: rgba(133, 128, 128, 0); 
            font-family: myfont;
        } */
#footer-1 {
    font-family: myfont;
}

/* .footer-text>h1 {
            color: #fff;
            font-size: 4rem;
            font-family: Ailerons, Helvetica, Arial, sans-serif;
        }
        .footer-text {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 12px 50px;
        }
        .top {
            height: 25%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 30px;
            font-size: 20px;
        }
        .footer-logo {
            width: 100px;
            height: 100px;
        }
        .footer-text {
            margin: 0 20px;
        }

        .footer-text>p {
            color: #fff;
            font-size: 2rem;
            font-weight: 100;
            color: #d6d6d6;
            font-family: Gotu, sans-serif;
        }

        .footer-social-icons {
            font-size: 35px;
            margin-right: 12px;
            margin-top: 20px;
            color: #121316;
            cursor: pointer;
            color: #fff;
            position: relative;
            text-decoration: none;
        }

        .description-event {
            text-align: center;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            max-width: 1000px;
            margin-left: 30px;
            margin-right: 30px;
        }
        .mid {
            display: flex;
            justify-content: space-evenly;
            width: 90vw;
            margin-left: 0;
            margin-right: 0;
        }

        .mid-footer-titles {
            font-size: 25px;
            margin-top: 60px;
        }

        .connection {
            width: 33%;
            padding: 0 60px;
            color: #fff;
        }

        .mail-box {
            margin-top: 30px;
            display: flex;
        }

        .mail {
            height: 40px;
            width: 70%;
            background: transparent;
            padding-left: 0.5rem;
            border: none;
            font-size: 18px;
            color: #fff;
            font-weight: bold;
            background-color: #ffffff;
            font-family: Arial, Helvetica, sans-serif;
            border-radius: 6px;

        }

        .send-mail {
            background-color: transparent;
            border: .1rem solid rgba(255, 255, 255, 0);
            cursor: pointer;
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            border: 2px solid #805ced;
            padding: 5px 15px;
            border-radius: 20px;
            margin-top: 5px;
            margin-left: 10px;
        }

        /* .send-mail:hover {
            background-color:#524d4d;
        }

        .address{
            max-width: 600px;
        } */
/*   .sponsors {
            width:33%;
            padding: 0 0 18px 18px;
        } */
/* Footer Tagline Styling */
/* #footer-1, .footer-tagline {
    font-family: 'Orbitron', sans-serif;  
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px; 
    text-align: center;
    margin-bottom: 20px; 
    position: relative;
    z-index: 1;
    animation: glow 2s ease-in-out infinite alternate; 
} */

/* Glowing Text Animation */
@keyframes glow {
    0% {
        text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff;
    }

    50% {
        text-shadow: 0 0 20px #00ff00, 0 0 30px #00ff00;
    }

    100% {
        text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    }
}

/* Hover Effect */
/* #footer-1:hover, .footer-tagline:hover {
    text-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
    transition: all 0.3s ease-in-out;
} */



/* .bottom {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 15%;
            color: #fff;
            margin: 15px;
        }

        .sponsors-img {
            margin: 10px 10px 0;
            height: 280px;
        }

        @media (max-width: 985px)
        {
            .mid-footer-titles {
                font-size: 20px;
                margin-top: 60px;
            }
        }

        @media (max-width: 1225px)
        {
            .address, .connection {
                width: 90%;
                padding: 0 18px 18px;
            }
        }

        @media screen and (max-width: 899px) {
            .mail-box {
                display: flex;
                flex-direction: column;
            }
        }


        .designers>a {
            color: silver;
            margin: 3px;
        }

        .bottom>.designers {
            text-align: center;
            font-size: 18px;
            margin-top: 10px;
            color: #a5a5a5;
            position: relative;
        }

        .disclaimer{
            color: #a5a5a5;
            text-align: center;
            padding: 0;
        } */

@media(max-width: 769px) {

    .navbar>.nav-logo>.nav-text {
        display: none;
        font-size: 18px;
        cursor: default;
    }
}

@media (max-width:600px) {
    .landing-page-content>h2 {
        font-size: 24px;
    }

    .landing-page-content>.sponsors {
        width: 400px;
        margin-top: 20px;
        font-size: 20px;
        text-align: center;
        margin: 5px 10px;
    }

    .landing-page-content>.golden-sponsors {
        font-size: 20px;
    }

    .event-container {
        flex-direction: column;
    }

    .navbar>.nav-links>.nav-btn {
        width: 90px;
    }
}

@media (max-width:1000px) {
    .mid {
        flex-direction: column;
        align-items: center;
    }

    .bottom>.designers {
        font-size: 15px;
    }
}



#section2 {
    width: 100vw;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: sans-serif;
}

.card {
    width: 320px;
    height: 430px;
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid #45586e;
    color: #fff;
    font: 20px;
    margin-bottom: 30px;
}

.image-holder {
    text-align: center;
    padding-top: 30px;
}

.card>.about-card-title {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: #FFBB5C;
}

.card>.about-card-text {
    margin: auto;
    padding: 1px 40px;
    font-size: 16px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 985px) {
    .card>.about-card-text {
        padding: 18px;
        font-size: 16px;
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
    }

    @media (max-width: 985px) {
        .section-title {
            font-size: 50px;
            margin-bottom: 30px;
        }
    }


    @media screen and (max-width: 985px) {
        .card {
            width: 100%;
            height: auto;
            flex: 1 1 100%;

        }

        .image-holder img {
            max-width: 100%;
            height: auto;
        }

        .about-card-text {
            white-space: normal;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 10px;
        }
    }

}

/* .card-models {
            width: 180px;
            height: 180px;
        }
        .row {
            display: flex;
            justify-content: space-evenly;
            padding-top: 90px;
        }
        @media (max-width: 985px)
        {

.row {
    flex-direction: column;
    justify-content: center;
    padding-top: 10px;
}
        }
        @media (max-width: 985px)
        {
.card {
    width: 300px;
    height: 380px;
    align-self: center;
}
        }

      

@media (max-width: 985px)
{
.card-models {
    width: 160px;
    height: 160px;
}
}
@media (max-width: 985px)
{
.card>p {
    margin: auto;
    padding-top: 20px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
}
}


@media (max-width: 985px)
{
.card {
    width: 300px;
    height: 380px;
    align-self: center;
}
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  .question {
    display: flex;
    justify-content: space-between;
    align-items: left;
    backdrop-filter: blur(20px);
    height: 56px;
    padding: 5px 40px 5px 60px;
    border: 2px solid #45586e;
    border-radius: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.text {
    width: 90%;
    align-self: center;
    font-size: 18px;
    margin-left: 20px;
    text-align: left;
    color: snow;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 8px solid #44dbff;
    align-self: center;
    background-color: #121316;
}
.point {
    display: flex;
    justify-content: space-beetween;
    align-item: center;
    width: 90%;
}
#plus_btn {
    align-self: center;
    display: block;
    cursor: pointer;
}
.expand {
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #0672c1;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    position: relative;
}
.faq-container {
    margin: 0 180px;
    text-align: center;
}
.faq-answer {
    box-sizing: border-box;
    margin: 0 10px 10px 100px;
    padding: 15px;
    font-size: 18px;
    border-left: 7px solid #45dbff;
    color: snow;
    font-family: Arial, Helvetica, sans-serif;
}
.answer {
    backdrop-filter: blur(20px);
    border-radius: 20px;
    text-align: left;
}
.accordion-cont {
    margin: 25px 100px;
}
@media (max-width: 985px)
{
.question {
    height: 40px;
    padding: 10px;
    border-radius: 20px;
}
}
@media (max-width: 985px)
{
.text {
    font-size: 15px;
    margin-left: 10px;
    text-align: left;
    width: 90%;
}
}
@media (max-width: 985px)
{
.circle {
    width: 10px;
    height: 10px;
    border: 8px solid #44ffc2;
}
}
@media (max-width: 985px)
{
.question {
    height: 40px;
    padding: 10px;
    border-radius: 20px;
}
}
@media (max-width: 985px)
{
.faq-answer {
    box-sizing: border-box;
    margin: 0 10px 10px 20px;
    padding: 15px;
    font-size: 16px;
    border-left: 7px solid #46ffc2;
}
}
@media (max-width: 985px)
{
.accordion-cont {
    margin: 10px 10px 20px;
}
}
@media (max-width: 985px)
{
.navbar {
    backdrop-filter: blur(20px);
    margin-top: 10px;
}
}
.mail-box {
    margin-top: 30px;
    border-bottom: 2px solid white;
    position: relative;
}
.send-mail {
    background-color: transparent;
    border: 0.1rem solid rgba(255, 255, 255, 0);
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding: 0.5rem 1rem;
}
.name-student
{
    font-weight: bold;
    color: snow;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: wavy;
} */


/* home */

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Poppins:wght@300;400;600;700;800&display=swap');

* {
    /* margin: 0; */
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4f46e5;
    --secondary: #7c3aed;
    --accent: #f472b6;
    --dark: #0f172a;
    --light: #f1f5f9;
}

body {
    min-height: 100vh;
    background: var(--dark);
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(45deg, #0f172a, #1e1b4b);
}

.particle {
    position: fixed;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    pointer-events: none;
    transition: 0.3s;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.college-name {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: slideDown 1s forwards;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(244, 114, 182, 0.5);
}

.fest-title {
    font-family: 'Audiowide', cursive;
    font-size: clamp(3rem, 10vw, 8rem);
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 1rem 0;
    opacity: 0;
    animation: zoomIn 1s 0.5s forwards;
    text-shadow: 0 0 30px rgba(79, 70, 229, 0.3);
}

.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}

.date-badge i {
    color: var(--accent);
}

.our-sponsors {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--secondary-light), var(--primary-dark));
    color: white;
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--accent);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;

}

/* .section-title {
            font-size: 100px;
            font-weight: 400;
            text-align: center;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-shadow: 0 0 10px rgba(0,0,0,.7);
            color: #fff;
            outline: none;
            cursor: default;
            font-family: myfont;
            position: relative;
        } */
.sponsors-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeIn 1s 1s forwards;
}

.sponsor-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    max-width: 300px;
    text-align: center;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent);
}

.sponsor-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sponsor-logo {
    max-width: 150px;
    margin: 0 auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    opacity: 1;
    transform: scale(1.1);
}

.action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeIn 1s 2s forwards;
}

.action-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    animation: fadeIn 1s 3s forwards, bounce 2s infinite;
}

@media (max-width: 768px) {
    .sponsors-container {
        flex-direction: column;
        align-items: center;
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent);
    animation: bounce 2s infinite;
    opacity: 0;
    animation: fadeIn 1s 2.5s forwards, bounce 2s 2.5s infinite;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.hero-action-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeIn 1s 2s forwards;
}


@media (min-width: 769px) {
    .hero-action-buttons {
        display: none;
    }

    .our-sponsors .action-buttons {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hero-action-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        animation: fadeIn 1s 2s forwards;
    }

    .our-sponsors .action-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .sponsors-container {
        flex-direction: column;
        align-items: center;
        
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .our-sponsors {
        margin-bottom: 3rem;
        padding: -15;
    }

    .action-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media(max-width: 960px){
    .our-sponsors{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}
/* Tablet View (601px to 960px) */
@media (max-width: 960px) {
    .our-sponsors {
        padding: 3rem 1rem;
        margin: 1rem 0;
    }

    .sponsors-container {
        gap: 2rem;
        padding: 0;
        margin-bottom: 2rem;
    }

    .sponsor-card {
        width: calc(50% - 2rem);  /* Two cards per row with gap */
        max-width: 280px;
        min-height: 180px;
        margin: 0;
        padding: 1.25rem;
    }

    .sponsor-logo {
        max-width: 120px;
        margin: 0.5rem auto;
    }

    .action-buttons {
        padding: 0 2rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .action-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Mobile View (up to 600px) */
@media (max-width: 600px) {
    .our-sponsors {
        padding: 2rem 0.5rem;
        margin: 0;
    }

    .section-title {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .sponsors-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .sponsor-card {
        width: 100%;
        max-width: 260px;
        min-height: 160px;
        margin: 0 auto;
        padding: 1rem;
    }

    .sponsor-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .sponsor-logo {
        max-width: 100px;
    }

    .action-buttons {
        flex-direction: column;
        padding: 0 1rem;
        margin-top: 1rem;
        margin-bottom: 2rem;
        gap: 0.75rem;
    }

    .action-btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .scroll-indicator {
        bottom: 0.5rem;
    }

    /* Prevent cards from sticking together */
    .sponsor-card + .sponsor-card {
        margin-top: 0.5rem;
    }

    /* Fix any overflow issues */
    .our-sponsors {
        overflow-x: hidden;
    }

    /* Ensure proper spacing between sections */
    .our-sponsors + section {
        margin-top: 2rem;
    }
}

/* Larger phones and small tablets (landscape) */
@media (min-width: 601px) and (max-width: 768px) {
    .sponsors-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .sponsor-card {
        width: calc(50% - 1.5rem);  /* Two cards per row */
        margin: 0;
    }
}

/* Fix for devices in landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
    .our-sponsors {
        padding: 1.5rem 1rem;
    }

    .sponsors-container {
        gap: 1rem;
    }

    .sponsor-card {
        min-height: 140px;
    }

    .scroll-indicator {
        display: none;  /* Hide scroll indicator in landscape */
    }
}
/* event section */
.events-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 1rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 255, 255, 0.2);
    }

    to {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(255, 255, 255, 0.3);
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.department-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    height: 40rem;
    overflow: scroll;
}

.department-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.department-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.department-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, transparent);
    animation: borderFlow 2s infinite;
}

@keyframes borderFlow {
    0% {
        left: 0;
        width: 0;
    }

    50% {
        width: 50%;
    }

    100% {
        left: 100%;
        width: 0;
    }
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.event-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.event-dot {
    font-size: 1.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.event-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.event-link:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.department-tag {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Glowing borders for sections */
.department-section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    /* background: linear-gradient(45deg, #00ffff, #ff00ff, #00ffff); */
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.department-section:hover::before {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .department-section {
        padding: 1.5rem;
    }

    .department-title {
        font-size: 1.5rem;
    }
}

/* footer */
.footer {
    /* position: relative; */
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem 2rem;
    color: #fff;
    font-family: 'Segoe UI', system-ui, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
} 
.club-name {
    font-weight: bold;
    background-image: linear-gradient(45deg, #e55c88, #532a5c, #3fb8ac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    text-decoration: none !important;
}

.footer .top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-text {
    text-align: center;
}

.footer-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #00ffff, #fff, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.description-event {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.mid-footer-titles {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.mid-footer-content {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.mail-box {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.mail {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.mail:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.send-mail {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    border: none;
    background: linear-gradient(45deg, #00ffff, #0088ff);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-mail:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.footer-social-icon {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-social-icons {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social-icons:hover {
    color: #00ffff;
    transform: translateY(-3px);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.designers {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.name-student {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.name-student:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.disclaimer {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1rem 0.5rem; /* Reduce bottom padding */
    }

    .footer .top {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem; /* Reduce large space */
    }

    .footer-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .mid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


/* card */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #00ffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 255, 255, 0.6);
}

#section2 {
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #00e5ff;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0, 229, 255, 0.7);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.card {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    padding-bottom: 2rem;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 229, 255, 0.5);
}

.image-holder {
    width: 100%;
    height: 180px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
}

.image-holder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.card:hover .image-holder img {
    transform: scale(1.1) rotate(2deg);
}

.about-card-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #00e5ff;
    text-shadow: 0 2px 10px rgba(0, 229, 255, 0.5);
}

.about-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(240, 240, 240, 0.9);
    padding: 0 0.5rem;
    padding-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #section2 {
        padding: 3rem 1rem;
        gap: 10rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .card-container {
        grid-template-columns: 1fr;
    }

    .card {
        margin-bottom: 2rem;
    }

    #section2 {
        margin-top: 10rem;
    }
}

