:root {
    --primary-color: #1E4B7D;
    --secondary-color: #1A8ECB;
    --accent-color: #C6A75A;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --error-color: #e74c3c;
    --success-color: #2ecc71;
    --border-radius: 10px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    --dark-text: #343a40;
    --light-text: #f8f9fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    padding-top: 80px;
    /* Add padding to prevent content from hiding behind fixed header */
}

.header {
    background: linear-gradient(to right, #1A8ECB, #1E4B7D);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo {
    height: 30px;
    margin-right: 10px;
}

.navigation {
    display: flex;
    gap: 10px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    position: relative;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-radius: 5px;
}

.login-btn {
    background-color: #C6A75A;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.login-btn:hover {
    color: black;
}

.admin-btn {
    background-color: white;
    color: black;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.admin-btn:hover {
    background-color: #C6A75A;
    color: black;
}

.banner {
    background: linear-gradient(to bottom, #1E4B7D, #1A8ECB);
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.date {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    padding: 0 50px;
}

.date::before,
.date::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, #C6A75A, transparent);
}

.date::before {
    left: -220px;
}

.date::after {
    right: -220px;
}

.main-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.countdown-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
    min-width: 100px;
}

.countdown-number {
    font-size: 2rem;
    color: #C6A75A;
    font-weight: bold;
}

.countdown-label {
    font-size: 0.9rem;
    color: #fff;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.banner-buttons .btn {
    min-width: 150px;
}

@media (max-width: 576px) {
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1E4B7D;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
}

.nav-item:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-item:hover {
    background-color: #1A8ECB;
    border-radius: 5px;
}

.gold-accent {
    color: #C6A75A;
}

.section {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    color: #333;
}

.section-icon {
    width: 60px;
    height: 60px;
    background-color: #1E4B7D;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 20px;
    border-radius: 5px;
}

.section-heading {
    font-size: 1.8rem;
    color: #333;
    text-transform: uppercase;
    font-weight: bold;
}

.content-wrapper {
    display: flex;
    gap: 30px;
}

.text-content {
    flex: 3;
    line-height: 1.6;
    color: #666;
}

.text-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.image-content {
    flex: 2;
}

.image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.world-map {
    margin-bottom: 20px;
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.download-btn {
    background-color: #028A0F;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

/* Attendees section styles */
.attendee-list {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.attendee-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    color: #333;
}

.attendee-list li::before {
    content: "•";
    color: #4a7c1b;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.attendee-images {
    margin-top: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.attendee-images img {
    width: 100%;
    display: block;
}

/* Schedule section styles */
.schedule-tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    background-color: #eee;
    border-radius: 5px;
    margin: 0 5px;
    cursor: pointer;
    font-weight: bold;
}

.tab.active {
    background-color: #C6A75A;
    color: white;
}

.schedule-content {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
}

.schedule-day {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.schedule-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.schedule-time {
    flex: 1;
    min-width: 120px;
    color: #028A0F;
    font-weight: bold;
    padding-right: 15px;
}

.schedule-details {
    flex: 5;
}

.schedule-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: #1E4B7D;
    margin-bottom: 5px;
}

.schedule-speaker {
    font-style: italic;
    margin-bottom: 5px;
    color: #666;
}

.schedule-description {
    color: #777;
    font-size: 0.9rem;
}

.icon-container {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    background-color: #f0f0f0;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 15px;
    }

    .navigation {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .date::before,
    .date::after {
        width: 100px;
    }

    .date::before {
        left: -120px;
    }

    .date::after {
        right: -120px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .schedule-item {
        flex-direction: column;
    }

    .schedule-time {
        margin-bottom: 10px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #1E4B7D;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}


.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #1A8ECB;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #1A8ECB;
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-bottom-left-radius: 8px;
}

.pricing-header {
    background: linear-gradient(to right, #1A8ECB, #1E4B7D);
    color: white;
    padding: 20px;
    text-align: center;
}

.pricing-header h3 {
    margin: 0 0 15px;
    font-size: 22px;
}

.pricing-tag {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.price {
    font-size: 24px;
    font-weight: bold;
}

.price.early-bird {
    position: relative;
}

.price.early-bird::after {
    content: "Early Bird";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: normal;
    white-space: nowrap;
}

.price.normal {
    font-size: 24px;
    align-self: flex-end;
}

.pricing-body {
    padding: 20px;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.pricing-body li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.pricing-body li:before {
    content: "✓";
    color: #1A8ECB;
    position: absolute;
    left: 0;
}

.register-btn {
    display: block;
    background: linear-gradient(to right, #1A8ECB, #1E4B7D);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.register-btn:hover {
    transform: scale(1.05);
    color:#FFFFFF;
}

.info-btn {
    display: block;
    background: linear-gradient(to right, #007ACC, #0056B3, #1A8ECB);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(26, 142, 203, 0.2);
    border: none;
    outline: none;
    cursor: pointer;
}

.info-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px rgba(26, 142, 203, 0.3);
    color: #FFFFFF;
}

.info-btn:active {
    transform: translateY(1px);
}

.success-btn {
    display: block;
    background: linear-gradient(to right, #28a745, #218838);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(76, 175, 80, 0.2);
    border: none;
    outline: none;
    cursor: pointer;
}

.success-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.3);
    color: #FFFFFF;
}

.success-btn:active {
    transform: translateY(1px);
}

.danger-btn {
    display: block;
    background: linear-gradient(to right, #dc3545, #c82333);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(255, 99, 71, 0.2);
    border: none;
    outline: none;
    cursor: pointer;
}

.danger-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 12px rgba(255, 99, 71, 0.3);
    color: #FFFFFF;
}

.danger-btn:active {
    transform: translateY(1px);
}

.btn {
    display: inline-block;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* Media queries for responsive buttons */
@media (max-width: 768px) {
    .info-btn, .success-btn, .danger-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .info-btn, .success-btn, .danger-btn {
        padding: 8px 14px;
        font-size: 13px;
        width: 100%;
        margin: 5px 0 !important;
    }
}

.virtual-pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-card.horizontal {
    width: 100%;
    max-width: 580px;
    display: flex;
}

.pricing-card.horizontal .pricing-header {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-card.horizontal .pricing-body {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.pricing-card.horizontal .pricing-body ul {
    width: 60%;
    margin: 0;
}

.pricing-card.horizontal .register-btn {
    width: 35%;
    margin-left: auto;
}

.special-discount {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.discount-badge {
    background: #1A8ECB;
    color: white;
    font-size: 24px;
    font-weight: bold;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.discount-text {
    flex-grow: 1;
    padding: 0 20px;
}

.discount-text h3 {
    color: #1A8ECB;
    margin: 0 0 5px;
}

.contact-btn {
    background: #1E4B7D;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #1A8ECB;
    color:#FFFFFF;
}

@media (max-width: 1200px) {
    .pricing-cards {
        justify-content: center;
    }

    .pricing-card {
        width: calc(50% - 20px);
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .pricing-card {
        width: 100%;
        max-width: 320px;
    }

    .pricing-card.horizontal {
        flex-direction: row;
        width: 100%;
        max-width: none;
    }

    .pricing-card.horizontal .pricing-header,
    .pricing-card.horizontal .pricing-body {
        width: 50%;
    }

    .pricing-card.horizontal .pricing-body ul {
        width: 100%;
        margin-bottom: 20px;
    }

    .pricing-card.horizontal .register-btn {
        width: 100%;
    }

    .special-discount {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .pricing-card.horizontal {
        flex-direction: column;
    }

    .pricing-card.horizontal .pricing-header,
    .pricing-card.horizontal .pricing-body {
        width: 100%;
    }
}

/* For 4 cards in a row on desktop */
@media (min-width: 1201px) {
    .pricing-card {
        width: calc(25% - 20px);
        max-width: 280px;
    }

    .virtual-pricing {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .pricing-card.horizontal {
        width: calc(50% - 20px);
        max-width: 580px;
    }
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.1);
}

.menu-toggle:hover {
    background-color: rgba(0, 0, 0, 0.2);
    color:#FFFFFF;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 25px;
    }
    
    .navigation {
        display: none;
        width: 100%;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        background: linear-gradient(to right, #1A8ECB, #1E4B7D);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .navigation.active {
        display: flex;
    }
}

.theme-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1200px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.col-6 {
    flex: 0 0 48%;
    padding: 15px;
}

@media (max-width: 768px) {
    .col-6 {
        flex: 0 0 100%;
    }
}

.sponsor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.sponsor-title {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2rem;
}

.sponsor-subtitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.sponsor-packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.sponsor-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sponsor-header {
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.sponsor-card.premium .sponsor-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
}

.sponsor-card.platinum .sponsor-header {
    background: linear-gradient(135deg, #8e9eab 0%, #eef2f3 100%);
    color: #333;
}

.sponsor-card.gold .sponsor-header {
    background: linear-gradient(135deg, #F09819 0%, #EDDE5D 100%);
    color: #333;
}

.sponsor-card.silver .sponsor-header {
    background: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
    color: white;
}

.sponsor-card.bronze .sponsor-header {
    background: linear-gradient(135deg, #b79891 0%, #94716B 100%);
    color: white;
}

.sponsor-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.sponsor-price {
    font-size: 1.5rem;
    font-weight: bold;
}

.sponsor-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #FF5722;
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 10px;
}

.sponsor-content {
    padding: 25px;
}

.sponsor-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f8f9fa;
    padding: 25px;
    text-align: center;
    color: #333;
}


.sponsor-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.sponsor-benefits li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.sponsor-benefits li i {
    color: #C6A75A;
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 3px;
}
.sponsor-benefits li i {
    color: #C6A75A;
    margin-right: 10px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.sponsor-btn {
    display: block;
    background: #1A8ECB;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.sponsor-btn:hover {
    background: #1E4B7D;
    color:#FFFFFF;
}

@media (max-width: 768px) {
    .sponsor-packages {
        flex-direction: column;
        align-items: center;
    }

    .sponsor-card {
        max-width: 100%;
    }
}

.footer {
    background-color: #f8f9fa;
    padding: 60px 0 20px;
    color: #333;
    border-top: 1px solid #e7e7e7;
}

.footer-heading {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: white;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1A8ECB;
}

.footer-content {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-wrapper i {
    color: white;
    font-size: 18px;
}

.contact-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.contact-info p,
.contact-info a {
    font-size: 16px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.contact-info a:hover {
    color: #1E4B7D;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e7e7e7;
}

.social-links {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #1A8ECB;
    color: white;
    border-radius: 50%;
    margin: 0 5px;
    text-align: center;
    line-height: 36px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #1E4B7D;
    transform: translateY(-3px);
}

.copyright {
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-address,
    .footer-contact {
        margin-bottom: 30px;
    }
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    transition: opacity 0.3s ease;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    width: 80%;
    max-width: 500px;
    height: 600px;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: modalFadeIn 0.4s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1060;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.close:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Additional responsive fixes for the modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-height: 700px) {
    .modal-content {
        height: 80vh;
        margin: 5% auto;
    }
}

.login-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.login-header {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.login-header img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.login-header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.conference-date {
    font-size: 14px;
    color: var(--accent-color);
}

.login-body {
    padding: 70px 50px;
}

.login-footer {
    padding: 20px 50px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.login-footer p {
    margin-bottom: 10px;
    color: #f0f0f0;
    font-size: 14px;
}

.login-footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.login-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-color);
    background: transparent;
    border: none;
    border-bottom: 2px solid #ddd;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.form-label {
    position: absolute;
    top: 12px;
    left: 0;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
    top: -12px;
    font-size: 12px;
    color: var(--secondary-color);
}

.toggle-password {
    position: absolute;
    right: 0;
    top: 15px;
    cursor: pointer;
    color: #999;
}

.error-message {
    color: var(--error-color);
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--error-color);
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
    color:#FFFFFF;
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
    color: #777;
}

.login-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.login-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-container {
        width: 100%;
    }

    .login-body {
        padding: 20px;
        padding-top: 100px;
    }
}

.hotel-container {
    margin-bottom: 30px;
}

.hotel-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hotel-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.hotel-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.hotel-image img {
    width: 100%;
    height: 100%; /* atau tinggi yang sesuai */
    object-fit: cover;
    border-radius: 12px; /* jika nak rounded */
    background: #f5f5f5; /* fallback bg */
    display: block;
    margin: auto;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-details {
    padding: 20px;
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-details h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    color: #333;
    font-weight: 600;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-links {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 10px;
    margin-top: auto;
}

.booking-link {
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.booking-button {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: all 0.3s ease;
    height: 40px;
}

.booking-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-button img {
    max-width: 100%;
    max-height: 30px;
    object-fit: contain;
}

.agoda-button img {
    max-width: 55px;
}

.booking-button img {
    max-width: 80px;
}

.see-more-container {
    margin-top: 30px;
    margin-bottom: 30px;
}

.view-more-btn,
.hide-more-btn {
    background-color: #008000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-more-btn:hover,
.hide-more-btn:hover {
    background-color: #006600;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color:#FFFFFF;
}

.hide-more-btn {
    background-color: #d9534f;
}

.hide-more-btn:hover {
    background-color: #c9302c;
    color:#FFFFFF;
}

.hotel-item {
    margin-bottom: 25px;
    transition: all 0.5s ease;
    display: flex;
}

.hotel-item>div {
    width: 100%;
}

@media (max-width: 768px) {
    .hotel-image {
        height: 180px;
    }

    .hotel-details h3 {
        font-size: 18px;
        min-height: 50px;
    }

    .hotel-links {
        flex-direction: column;
    }
}

/* Schedule Day Tabs Styles */
.schedule-days-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.day-tab {
    background-color: #f5f5f5;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 120px;
}

.day-tab span {
    display: block;
    padding: 2px 0;
}

.day-tab span:first-child {
    font-weight: bold;
    font-size: 1.1em;
    color: #1A8ECB;
}

.day-tab.active {
    background-color: #1A8ECB;
    color: white;
}

.day-tab.active span {
    color: white;
}

.day-content {
    margin-top: 15px;
}

/* Schedule Items Styles */
.schedule-item {
    margin-bottom: 20px;
    border-left: 5px solid #1A8ECB;
    padding-left: 20px;
    position: relative;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px 15px 70px;
}

.schedule-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon-container {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #1A8ECB;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.schedule-time {
    font-weight: bold;
    color: #1A8ECB;
    margin-bottom: 5px;
    font-size: 1.1em;
}

.schedule-title {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.schedule-title {
    font-size: 1.25rem; /* Example size */
    font-weight: bold;
    margin-bottom: 5px;
}

.schedule-subtitle {
    font-size: 1rem; /* Smaller than .schedule-title */
    font-weight: normal;
    color: #555; /* Optional: lighter color */
    margin-bottom: 5px;
}

.schedule-speaker {
    color: #555;
    margin-bottom: 5px;
    font-weight: 500;
}

.schedule-description {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 5px;
}

.schedule-venue {
    font-size: 0.9em;
    color: #777;
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.schedule-venue i {
    margin-right: 5px;
    color: #1A8ECB;
}

.schedule-session {
    margin-top: 5px;
    font-style: italic;
    color: #666;
    font-size: 0.9em;
}

.no-events {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 5px;
    color: #777;
    font-style: italic;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .day-tab {
        min-width: 100px;
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .schedule-item {
        padding: 15px 15px 15px 60px;
    }

    .icon-container {
        width: 35px;
        height: 35px;
        font-size: 16px;
        left: 10px;
    }
}