* {
    margin         : 0;
    padding        : 0;
    box-sizing     : border-box;
    list-style     : none;
    text-decoration: none;
}

img {
    -webkit-user-drag: none;
    /* Safari and Chrome */
    -khtml-user-drag : none;
    /* Konqueror HTML */
    -moz-user-drag   : none;
    /* Firefox (older versions) */
    -o-user-drag     : none;
}

body {
    background-color     : var(--bg-gray);
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select  : none;
    /* Safari */
    -khtml-user-select   : none;
    /* Konqueror HTML */
    -moz-user-select     : none;
    /* Firefox */
    -ms-user-select      : none;
    /* Internet Explorer/Edge */
    user-select          : none;
    /* Non-prefixed version, currently supported by all modern browsers */
}


:root {
    --primary-color     : #8000F9;
    --secondary-color   : #C1FF00;
    --white-color       : #FFFFFF;
    --black-color       : #000000;
    --text-dark         : var(--black-color);
    --text-gray         : #767676;
    --text-light        : var(--white-color);
    --text-purple-light : #80728E;
    --text-purple-medium: #BFACD2;
    --text-purple-dark  : #6D5881;
    --bg-gray           : #F2F2F2;
    --bg-light          : var(--white-color);
    --bg-dark           : #0D001A;
    --bg-purple         : #19052D;
    --bg-purple-medium  : #120025;
    --bg-purple-light   : #2A054D;
    --border            : 1px solid #EBEBEB;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-gray {
    background-color: var(--bg-gray);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.btn {
    border-radius: 90px;
    padding      : 8px 14px;
    border       : none;
    cursor       : pointer;
    font-family  : 'Geist-SemiBold';
    font-size    : 16px;
    font-weight  : 600;
}

.btn-primary {
    background-color: var(--primary-color);
    color           : var(--text-light);
}

.btn-light {
    background-color: var(--bg-light);
    color           : var(--text-dark);
}

.btn-dark {
    background-color: var(--bg-dark);
    color           : var(--text-light);
}

.text-dark {
    color: var(--text-dark);
}

.text-light {
    color: var(--text-light);
}

.title {
    display        : flex;
    align-items    : center;
    justify-content: center;
    gap            : 10px;
    font-family    : 'DMMono-Medium';
    ;
}

.title h5 {
    font-size  : 14px;
    font-weight: 500;
}

.title #box {
    width           : 9px;
    height          : 9px;
    background-color: var(--secondary-color);
}

#hero h1 {
    font-size  : 42px;
    font-weight: 600;
    font-family: 'Avalance-SemiBold';
}

#hero h3 {
    font-size  : 20px;
    font-family: 'Geist-Regular';
    font-weight: 400;
}

#hero {
    padding       : 20px;
    border        : var(--border);
    display       : flex;
    flex-direction: column;
}

#header {
    background-color: var(--bg-light);
    display         : flex;
    justify-content : space-between;
    align-items     : center;
    border-bottom   : var(--border);
    padding         : 0px 25px;
}

#header #logo img {
    width: 120px;
}

#header nav ul {
    display: flex;
}

#header nav ul li {
    border       : var(--border);
    border-bottom: none;
    padding      : 0;
    position     : relative;
}

#header nav ul li a {
    display        : flex;
    align-items    : center;
    justify-content: center;
    padding        : 15px 20px;
    position       : relative;
}

#header nav ul li a img {
    transition: filter 0.3s ease;
}

#header nav ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(98%) saturate(6766%) hue-rotate(271deg) brightness(101%) contrast(107%);
}

#header nav ul li span {
    position        : absolute;
    bottom          : -45px;
    left            : 50%;
    transform       : translateX(-50%);
    background-color: var(--primary-color);
    color           : var(--white-color);
    padding         : 8px 16px;
    border-radius   : 90px;
    font-family     : 'Geist-Medium';
    font-size       : 14px;
    white-space     : nowrap;
    opacity         : 0;
    visibility      : hidden;
    transition      : opacity 0.3s ease, visibility 0.3s ease, bottom 0.3s ease;
    z-index         : 10;
}

#header nav ul li span::before {
    content         : '';
    position        : absolute;
    top             : -10px;
    left            : 50%;
    transform       : translateX(-50%);
    width           : 5px;
    height          : 5px;
    background-color: var(--primary-color);
    border-radius   : 50%;
}

#header nav ul li a:hover span {
    opacity   : 1;
    visibility: visible;
    bottom    : -50px;
}

/* Hamburger Menu (Hidden by default, shown on mobile) */
.hamburger-menu {
    display         : none;
    flex-direction  : column;
    gap             : 5px;
    background      : none;
    border          : none;
    cursor          : pointer;
    padding         : 8px;
    z-index         : 1001;
}

.hamburger-menu span {
    width           : 25px;
    height          : 3px;
    background-color: var(--primary-color);
    border-radius   : 2px;
    transition      : all 0.3s ease;
}

/* Mobile Side Menu Overlay */
.mobile-menu-overlay {
    position        : fixed;
    top             : 0;
    left            : 0;
    width           : 100%;
    height          : 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index         : 1001;
    opacity         : 0;
    visibility      : hidden;
    transition      : opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity   : 1;
    visibility: visible;
}

/* Mobile Side Menu */
.mobile-side-menu {
    position        : fixed;
    top             : 0;
    left            : -100%;
    width           : 300px;
    max-width       : 85%;
    height          : 100%;
    background-color: var(--bg-light);
    z-index         : 1002;
    transition      : left 0.3s ease;
    display         : flex;
    flex-direction  : column;
    overflow-y      : auto;
}

.mobile-side-menu.active {
    left: 0;
}

.mobile-menu-header {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 20px;
    border-bottom  : var(--border);
}

.mobile-menu-logo img {
    width: 100px;
}

.close-menu-btn {
    background   : none;
    border       : none;
    font-size    : 28px;
    cursor       : pointer;
    color        : var(--text-dark);
    width        : 40px;
    height       : 40px;
    display      : flex;
    align-items  : center;
    justify-content: center;
    border-radius: 50%;
    transition   : background-color 0.2s ease;
}

.close-menu-btn:hover {
    background-color: var(--bg-gray);
}

.mobile-menu-nav {
    flex  : 1;
    padding: 10px 0;
}

.mobile-menu-nav ul {
    list-style: none;
}

.mobile-menu-nav ul li {
    border-bottom: var(--border);
}

.mobile-menu-nav ul li a {
    display        : flex;
    align-items    : center;
    gap            : 15px;
    padding        : 18px 20px;
    text-decoration: none;
    color          : var(--text-dark);
    font-family    : 'Geist-Medium';
    font-size      : 16px;
    transition     : background-color 0.2s ease;
}

.mobile-menu-nav ul li a:hover {
    background-color: var(--bg-gray);
}

.mobile-menu-nav ul li a img {
    width : 24px;
    height: 24px;
}

.mobile-menu-cta {
    padding      : 20px;
    border-top   : var(--border);
}

.mobile-menu-cta .btn {
    width        : 100%;
    text-align   : center;
    display      : block;
    padding      : 12px 20px;
}

#hero-content {
    flex            : 1;
    background-color: var(--bg-light);
    display         : flex;
    flex-direction  : column;
    position        : relative;
}

#hero-content #content {
    display        : flex;
    align-items    : stretch;
    justify-content: space-between;
    position       : relative;
    flex           : 1;
    padding-top    : 20px;
}

#hero-content #content #content-box {
    padding         : 40px;
    display         : flex;
    flex-direction  : column;
    align-items     : flex-start;
    justify-content : center;
    gap             : 20px;
    background-color: var(--bg-light);
}

#hero-content #content #content-box h1 {
    line-height: 1.2;
    color      : var(--text-dark);
    margin     : 0;
}

#hero-content #content #content-box h3 {
    line-height: 1.6;
    color      : var(--text-gray);
    margin     : 0;
}

#hero-content #content #content-box .btn {
    display    : inline-flex;
    align-items: center;
    gap        : 15px;
    align-self : flex-start;
    padding    : 15px 25px;
    transition : all 0.2s ease-in-out;
}

#hero-content #content #content-box .btn:hover {
    box-shadow: -2px 4px 0px #000000;
    transform : translate(5px, -2px);
}


#hero-content #content #cards-container img {
    width  : 630px;
    height : auto;
    display: block;
}

#hero-content #hero-image {
    margin-top: auto;
    width     : 100%;
    height    : 100%;
    overflow  : hidden;
}

#hero-content #hero-image img {
    width          : 100%;
    height         : 100%;
    object-fit     : cover;
    object-position: center;
    display        : block;
    opacity        : 0.3;
}

#about-event,
#panel-members,
#sponsors,
#founder {
    padding        : 70px 20px;
    color          : var(--text-light);
    display        : flex;
    justify-content: center;
    align-items    : center;
    flex-direction : column;
    text-align     : center;
    gap            : 20px;
}

#about-event h2,
#panel-members h2,
#sponsors h2,
#founder h2,
#campus-location h2,
#partner-with-us h2,
.team-hero-text h2 {
    font-size  : 28px;
    font-weight: 500;
    font-family: 'Avalance-Medium';
}

#about-event h4,
#panel-members h4,
#sponsors h4,
#founder h4,
#campus-location h4,
#partner-with-us h4,
.team-hero-text h4 {
    font-size  : 18px;
    font-weight: 500;
    color      : var(--text-purple-light);
    font-family: 'Geist-Medium';
}

#about-event .btn,
#panel-members .btn,
#sponsors .btn,
#campus-location .btn,
#partner-with-us .btn,
#about-content .btn,
.contact-form .btn,
.startup-right .btn,
.team-hero-text .btn,
#proceedBtn,
#clearBtn,
.checkout-btn {
    display    : inline-flex;
    align-items: center;
    gap        : 15px;
    padding    : 15px 25px;
    transition : all 0.2s ease-in-out;
    margin-top : 10px;
}

#about-event .btn:hover,
#panel-members .btn:hover,
#sponsors .btn:hover,
#campus-location .btn:hover,
#partner-with-us .btn:hover,
#about-content .btn:hover,
.contact-form .btn:hover,
.team-hero-text .btn:hover,
#proceedBtn:hover,
#clearBtn:hover {
    box-shadow: -2px 4px 0px #000000;
    transform : translate(5px, -2px);
}

#about-event .countdown {
    display   : flex;
    gap       : 14px;
    margin-top: 10px;
}

#about-event .time-box {
    background     : var(--bg-purple);
    border-radius  : 12px;
    width          : 75px;
    height         : 72px;
    padding        : 18px 10px;
    display        : flex;
    align-items    : end;
    justify-content: center;
    gap            : 5px;
}

#about-event .time-value {
    font-size  : 30px;
    color      : var(--text-light);
    font-family: 'DMMono-Medium';
    font-weight: 500;
}

#about-event .time-label {
    font-size    : 20px;
    color        : var(--text-purple-dark);
    font-family  : 'DMMono-Medium';
    font-weight  : 500;
    margin-bottom: 2.5px;
}

#about-event .separator {
    font-size  : 22px;
    color      : var(--text-purple-dark);
    font-weight: 600;
    margin-top : 18px;
}

#event-timeline {
    padding         : 70px 0;
    background-color: var(--bg-dark);
    color           : var(--text-light);
    overflow        : hidden;
}

.timeline-header {
    padding   : 0 40px 40px 40px;
    text-align: left;
}

.timeline-header .title {
    justify-content: flex-start;
}

.timeline-header h2 {
    margin-top : 20px;
    font-size  : 28px;
    font-family: 'Avalance-Medium';
    font-weight: 500;
}

.timeline-header h4 {
    margin-top : 15px;
    font-size  : 18px;
    font-weight: 500;
    color      : var(--text-purple-light);
    font-family: 'Geist-Medium';
}

#timeline-wrapper {
    position: relative;
    padding : 0;
}

#scrollbar-container {
    padding      : 0 60px;
    margin-bottom: 30px;
}

#event-timeline #scrollbar {
    background-color: var(--bg-purple);
    width           : 100%;
    height          : 60px;
    border-radius   : 100px;
    position        : relative;
    overflow        : visible;
}

#event-timeline #fill {
    position        : absolute;
    left            : 0;
    top             : 0;
    height          : 100%;
    width           : 0%;
    background-color: var(--secondary-color);
    border-radius   : 100px;
    z-index         : 1;
}

#coin {
    position      : absolute;
    top           : 50%;
    left          : 0%;
    transform     : translate(-50%, -50%);
    width         : 80px;
    height        : 80px;
    z-index       : 10;
    pointer-events: none;
}

#coin img {
    width  : 100%;
    height : 100%;
    display: block;
}

#horizontal-scroll-container {
    display        : flex;
    width          : 100%;
    gap            : 40px;
    padding        : 0 60px;
    overflow-x     : auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

#horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}

.phase-panel {
    flex           : 0 0 calc(33.333% - 26.67px);
    padding        : 0;
    position       : relative;
    display        : flex;
    flex-direction : column;
    align-items    : flex-start;
    justify-content: flex-start;
    min-width      : 1500px;
}

.phase-panel h2 {
    font-size  : 48px;
    font-weight: 700;
    color      : var(--text-light);
}

.phase-button {
    padding      : 15px 40px;
    border-radius: 50px;
    font-size    : 18px;
    font-weight  : 600;
    color        : var(--text-light);
    display      : inline-block;
}

.phase-panel p {
    font-size  : 16px;
    line-height: 1.8;
    color      : var(--text-light);
    max-width  : 500px;
}


.phase-content {
    display       : flex;
    flex-direction: column;
    gap           : 20px;
    width         : 100%;
    height        : 100%;
}

.phase-left {
    display        : flex;
    flex-direction : row;
    justify-content: flex-start;
    gap            : 20px;
    width          : 100%;
}

.event-desc {
    display: none;
}


.phase-desc {
    color: var(--text-light);
}

.event-item {
    display    : flex;
    gap        : 15px;
    align-items: flex-start;
    text-align : left;
}

.event-card {
    display        : flex;
    gap            : 20px;
    align-items    : center;
    text-align     : left;
    border-radius  : 16px;
    padding        : 24px 28px;
    backdrop-filter: blur(10px);
    transition     : all 0.3s ease;
    flex           : 0 0 calc(33.333% - 13.33px);
    min-width      : calc(33.333% - 13.33px);
}

.event-icon {
    width          : 56px;
    height         : 56px;
    border-radius  : 12px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    flex-shrink    : 0;
}

.event-icon img {
    width : 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.event-details h3 {
    font-size  : 16px;
    font-weight: 400;
    margin     : 0 0 10px 0;
    color      : var(--text-light);
    line-height: 1.3;
    font-family: 'Geist-Medium' !important;
}

.event-details h3 strong{
    font-weight: 600;
    font-size: 20px;
}

.event-details p {
    font-size  : 15px;
    margin     : 0;
    color      : var(--text-purple-medium);
    font-weight: 500;
    font-family: 'DMMono-Medium' !important;
}


#panel-members {
    padding         : 70px 20px;
    background-color: var(--bg-dark);
    color           : var(--text-light);
    display         : flex;
    justify-content : center;
    align-items     : center;
    flex-direction  : column;
    text-align      : center;
    gap             : 20px;
}

#panel-members #members-container {
    display        : flex;
    gap            : 30px;
    margin-top     : 40px;
    justify-content: center;
    align-items    : flex-start;
    text-align     : left;
}

#panel-members #members-container .member-card {
    display       : flex;
    flex-direction: column;
    gap           : 15px;
    align-items   : center;
}

#panel-members #members-container .member-card .member-photo {
    width        : 280px;
    height       : 280px;
    object-fit   : cover;
    object-position: center;
    border-radius: 8px;
    display      : block;
}


#panel-members #members-container h3 {
    font-family: 'Geist-Medium';
    font-size  : 18px;
    font-weight: 500;
}

#panel-members #members-container p {
    font-family: 'Geist-Medium';
    font-size  : 14px;
    font-weight: 500;
    color      : var(--text-purple-light);
}


#sponsors #sponsors-container {
    position  : relative;
    overflow  : hidden;
    width     : 100%;
    margin-top: 40px;
    padding   : 10px 0;
}

#sponsors #sponsors-container::before,
#sponsors #sponsors-container::after {
    content       : "";
    position      : absolute;
    top           : 0;
    width         : 120px;
    height        : 100%;
    z-index       : 2;
    pointer-events: none;
}

#sponsors #sponsors-container::before {
    left      : 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, rgba(13, 0, 26, 0) 100%);
}

#sponsors #sponsors-container::after {
    right     : 0;
    background: linear-gradient(270deg, var(--bg-dark) 0%, rgba(13, 0, 26, 0) 100%);
}

#sponsors #sponsors-container .carousel-track {
    display       : flex;
    flex-direction: row;
    align-items   : center;
    width         : max-content;
    white-space   : nowrap;
    animation     : sponsor-scroll 22s linear infinite;
}

#sponsors #sponsors-container:hover .carousel-track {
    animation-play-state: paused;
}

#sponsors #sponsors-container .sponsor-card {
    flex            : 0 0 auto;
    width           : 250px;
    height          : 173px;
    background-color: #1A052F;
    display         : flex;
    align-items     : center;
    justify-content : flex-start;
    flex-direction  : column;
    gap             : 8px;
    padding         : 20px;
}

#sponsors #sponsors-container .sponsor-card:hover {
    background-color: var(--bg-purple-light);
}

#sponsors #sponsors-container .sponsor-card img {
    max-width : 70%;
    height    : 80px;
    object-fit: contain;
}

#sponsors #sponsors-container .sponsor-card p {
    font-size  : 18px;
    font-weight: 500;
    font-family: 'Geist-Medium';
    color      : var(--text-purple-light);
    margin-top : auto;
}

@keyframes sponsor-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

#founder #founder-container {
    display        : flex;
    align-items    : center;
    justify-content: center;
    height         : 460px;
    margin-top     : 40px;
}

#founder #founder-container .content {
    padding         : 50px;
    text-align      : left;
    display         : flex;
    flex-direction  : column;
    gap             : 20px;
    width           : 50%;
    background-color: var(--bg-purple-medium);
    border-radius   : 20px 0 0 20px;
    width           : 610px;
    height          : 460px;

}

#founder #founder-container .content p {
    font-family: 'Geist-Medium';
    font-size  : 18px;
    font-weight: 500;
}

#founder #founder-container .content h4 {
    font-family: 'Geist-SemiBold';
    font-size  : 18px;
    font-weight: 600;
    color      : var(--text-light);
}

#founder #founder-container .content #presidentTitle {
    font-family: 'Geist-Regular';
    font-size  : 14px;
    font-weight: 400;
    color      : var(--text-purple-light);
}

#founder #founder-container .content img {
    width        : 25px;
    height       : 25px;
    margin-bottom: 20px;
    border-radius: 0;
}

#founder #founder-container img {
    width        : 610px;
    height       : 460px;
    border-radius: 0 20px 20px 0;
}

#campus-location {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    text-align     : left;
    padding-top    : 30px;
}

#campus-location .content {
    padding-left  : 70px;
    display       : flex;
    flex-direction: column;
    gap           : 10px;
}

#campus-location .title {
    justify-content: flex-start;
}

#campus-location .title span {
    background-color: var(--primary-color);
}

#campus-location #campus-img {
    width : 800px;
    height: auto;
}

#partner-with-us {
    background-image   : url(../images/partnerwithus.png);
    background-size    : cover;
    height             : 300px;
    background-position: center;
    background-repeat  : no-repeat;
    display            : flex;
    align-items        : center;
    justify-content    : space-between;
    padding            : 0 80px 0 70px;
}

#partner-with-us .content {
    color         : var(--text-light);
    max-width     : 500px;
    display       : flex;
    flex-direction: column;
    gap           : 15px;
}

#partner-with-us h4 {
    color: var(--text-light);
}

#footer .content {
    padding         : 40px 20px 0 20px;
    background-color: var(--bg-gray);
    display         : flex;
    flex-direction  : column;
    justify-content : space-between;
    align-items     : center;
}

#footer .top {
    width          : 100%;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    padding        : 30px;
}

#footer .top nav ul {
    display    : flex;
    gap        : 20px;
    font-family: 'Geist-Medium';
    font-size  : 16px;
    font-weight: 500;
}

#footer .top nav ul li a {
    color: var(--text-dark);
}

#footer .top #socials {
    display: flex;
    gap    : 15px;
}


#footer .bottom {
    width          : 100%;
    padding        : 20px 30px;
    margin-bottom  : 20px;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    font-size      : 14px;
    font-family    : 'Geist-Light';
    color          : var(--text-dark);
}

#footer .bottom nav ul {
    display: flex;
    gap    : 20px;
}

#footer .bottom nav ul li a {
    color: var(--text-dark);
}

#footer .name {
    font-size  : clamp(20px, 6vw, 100px);
    color      : #DEDEDE;
    line-height: clamp(40px, 10vw, 150px);
    font-family: 'Geist-Bold';
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

#footer #footer-img {
    height             : 150px;
    background-image   : url("../images/footer.png");
    background-position: center;
    background-repeat  : no-repeat;
    background-size    : cover;
}

#about-content {
    display        : flex;
    align-items    : center;
    justify-content: center;
    text-align     : center;
    flex-direction : column;
    gap            : 20px;
    padding        : 70px 0 0 0;
}

#mission-vision {
    display            : flex;
    align-items        : center;
    justify-content    : center;
    text-align         : center;
    flex-direction     : column;
    gap                : 20px;
    padding            : 70px 20px 0 70px;
    background-image   : url(../images/about/bg.svg);
    background-size    : fill;
    background-position: center;
    background-repeat  : no-repeat;
}

.mission-vision-container {
    width         : 100%;
    display       : flex;
    flex-direction: column;
    gap           : 60px;
    padding       : 20px;
}

.mv-card {
    display    : flex;
    align-items: flex-start;
    gap        : 40px;
    padding    : 70px 20px;
    transition : all 0.3s ease;
    font-family: 'Geist-Medium';
    font-size  : 16px;
    font-weight: 500;
}

.mv-icon {
    display: flex;
}

.mv-content {
    flex          : 1;
    text-align    : left;
    display       : flex;
    flex-direction: column;
    gap           : 10px;
}

.mv-content div {
    max-width: 1200px;
}

.mv-content h2,
.mv-card h2 {
    font-size  : 28px;
    font-weight: 600;
    color      : var(--text-dark);
    margin     : 0;
    font-family: 'Avalance-SemiBold';
}



.mv-content p {
    font-size  : 16px;
    line-height: 1.8;
    color      : var(--text-dark);
    margin     : 0;
}

.vision-card .mv-content {
    align-items: flex-end;
}

#contact-content {
    min-height     : 540px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    padding        : 60px 20px;
}

.contact-inner {
    max-width : 760px;
    width     : 100%;
    text-align: center;
}

.contact-inner h1 {
    font-size  : 34px;
    font-weight: 700;
    color      : var(--text-dark);
    margin     : 0 0 10px 0;
}

.contact-inner h3 {
    margin: 0 0 30px 0;
    color : var(--text-gray);
}

.contact-form {
    background: var(--bg-light);
    width     : 100%;
    text-align: left;
}

.contact-form .form-label {
    font-size     : 12px;
    letter-spacing: 1px;
    color         : var(--text-gray);
    margin-bottom : 12px;
    font-family   : 'Geist-Regular';
    font-weight   : 400;
}

.contact-form .form-row {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 16px;
    margin-bottom        : 16px;
}

.contact-form .form-group {
    display       : flex;
    flex-direction: column;
    gap           : 8px;
}

.contact-form .form-group.full {
    margin-bottom: 16px;
}

.contact-form label {
    font-size  : 12px;
    color      : var(--text-gray) !important;
    font-family: 'Geist-Regular';
    font-weight: 400;
}

.contact-form label span {
    color: #FF4D4F;
}

.contact-form input {
    height       : 50px;
    border       : 1px solid #E6E6E6;
    border-radius: 10px;
    padding      : 0 12px;
    outline      : none;
    font-size    : 14px;
    color        : var(--text-dark);
    background   : #fff;
}

.contact-form select {
    height       : 50px;
    border       : 1px solid #E6E6E6;
    border-radius: 10px;
    padding      : 0 12px;
    outline      : none;
    font-size    : 14px;
    color        : var(--text-dark);
    background   : #fff;
    cursor       : pointer;
}

.contact-form input:focus {
    border-color: var(--primary-color);
    box-shadow  : 0 0 0 2px rgba(128, 0, 249, 0.12);
}

.contact-form select:focus {
    border-color: var(--primary-color);
    box-shadow  : 0 0 0 2px rgba(128, 0, 249, 0.12);
}

.contact-form .form-actions {
    display        : flex;
    justify-content: flex-end;
    gap            : 12px;
    margin-top     : 10px;
}

#platinum-sponsors,
#gold-sponsors,
#silver-sponsors,
#startup-sponsors,
#previous-sponsors {
    padding         : 60px;
    background-color: var(--bg-dark);
    color           : var(--text-light);
    font-family     : 'Avalance-Medium';
    font-size       : 28px;
    font-weight     : 500;
}

#previous-sponsors {
    padding-bottom: 80px;
}

.sponsor-title {
    display        : flex;
    align-items    : center;
    gap            : 15px;
    margin-bottom  : 40px;
    justify-content: flex-start;
    font-family    : 'Geist-SemiBold';
    font-size      : 16px;
    font-weight    : 600;
}

#gold-sponsors .sponsor-title,
#startup-sponsors .sponsor-title {
    justify-content: flex-end;
}

.sponsor-title img {
    width : 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.sponsor-title h1 {
    font-size  : 24px;
    font-weight: 700;
    color      : var(--text-light);
    margin     : 0;
}

.sponsors-grid {
    display              : grid;
    grid-template-columns: repeat(8, 1fr);
    gap                  : 20px;
    width                : 100%;
}

.sponsor-card-item {
    display        : flex;
    flex-direction : column;
    align-items    : center;
    justify-content: flex-start;
    text-align     : center;
    gap            : 12px;
    padding        : 24px 16px 20px;
    background     : var(--bg-purple-medium);
    transition     : all 0.3s ease;
    min-height     : 160px;
}

.sponsor-card-item:hover {
    background: var(--bg-purple-light);
    transform : translateY(-4px);
}

.sponsor-card-item img {
    max-width : 80px;
    height    : 64px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsor-card-item:hover img {
    transform: scale(1.08);
}

.sponsor-card-item p {
    font-size  : 11px;
    color      : var(--text-light);
    margin     : 0;
    margin-top : auto;
    font-weight: 400;
    line-height: 1.4;
}

.sponsor-card-item p {
    font-size  : 14px;
    color      : var(--text-light);
    margin     : 0;
    font-weight: 400;
    line-height: 1.4;
}

#pricing-cards {
    padding   : 80px;
    background: var(--bg-light);
}

.pricing-grid {
    display              : grid;
    grid-template-columns: repeat(3, 1fr);
    gap                  : 24px;
    max-width            : 1200px;
    margin               : 0 auto;
}

.pricing-card {
    background    : #F8F8F8;
    border-radius : 16px;
    overflow      : hidden;
    display       : flex;
    flex-direction: column;
    transition    : all 0.3s ease;
    box-shadow    : 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pricing-card.featured {
    background: var(--primary-color);
    color     : var(--text-light);
}

.pricing-card .card-header {
    padding: 20px 24px 16px;

}

.pricing-card .card-icon {
    display    : flex;
    align-items: center;
    gap        : 10px;
    font-size  : 18px;
    font-weight: 400;
    font-family: 'Avalance-Regular';
    color      : var(--text-gray);
}

.pricing-card.featured .card-icon {
    color: var(--text-light);
}

.pricing-card .card-icon img {
    width : 20px;
    height: 20px;
    filter: grayscale(1) brightness(0.5);
}

.pricing-card.featured .card-icon img {
    filter: brightness(0) invert(1);
}

.pricing-card .card-body {
    padding       : 0 24px 24px;
    flex          : 1;
    display       : flex;
    flex-direction: column;
}

.pricing-card .starts-from {
    font-size     : 14px;
    font-weight   : 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color         : var(--text-gray);
    margin        : 0 0 8px 0;
    font-family   : 'Geist-Medium';
}

.pricing-card.featured .starts-from {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card .price {
    font-size  : 28px;
    font-weight: 600;
    font-family: 'Geist-SemiBold';
    color      : var(--text-dark);
    margin     : 0 0 20px 0;
}

.pricing-card.featured .price {
    color: var(--text-light);
}

.pricing-card .price .per-time {
    font-size  : 14px;
    font-weight: 600;
    color      : var(--text-gray);
}

.pricing-card.featured .price .per-time {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card .btn {
    width          : 100%;
    display        : inline-flex;
    justify-content: space-between;
    margin-bottom  : 24px;
    padding        : 12px 18px;
}


.pricing-card .benefits-list {
    list-style    : none;
    padding       : 0;
    margin        : 0;
    display       : flex;
    flex-direction: column;
    gap           : 12px;
}

.pricing-card .benefits-list li {
    display    : flex;
    align-items: flex-start;
    gap        : 10px;
    font-size  : 16px;
    font-weight: 500;
    line-height: 1.5;
    color      : var(--text-dark);
    font-family: 'Geist-Medium';
}

.pricing-card.featured .benefits-list li {
    color: var(--text-light);
}

.pricing-card .benefits-list li img {
    width      : 20px;
    height     : 20px;
    flex-shrink: 0;
    margin-top : 2px;
}

.pricing-card .custom-description {
    font-size  : 12px;
    line-height: 1.6;
    color      : var(--text-gray);
    margin     : 0;
}

#startup-plan {
    grid-column   : 1 / span 3;
    display       : flex;
    flex-direction: column;
}

#startup-plan .startup-content {
    display        : flex;
    align-items    : flex-start;
    justify-content: space-between;
    gap            : 40px;
    padding        : 24px 32px;
}

#startup-plan .startup-left {
    flex          : 1;
    display       : flex;
    align-items   : flex-start;
    flex-direction: column;
    gap           : 12px;
}

#startup-plan .card-icon {
    display    : flex;
    align-items: center;
    gap        : 10px;
}

#startup-plan .card-icon img {
    width : 20px;
    height: 20px;
    filter: grayscale(1) brightness(0.5);
}

#startup-plan .startup-description {
    font-size  : 14px;
    font-weight: 500;
    font-family: 'Geist-Medium';
    line-height: 1.5;
    color      : var(--text-gray);
    margin     : 0;
}

#startup-plan .startup-right {
    text-align    : right;
    display       : flex;
    flex-direction: column;
    gap           : 8px;
    align-items   : flex-end;
}

#startup-plan .custom-quote {
    font-size     : 14px;
    font-weight   : 500;
    font-family   : 'Geist-Medium';
    text-transform: uppercase;
    letter-spacing: 1px;
    color         : var(--text-gray);
    margin        : 0;
}

#startup-plan .startup-price {
    font-size  : 28px;
    font-weight: 600;
    font-family: 'Geist-SemiBold';
    font-weight: 700;
    color      : var(--text-dark);
    margin     : 0;
}

#startup-plan .startup-price .per-time {
    font-size: 14px;
}

#startup-plan .btn {
    width: auto;
}

/* Sponsorship Application Form */
.sponsorship-application {
    padding   : 80px 20px;
    background: var(--bg-light);
}

.sponsorship-application .container {
    max-width: 600px;
    margin   : 0 auto;
}

.application-header {
    text-align   : center;
    margin-bottom: 40px;
}

.application-header h1 {
    font-size  : 32px;
    font-weight: 700;
    color      : var(--text-dark);
    margin     : 0 0 12px 0;
}

.application-header .subtitle {
    font-size  : 14px;
    line-height: 1.6;
    color      : var(--text-gray);
    margin     : 0;
}

.sponsorship-form {
    background   : #FFFFFF;
    border-radius: 16px;
    padding      : 32px;
    box-shadow   : 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-section-label {
    font-size     : 11px;
    font-weight   : 600;
    letter-spacing: 1px;
    color         : var(--text-gray);
    margin-bottom : 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display      : block;
    font-size    : 13px;
    font-weight  : 500;
    color        : var(--text-dark);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #FF0000;
}

.form-group input,
.form-group select {
    width           : 100%;
    padding         : 12px 16px;
    font-size       : 14px;
    border          : 1px solid #E5E5E5;
    border-radius   : 8px;
    background-color: #FAFAFA;
    color           : var(--text-dark);
    transition      : all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline         : none;
    border-color    : var(--primary-color);
    background-color: #FFFFFF;
}

.form-group input::placeholder {
    color: #999999;
}

.form-row {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 16px;
}

.form-actions {
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    margin-top     : 32px;
}

.btn-link {
    font-size      : 14px;
    color          : var(--text-gray);
    text-decoration: none;
    transition     : color 0.3s ease;
}

.btn-link:hover {
    color: var(--text-dark);
}

/* Ambassadors Section */
.ambassadors-section {
    padding         : 60px 20px;
    background-color: var(--bg-light);
}

.ambassadors-grid {
    max-width            : 1200px;
    margin               : 0 auto;
    display              : grid;
    grid-template-columns: repeat(5, 1fr);
    gap                  : 24px;
}

.ambassador-card {
    background: #FFFFFF;
    overflow  : hidden;
    text-align: center;
}

.ambassador-card img {
    width       : 100%;
    aspect-ratio: 1 / 1.25;
    object-fit  : cover;
    display     : block;
}

.ambassador-card h3 {
    font-size  : 20px;
    font-weight: 600;
    font-family: 'Geist-SemiBold';
    color      : var(--text-dark);
    margin     : 16px 12px 8px;
}

.ambassador-card .position {
    font-size     : 14px;
    font-weight   : 500;
    font-family   : 'DMMono-Medium';
    letter-spacing: 0.5px;
    color         : var(--text-gray);
    margin        : 0 12px;
}

.ambassador-card .university {
    font-size  : 14px;
    font-weight: 500;
    color      : var(--text-gray);
    margin     : 4px 12px 16px;

    font-family: 'DMMono-Medium';
}

/* Team Page Styles */
.team-hero {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    padding        : 60px;
}

.team-hero-image {
    text-align: center;
}

.team-hero-image .image-frame {
    position     : relative;
    display      : inline-block;
    margin-bottom: 20px;
}

.team-hero-image img {
    width     : 280px;
    height    : 320px;
    object-fit: cover;
    display   : block;
}

.frame-corner {
    position        : absolute;
    width           : 15px;
    height          : 15px;
    border          : 3px solid var(--primary-color);
    background-color: var(--primary-color);
}

.frame-corner.top-left {
    top : -15px;
    left: -15px;
}

.frame-corner.top-right {
    top  : -15px;
    right: -15px;
}

.frame-corner.bottom-left {
    bottom: -15px;
    left  : -15px;
}

.frame-corner.bottom-right {
    bottom: -15px;
    right : -15px;
}

.team-hero-image h4 {
    font-size  : 18px;
    font-weight: 600;
    color      : var(--text-dark);
    margin     : 0 0 4px 0;
}

.team-hero-image p {
    font-size: 12px;
    color    : var(--text-gray);
    margin   : 0;
}

/* Team Section */
.team-section {
    padding   : 80px 20px;
    background: var(--bg-dark);
}

.team-section .title{
    margin-bottom: 30px;
}

.team-container {
    max-width: 1200px;
    margin   : 0 auto;
}

.team-container h2 {
    text-align   : center;
    font-size    : 28px;
    font-weight  : 500;
    font-family: 'Avalance-Medium';
    color        : var(--text-light);
    margin-bottom: 50px;
}

.team-grid {
    display              : grid;
    grid-template-columns: repeat(5, 1fr);
    gap                  : 24px;
}

.team-card {
    background: transparent;
    text-align: center;
}

.team-card img {
    width        : 100%;
    aspect-ratio : 1 / 1.2;
    object-fit   : cover;
    margin-bottom: 12px;
    display      : block;
}

.team-card h4 {
    font-size  : 20px;
    font-weight: 600;
    color      : var(--text-light);
    margin     : 0 0 4px 0;
    font-family: 'Geist-SemiBold';
}

.team-card p {
    font-size: 14px;
    font-weight: 500;
    font-family: 'DMMono-Medium';
    color    : rgba(255, 255, 255, 0.7);
    margin   : 0;
}

/* Product Team Section */
.product-team-section {
    padding   : 80px 20px;
    background: #0D001A;
}

.product-team-section .title {
    margin-bottom: 30px;
}

.product-team-container {
    max-width: 1200px;
    margin   : 0 auto;
}

.section-tag {
    font-size     : 11px;
    font-weight   : 600;
    letter-spacing: 1.5px;
    color         : var(--secondary-color);
    margin        : 0 0 16px 0;
}

.product-team-container h2 {
    font-size  : 28px;
    font-weight: 500;
    font-family: 'Avalance-Medium';
    color      : var(--text-light);
    margin     : 0 0 8px 0;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color    : rgba(255, 255, 255, 0.7);
    margin   : 0 0 50px 0;
    text-align: center;
    font-family: 'Geist-Medium';
    font-weight: 500;
}

.product-team-grid {
    display              : grid;
    grid-template-columns: repeat(3, 1fr);
    gap                  : 40px;
}

.product-team-card {
    text-align: left;
    transition: transform 0.3s ease;
}

.product-team-card:hover {
    transform: translateY(-8px);
}

.product-team-card .card-image {
    position     : relative;
    overflow     : hidden;
    margin-bottom: 20px;
}

.product-team-card .card-image img {
    width     : 100%;
    height    : 360px;
    object-fit: cover;
    display   : block;
}

.product-team-card .card-image::after {
    content   : '';
    position  : absolute;
    bottom    : 0;
    left      : 0;
    right     : 0;
    height    : 50%;
    background: linear-gradient(180deg, rgba(128, 0, 249, 0) 0%, rgba(128, 0, 249, 0.8) 100%);
}

.product-team-card h4 {
    font-size  : 20px;
    font-weight: 600;
    color      : var(--text-light);
    margin     : 0 0 4px 0;
    font-family: 'Geist-SemiBold';
}

.product-team-card p {
    font-size: 14px;
    font-weight: 500;
    color    : rgba(255, 255, 255, 0.6);
    margin   : 0;
    font-family: 'DMMono-Medium';
}

.product-team-card .linkedin-link {
    display        : inline-block;
    margin-top     : 10px;
    font-size      : 12px;
    color          : var(--secondary-color);
    text-decoration: none;
}

.product-team-card .linkedin-link:hover {
    text-decoration: underline;
}


#booking {
    padding: 80px;
}



/* ============================================
   RESPONSIVE STYLES - MEDIA QUERIES
   ============================================ */

/* Tablet Devices (768px - 1024px) */
@media screen and (max-width: 1024px) {

    /* Header */
    #header {
        padding        : 15px 20px;
        justify-content: space-between;
        align-items    : center;
    }

    #header #logo img {
        width: 100px;
    }

    /* Show hamburger menu on tablet */
    .hamburger-menu {
        display: flex;
    }

    /* Hide desktop navigation on tablet */
    #header nav {
        display: none;
    }

    #header #cta {
        display: none;
    }

    /* Hero Sections */
    #hero h1 {
        font-size: 34px;
    }

    #hero h3 {
        font-size: 18px;
    }

    #hero-content #content #content-box {
        padding: 30px;
    }

    #hero-content #content #cards-container img {
        width: 500px;
    }

    #hero-content #hero-image {
        height: 300px;
    }

    #hero-content #hero-image img {
        opacity: 0.25;
    }

    /* Section Headings */
    #about-event h2,
    #panel-members h2,
    #sponsors h2,
    #founder h2,
    #campus-location h2,
    #partner-with-us h2,
    .team-hero-text h2 {
        font-size: 24px;
    }

    #about-event h4,
    #panel-members h4,
    #sponsors h4,
    #founder h4,
    #campus-location h4,
    #partner-with-us h4,
    .team-hero-text h4 {
        font-size: 16px;
    }

    /* Grids */
    .ambassadors-grid,
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap                  : 20px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(5, 1fr);
        gap                  : 16px;
    }

    .product-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap                  : 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap                  : 20px;
    }

    #startup-plan {
        grid-column: 1;
    }

    /* Timeline */
    .timeline-header {
        padding: 0 30px 30px 30px;
    }

    .phase-panel {
        min-width: 1000px;
    }

    #scrollbar-container,
    #horizontal-scroll-container {
        padding: 0 30px;
    }

    /* Sections */
    #about-event,
    #panel-members,
    #sponsors,
    #founder {
        padding: 50px 15px;
    }

    #panel-members #members-container {
        flex-direction: column;
        gap           : 25px;
        margin-top    : 30px;
    }

    #panel-members #members-container .member-card {
        width: 100%;
    }

    #panel-members #members-container .member-card .member-photo {
        width : 240px;
        height: 240px;
    }

    #event-timeline {
        padding: 50px 0;
    }

    #pricing-cards {
        padding: 50px 30px;
    }

    #platinum-sponsors,
    #gold-sponsors,
    #silver-sponsors,
    #startup-sponsors {
        padding: 40px 30px;
    }

    /* Founder Section */
    #founder #founder-container {
        height        : auto;
        flex-direction: column;
    }

    #founder #founder-container .content {
        width        : 100%;
        max-width    : 100%;
        border-radius: 20px 20px 0 0;
        padding      : 40px;
        height       : auto;
    }

    #founder #founder-container img {
        width        : 100%;
        max-width    : 100%;
        height       : 400px;
        border-radius: 0 0 20px 20px;
    }

    /* Campus Location */
    #campus-location {
        flex-direction: column;
        text-align    : center;
        gap           : 30px;
    }

    #campus-location .content {
        padding-left: 0;
        align-items : center;
    }

    #campus-location .title {
        justify-content: center;
    }

    #campus-location #campus-img {
        width  : 100%;
        content: url(../images/homeuni.png);
    }

    /* Partner With Us */
    #partner-with-us {
        padding       : 40px;
        flex-direction: column;
        gap           : 20px;
        text-align    : center;
    }

    /* Mission Vision */
    #mission-vision {
        padding: 50px 15px 0 15px;
    }

    .mv-card {
        padding       : 50px 15px;
        flex-direction: column;
        gap           : 25px;
    }

    /* Team Hero */
    .team-hero {
        padding: 40px;
        gap    : 40px;
    }

    /* Footer */
    #footer #footer-img {
        height: 120px;
    }

    /* Contact Form */
    .contact-inner {
        padding: 0 20px;
    }

    /* Booking Section */
    #booking {
        padding: 50px;
    }
}

/* Mobile Devices (max-width: 767px) */
@media screen and (max-width: 767px) {

    /* Header */
    #header {
        padding        : 15px 20px;
        flex-direction : row;
        justify-content: space-between;
        align-items    : center;
    }

    #header #logo img {
        width: 90px;
    }

    /* Hide desktop navigation on mobile */
    #header nav {
        display: none;
    }

    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }

    #header #cta {
        display: none;
    }

    /* Hero Sections */
    #hero {
        padding: 10px;
    }

    #hero h1 {
        font-size: 26px;
    }

    #hero h3 {
        font-size  : 14px;
        line-height: 1.5;
    }

    #hero-content #content {
        flex-direction: column;
        gap           : 20px;
        padding       : 10px 15px 0;
    }

    #hero-content #content #content-box {
        padding: 25px 20px;
        width  : 100%;
    }

    #hero-content #content #content-box h1 {
        font-size: 24px;
    }

    #hero-content #content #content-box h3 {
        font-size: 14px;
    }

    #hero-content #content #content-box .btn {
        width          : 100%;
        justify-content: center;
    }

    #hero-content #content #cards-container {
        width          : 100%;
        display        : flex;
        justify-content: center;
    }

    #hero-content #content #cards-container img {
        width    : 100%;
        max-width: 400px;
        height   : auto;
    }

    #hero-content #hero-image {
        height    : 250px;
        margin-top: 0;
    }

    #hero-content #hero-image img {
        opacity: 0.2;
    }

    /* About Content */
    #about-content {
        padding: 40px 15px 0 15px;
    }

    #about-content h1 {
        font-size : 26px;
        text-align: center;
    }

    #about-content h3 {
        font-size: 14px;
    }

    #about-content .btn {
        width          : 100%;
        justify-content: center;
        padding        : 12px 20px;
    }

    /* Remove line breaks on mobile for better text flow */
    h3 br,
    h4 br {
        display: none;
    }

    /* Section Headings */
    #about-event h2,
    #panel-members h2,
    #sponsors h2,
    #founder h2,
    #campus-location h2,
    #partner-with-us h2,
    .team-hero-text h2,
    .team-container h2,
    .product-team-container h2 {
        font-size: 22px;
    }

    #about-event h4,
    #panel-members h4,
    #sponsors h4,
    #founder h4,
    #campus-location h4,
    #partner-with-us h4,
    .team-hero-text h4 {
        font-size  : 14px;
        line-height: 1.6;
    }

    /* Buttons */
    .btn {
        font-size: 14px;
        padding  : 12px 18px;
    }

    #about-event .btn,
    #panel-members .btn,
    #sponsors .btn,
    #campus-location .btn,
    #partner-with-us .btn,
    .contact-form .btn,
    .team-hero-text .btn,
    #proceedBtn,
    #clearBtn,
    .checkout-btn {
        width          : 100%;
        justify-content: center;
        padding        : 12px 20px;
    }

    /* Countdown */
    #about-event .countdown {
        gap      : 8px;
        flex-wrap: wrap;
    }

    #about-event .time-box {
        width  : 60px;
        height : 60px;
        padding: 12px 8px;
    }

    #about-event .time-value {
        font-size: 24px;
    }

    #about-event .time-label {
        font-size: 16px;
    }

    #about-event .separator {
        font-size : 18px;
        margin-top: 12px;
    }

    /* Sections Padding */
    #about-event,
    #panel-members,
    #sponsors,
    #founder {
        padding   : 40px 15px;
        text-align: center;
    }

    /* Timeline */
    #event-timeline {
        padding: 40px 0;
    }

    .timeline-header {
        padding: 0 20px 30px 20px;
    }

    .timeline-header h2 {
        font-size: 22px;
    }

    .timeline-header h4 {
        font-size: 14px;
    }

    #scrollbar-container {
        padding      : 0 20px;
        margin-bottom: 20px;
    }

    #event-timeline #scrollbar {
        height: 50px;
    }

    #coin {
        width : 30px;
        height: 30px;
    }

    #horizontal-scroll-container {
        padding: 0 20px;
        gap    : 30px;
    }

    .phase-panel {
        min-width: 80vw;
    }

    .phase-panel h2 {
        font-size: 32px;
    }

    .phase-button {
        padding  : 10px 25px;
        font-size: 14px;
    }

    .phase-panel p {
        font-size: 14px;
    }

    .phase-left {
        flex-direction: column;
        gap           : 15px;
    }

    .event-card {
        flex-direction: column;
        padding       : 20px;
        min-width     : 100%;
        max-width     : 100%;
        width         : 100%;
        flex          : 0 0 100%;
    }

    .event-icon {
        width : 48px;
        height: 48px;
    }

    .event-icon img {
        width : 24px;
        height: 24px;
    }

    .event-details h3 {
        font-size: 18px;
    }

    .event-details p {
        font-size: 13px;
    }

    /* Panel Members Container */
    #panel-members #members-container {
        flex-direction: column;
        gap           : 25px;
        margin-top    : 30px;
    }

    #panel-members #members-container .member-card {
        width: 100%;
    }

    #panel-members #members-container .member-card .member-photo {
        width : 240px;
        height: 240px;
    }

    /* Sponsors */
    #sponsors #sponsors-container {
        margin-top: 30px;
    }

    #sponsors #sponsors-container .sponsor-card {
        width  : 180px;
        height : 140px;
        padding: 15px;
    }

    #sponsors #sponsors-container .sponsor-card img {
        height: 60px;
    }

    #sponsors #sponsors-container .sponsor-card p {
        font-size: 14px;
    }

    /* Grids */
    .ambassadors-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap                  : 15px;
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap                  : 12px;
    }

    .product-team-grid {
        grid-template-columns: 1fr;
        gap                  : 25px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap                  : 20px;
    }

    #startup-plan {
        grid-column: 1;
    }

    #startup-plan .startup-content {
        flex-direction: column;
        padding       : 20px;
        gap           : 20px;
    }

    #startup-plan .startup-right {
        text-align : left;
        align-items: flex-start;
    }

    .startup-right .btn {
        width          : 100%;
        justify-content: center;
    }

    /* Ambassador Cards */
    .ambassador-card h3 {
        font-size: 16px;
    }

    .ambassador-card .position,
    .ambassador-card .university {
        font-size: 12px;
    }

    /* Sponsor Cards */
    .sponsor-card-item {
        padding   : 16px 12px;
        min-height: 130px;
    }

    .sponsor-card-item img {
        max-width: 60px;
        height   : 50px;
    }

    .sponsor-card-item p {
        font-size: 11px;
    }

    /* Pricing Cards */
    .pricing-card .card-header {
        padding: 16px 20px 12px;
    }

    .pricing-card .card-icon {
        font-size: 16px;
    }

    .pricing-card .card-body {
        padding: 0 20px 20px;
    }

    .pricing-card .price {
        font-size: 24px;
    }

    .pricing-card .benefits-list li {
        font-size: 14px;
    }

    /* Sections with specific layouts */
    #pricing-cards {
        padding: 40px 15px;
    }

    #platinum-sponsors,
    #gold-sponsors,
    #silver-sponsors,
    #startup-sponsors {
        padding: 30px 15px;
    }

    .sponsor-title {
        margin-bottom  : 25px;
        justify-content: center;
        flex-wrap      : wrap;
    }

    #gold-sponsors .sponsor-title,
    #startup-sponsors .sponsor-title {
        justify-content: center;
    }

    .sponsor-title h1 {
        font-size: 20px;
    }

    /* Founder Section */
    #founder #founder-container {
        height        : auto;
        flex-direction: column;
    }

    #founder #founder-container .content {
        width        : 100%;
        padding      : 30px 20px;
        border-radius: 16px 16px 0 0;
        height       : auto;
    }

    #founder #founder-container .content p {
        font-size: 14px;
    }

    #founder #founder-container .content h4 {
        font-size: 16px;
    }

    #founder #founder-container .content img {
        width        : 20px;
        height       : 20px;
        margin-bottom: 20px;
    }

    #founder #founder-container img {
        width        : 100%;
        height       : 300px;
        border-radius: 0 0 16px 16px;
    }

    /* Campus Location */
    #campus-location {
        flex-direction: column;
        text-align    : center;
        padding       : 30px 15px;
    }

    #campus-location .content {
        padding-left: 0;
        align-items : center;
    }

    #campus-location .title {
        justify-content: center;
    }

    #campus-location #campus-img {
        width  : 100%;
        content: url(../images/homeuni.png);
    }

    /* Partner With Us */
    #partner-with-us {
        background-size    : cover;
        background-position: center;
        padding            : 30px 20px;
        flex-direction     : column;
        text-align         : center;
        height             : auto;
        min-height         : 250px;
    }

    #partner-with-us .content {
        max-width: 100%;
    }

    #partner-with-us .btn {
        width          : 100%;
        justify-content: center;
    }

    #partner-with-us #partner-img {
        display: none;
    }

    /* Mission Vision */
    #mission-vision {
        padding         : 40px 15px 0 15px;
        background-image: none;
    }

    .mission-vision-container {
        gap: 30px;
    }

    .mv-card {
        flex-direction: column;
        padding       : 30px 15px;
        gap           : 20px;
        align-items   : flex-start;
    }

    .mv-icon {
        align-items: center;
        gap        : 10px;
    }

    .mv-icon img {
        width : 56px;
        height: 56px;
    }

    .mv-icon h2 {
        font-size: 26px;
    }

    .vision-card .mv-icon {
        order: 1;
    }

    .vision-card .mv-content {
        order: 2;
    }

    .mv-content h2,
    .mv-card h2 {
        font-size : 26px;
    }

    .mv-content p {
        font-size  : 14px;
        line-height: 1.6;
        text-align: justify;
    }

    /* Team Hero */
    .team-hero {
        flex-direction: column;
        padding       : 30px 20px;
        gap           : 30px;
    }

    .team-hero-text {
        text-align: center;
        width     : 100%;
    }

    .team-hero-text h2 {
        font-size: 22px;
    }

    .team-hero-text .btn {
        width          : 100%;
        justify-content: center;
    }

    .team-hero-image img {
        width : 220px;
        height: 260px;
    }

    .frame-corner {
        width       : 12px;
        height      : 12px;
        border-width: 2px;
    }

    .frame-corner.top-left,
    .frame-corner.top-right {
        top: -12px;
    }

    .frame-corner.bottom-left,
    .frame-corner.bottom-right {
        bottom: -12px;
    }

    .frame-corner.top-left,
    .frame-corner.bottom-left {
        left: -12px;
    }

    .frame-corner.top-right,
    .frame-corner.bottom-right {
        right: -12px;
    }

    .team-hero-image h4 {
        font-size: 16px;
    }

    .team-hero-image p {
        font-size: 11px;
    }

    /* Team Section */
    .team-section {
        padding: 50px 15px;
    }

    .team-container h2 {
        font-size    : 24px;
        margin-bottom: 30px;
    }

    .team-card h4 {
        font-size: 13px;
    }

    .team-card p {
        font-size: 10px;
    }

    /* Product Team Section */
    .product-team-section {
        padding: 50px 15px;
    }

    .section-tag {
        font-size: 10px;
    }

    .product-team-container h2 {
        font-size: 24px;
    }

    .section-subtitle {
        font-size    : 13px;
        margin-bottom: 30px;
    }

    .product-team-card .card-image img {
        height: 280px;
    }

    .product-team-card h4 {
        font-size: 16px;
    }

    /* Footer */
    #footer .top {
        flex-direction: column;
        gap           : 20px;
        padding       : 20px 10px;
        
        align-items: flex-start;
    }

    #footer .top nav ul {
        display    : flex;
        flex-wrap  : wrap;
        gap        : 12px;
        text-align : left;
        justify-content: flex-start;
    }

    #footer .top #socials {
        display        : flex;
        flex-wrap      : wrap;
        gap            : 12px;
        justify-content: flex-start;
    }

    #footer .bottom {
        flex-direction: column;
        gap           : 20px;
        padding       : 20px 10px;
        align-items: flex-start;
    }

    #footer .bottom nav ul {
        display    : flex;
        flex-wrap  : wrap;
        gap        : 12px;
        text-align : left !important;
        justify-content: flex-start;
    }

    #footer #footer-img {
        height: 80px;
    }

    #footer .name {
        text-align: left;
    }

    /* Contact Content */
    #contact-content {
        padding   : 40px 15px;
        min-height: auto;
    }

    .contact-inner {
        padding: 0;
    }

    .contact-inner h1 {
        font-size: 24px;
    }

    .contact-inner h3 {
        font-size: 14px;
    }

    /* Contact Form */
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap                  : 0;
    }

    .contact-form .form-group {
        margin-bottom: 16px;
    }

    .contact-form input,
    .contact-form select {
        font-size: 14px;
        height   : 48px;
    }

    .contact-form .form-actions {
        flex-direction: column;
        gap           : 12px;
    }

    .contact-form .form-actions .btn {
        width          : 100%;
        justify-content: center;
    }

    /* Booking Section */
    #booking {
        padding: 30px 15px;
    }

    /* Payment & Cart Page Styles */
    #hero-content {
        padding: 20px 15px;
    }

    .payment-container,
    #content {
        flex-direction: column;
        gap           : 30px;
    }

    .payment-header h1,
    .form-section h1 {
        font-size: 24px;
    }

    .payment-header h3,
    .form-section h3 {
        font-size: 14px;
    }

    .payment-methods,
    .cart-sidebar,
    .form-section {
        width    : 100%;
        max-width: 100%;
    }

    .form-section {
        padding: 40px 15px 30px 15px !important;
    }

    .payment-tabs {
        flex-direction: column;
        gap           : 8px;
    }

    .payment-tab {
        padding  : 12px 18px;
        font-size: 16px;
    }

    .ticket-display,
    .ticket-section {
        width    : 100%;
        max-width: 280px;
        margin   : 0 auto;
    }

    .ticket-display img,
    .ticket-section img {
        width    : 100%;
        max-width: 280px;
        margin   : 0 auto;
        display  : block;
    }

    /* Booking Confirmation */
    .booking-details {
        grid-template-columns: 1fr;
        width                : 100%;
        gap                  : 15px;
    }

    .detail-item {
        gap: 12px;
    }

    .detail-icon {
        width : 36px;
        height: 36px;
    }

    .detail-icon img {
        width : 24px;
        height: 24px;
    }

    .detail-label {
        font-size: 11px;
    }

    .detail-value {
        font-size: 13px;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    #hero h1 {
        font-size: 22px;
    }

    #hero h3 {
        font-size: 13px;
    }

    #hero-content #content #content-box h1 {
        font-size: 20px;
    }

    #hero-content #content #content-box h3 {
        font-size  : 13px;
        line-height: 1.5;
    }

    #hero-content #content #cards-container img {
        max-width: 300px;
    }

    #hero-content #hero-image {
        height: 200px;
    }

    #panel-members #members-container .member-card .member-photo {
        width : 200px;
        height: 200px;
    }

    .ambassadors-grid,
    .team-grid,
    .sponsors-grid {
        grid-template-columns: 1fr;
    }

    #about-event .countdown {
        justify-content: center;
    }

    #about-event .time-box {
        width : 55px;
        height: 55px;
    }

    #about-event .time-value {
        font-size: 20px;
    }

    #about-event .time-label {
        font-size: 14px;
    }

    #sponsors #sponsors-container .sponsor-card {
        width : 150px;
        height: 120px;
    }

    #founder #founder-container img {
        height: 250px;
    }

    .team-hero-image img {
        width : 180px;
        height: 220px;
    }

    .product-team-card .card-image img {
        height: 240px;
    }
}

/* Landscape Orientation Adjustments */
@media screen and (max-width: 1024px) and (orientation: landscape) {
    #hero-content #content {
        flex-direction: row;
    }

    #hero-content #content #cards-container img {
        width: 400px;
    }

    #founder #founder-container {
        flex-direction: row;
    }

    #founder #founder-container .content {
        border-radius: 20px 0 0 20px;
    }

    #founder #founder-container img {
        border-radius: 0 20px 20px 0;
        height       : 400px;
    }
}