/* -----------------------------------------------------------
   GLOBAL RESET
-----------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #f4f9ff;
    color: #003b73;
    line-height: 1.6;
}

/* -----------------------------------------------------------
   NAVBAR
-----------------------------------------------------------*/
.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
    padding: 22px 40px;
    background: #002e5d;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
}

.logo-container {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 0;
}

.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.logo-box p {
    margin-top: 6px;
    color: #e5efff;
    font-size: 13px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 25px;
    margin-left: auto;
    padding-right: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #a5d8ff;
}

.menu-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* -----------------------------------------------------------
   HERO SECTION
-----------------------------------------------------------*/
.hero {
    padding-top: 20px;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 80px;

    background: linear-gradient(to right, #e8f3ff, #c7e5ff);
}

.hero-title {
    text-align: center;
    margin-bottom: 35px;
    padding-left: 80px;
    padding-right: 80px;
}

.hero-title h1 {
    font-size: 44px;
    font-weight: 800;
    color: #003060;
    margin: 0;
}
.hero-title h2 {
    font-size: 36px;
    margin: 0;
    font-weight: 800;
    color: #0050a0;
}
/* Red letter for leading 'i' in iTMD 2026 */
.red-letter {
    color: red;
}
.hero-title h3 {
    font-size: 26px;
    margin-top: 6px;
    color: #003060;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 80px;
    padding-right: 80px;
}

.hero-content {
    max-width: 50%;
}

.info-box {
    background: rgba(255, 255, 255, 0.65);
    border-left: 5px solid #0057b7;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.info-box p {
    font-size: 16px;
    font-weight: 600;
    margin: 6px 0;
}

.info-box .line1 {
    font-size: 18px;
    font-weight: 700;
}

.btn {
    padding: 12px 24px;
    background: #0057b7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #003e82;
}

/* -----------------------------------------------------------
   SLIDESHOW
-----------------------------------------------------------*/
.slideshow-container {
    width: 40%;
    height: 330px;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    margin-top: 30px;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------------------------------------
   SECTIONS
-----------------------------------------------------------*/
.section {
    padding: 80px;
    background: white;
}

.section.alt {
    background: #edf5ff;
}

.section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #003060;
}

/* -----------------------------------------------------------
   ABOUT GALLERY
-----------------------------------------------------------*/
.about-gallery {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.about-img-box {
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.about-img-box:hover {
    transform: translateY(-10px) scale(1.04);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------------------------------------
   ABOUT CONFERENCE — 2 COLUMN LAYOUT
-----------------------------------------------------------*/
/* -----------------------------------------------------------
   ABOUT CONFERENCE — FIXED 50–50 LAYOUT CENTERED
-----------------------------------------------------------*/
.conference-container {
    display: flex;
    justify-content: center;   /* keeps both centered */
    align-items: stretch;   
    gap: 40px;
}

/* LEFT BOX FIXED WIDTH */
.conference-left {
    flex: 1;
    max-width: 50%;             /* ensures EXACT 50% width */
}

/* RIGHT BOX FIXED WIDTH */
.conference-right {
    flex: 1;
    max-width: 50%;
}

/* Style for both boxes */
.conference-container .box {
    background: white;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    height: 100%;
}

.conference-container .box:hover {
    transform: translateY(-6px);
}

/* Text inside left */
.conference-left p {
    line-height: 1.7;
    font-size: 16px;
    color: #003760;
    text-align: justify;
}

/* Highlight list stays same */
.highlight-list {
    list-style: none;
    padding-left: 0;
    margin-top: 18px;
}

.highlight-list li {
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: #003760;
    border-bottom: 1px solid #d4e6ff;
}

.highlight-list li:last-child {
    border-bottom: none;
}

/* Mobile stacking */
@media (max-width: 900px) {
    .conference-container {
        flex-direction: column;
    }

    .conference-left,
    .conference-right {
        max-width: 100%;
    }
}


/* -----------------------------------------------------------
   THEMATIC AREAS
-----------------------------------------------------------*/
.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.track-box {
    background: white;
    padding: 18px;
    border-left: 6px solid #0057b7;
    border-radius: 10px;
    font-weight: 600;
    color: #00325f;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.track-box:hover {
    transform: translateY(-6px);
}

/* New 4-Track Grid Layout */
.tracks-grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.track-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.track-title {
    background: linear-gradient(135deg, #0057b7, #003b73);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 18px;
    text-align: center;
}

.track-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-list li {
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid #e8f0ff;
    color: #003b73;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

.track-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0057b7;
    font-weight: bold;
    font-size: 18px;
}

.track-list li:hover {
    background-color: #f0f6ff;
    padding-left: 26px;
    transition: 0.2s ease;
}

.track-list li:last-child {
    border-bottom: none;
}

/* -----------------------------------------------------------
   INVITED SPEAKERS
-----------------------------------------------------------*/
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.speaker-card {
    background: white;
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.speaker-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.speaker-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    background: #dce9ff;
}

.speaker-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* -----------------------------------------------------------
   COMMITTEE GRID
-----------------------------------------------------------*/
.committee-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.committee-card {
    background: white;
    padding: 26px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: 0.35s;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.committee-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Two-column layout for advisory committee */
.advisory-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.advisory-column {
    text-align: left;
}

.committee-role {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0057b7;
    padding: 6px 16px;
    border-radius: 999px;
    color: white;
    font-size: 13px;
    font-weight: 700;
}

.committee-img-box {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    background: #dce9ff;
    margin: 20px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.committee-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.full {
    grid-column: 1 / -1;
}

.advisory-card ul {
    text-align: left;
    padding-left: 25px;
    line-height: 1.6;
}

/* Center Chief Patron + Patron */
.committee-grid > span {
    visibility: hidden;
}

/* -----------------------------------------------------------
   REGISTRATION + ABSTRACT
-----------------------------------------------------------*/
.reg-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reg-box {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.reg-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.reg-left {
    flex: 1;
}

.reg-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #003f8f;
}

.reg-link {
    color: #0057b7;
    font-weight: 600;
}

.reg-list {
    margin-left: 18px;
    line-height: 1.6;
}

.reg-list li {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
}

/* QR Box */
.reg-qr {
    width: 180px;
    height: 180px;
    border-radius: 14px;
    background: #e3f0ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* -----------------------------------------------------------
   REGISTRATION TABLE — NOW BIG, CLEAR, BEAUTIFUL
-----------------------------------------------------------*/
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

table th {
    background: #0057b7;
    color: white;
    padding: 14px;
    font-size: 18px;
}

table td {
    padding: 14px;
    border: 1px solid #c6d9f5;
}

table tr:nth-child(even) {
    background: #f0f6ff;
}

table tr:hover {
    background: #e2eeff;
}

/* -----------------------------------------------------------
   RESPONSIVE
-----------------------------------------------------------*/
@media (max-width: 1000px) {
    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-bottom {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .slideshow-container {
        width: 100%;
        height: 260px;
    }

    .committee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: #002e5d;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-btn {
        display: block;
        color: white;
    }

    .reg-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .committee-grid {
        grid-template-columns: 1fr;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }
}
/* Four-column grid to center Chief Patron + Patron symmetrically */
.committee-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

/* Empty columns take space but stay invisible */
.empty-col {
    visibility: hidden;
}
/* CONTACT SECTION LAYOUT */
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 20px;
}

.contact-left {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #003060;
}

.contact-map {
    flex: 1;
    min-height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-map {
        width: 100%;
        height: 280px;
    }
}
footer {
    background: #002e5d !important;
    color: white !important;
    text-align: center;
    padding: 22px;
    font-size: 15px;
    margin-top: 40px;
}
/* -----------------------------------------------------------
   TOURIST ATTRACTIONS SECTION
-----------------------------------------------------------*/
.tourist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.tourist-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: 0.35s ease-in-out;
}

.tourist-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 60, 120, 0.25);
}

.tourist-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 14px;
    background: #dce9ff;
    margin-bottom: 15px;
    transition: 0.4s ease-in-out;
}

.tourist-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.tourist-card:hover .tourist-img-box img {
    transform: scale(1.12);
}

.tourist-title {
    margin-top: 10px;
    font-size: 18px;
    color: #003d75;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
    .tourist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .tourist-grid {
        grid-template-columns: 1fr;
    }
}
/* -----------------------------------------------------------
   PARTNERS & SPONSORS
-----------------------------------------------------------*/
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    align-items: center;
    justify-items: center;
}

.partner-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    transition: 0.35s ease;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 60, 120, 0.22);
}

.partner-img-box {
    width: 100%;
    height: 160px;
    padding: 10px;
    background: #eaf2ff;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.3s ease-in-out;
}

.partner-card:hover img {
    transform: scale(1.12);
}

.partner-name {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #003d75;
}

/* Responsive */
@media (max-width: 800px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partner-card {
        max-width: 450px;
        width: 90%;
    }
}
/* -----------------------------------------------------------
   PARTNERS & SPONSORS — COMPACT VERSION
-----------------------------------------------------------*/

.partners-grid.compact {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.partner-card.compact-card {
    background: #ffffff;
    padding: 16px 18px;
    border-radius: 10px;
    width: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.partner-card.compact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.partner-img-box.compact-img {
    width: 100%;
    height: 80px;
    background: #eef5ff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-img-box.compact-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-name.compact-name {
    margin-top: 10px;
    font-size: 14px;
    color: #003d75;
    font-weight: 600;
}

/* Enlarged card for Media Partner */
.partner-card.enlarged-card {
    width: 280px;
    padding: 24px 20px;
}

.partner-img-box.enlarged-img {
    height: 150px;
}

/* Mobile */
@media (max-width: 600px) {
    .partner-card.compact-card {
        width: 150px;
    }
}
/* -----------------------------------------------------------
   HOME INFO 3-COLUMN HIGH-TECH SECTION
-----------------------------------------------------------*/
.home-info-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 25px rgba(0, 70, 140, 0.25);
    border: 2px solid rgba(0, 80, 160, 0.25);
    transition: 0.35s ease;
    overflow: hidden;
    position: relative;
}

/* NEON BORDER HOVER */
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0, 80, 160, 0.35);
    border-color: #007bff;
}

/* HEADER STYLE */
.info-card h3 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
    color: #003d75;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SCROLLING CONTENT */
.scroll-box {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.scroll-box p {
    font-size: 15px;
    margin-bottom: 15px;
    animation: scroll-up 9s linear infinite;
    font-weight: 600;
    color: #003b73;
}

/* SMOOTH AUTO-SCROLL KEYFRAMES */
@keyframes scroll-up {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-120%); }
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
/* -----------------------------------------------------------
   TIMELINE SECTION
-----------------------------------------------------------*/
.timeline-section {
    text-align: center;
}

.timeline-container {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0;
}

/* Horizontal line */
.timeline-container::before {
    content: "";
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #004a99, #0084ff);
    opacity: 0.4;
    border-radius: 20px;
}

/* Each timeline step */
.timeline-item {
    position: relative;
    width: 24%;
    text-align: center;
}

/* Neon circle marker */
.timeline-dot {
    width: 22px;
    height: 22px;
    background: #0084ff;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 12px rgba(0, 132, 255, 0.9);
    border: 3px solid white;
    position: relative;
    z-index: 10;
}

/* Content box */
.timeline-content {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.7);
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #003b73;
}

.timeline-content p {
    font-size: 16px;
    margin-top: 6px;
    font-weight: 600;
    color: #0057b7;
}

/* Hover glow */
.timeline-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 120, 255, 0.35);
}

/* -----------------------------------------------------------
   RESPONSIVE TIMELINE (STACKS VERTICALLY)
-----------------------------------------------------------*/
@media (max-width: 900px) {
    .timeline-container {
        flex-direction: column;
        gap: 50px;
    }

    .timeline-container::before {
        display: none;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-dot {
        margin-bottom: 10px;
    }

    .timeline-content {
        width: 80%;
        margin: 0 auto;
    }
}
/* -----------------------------------------------------------
   POPUP OVERLAY
-----------------------------------------------------------*/
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

/* -----------------------------------------------------------
   POPUP BOX
-----------------------------------------------------------*/
#register-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 420px;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 28px;
    transform: translate(-50%, -50%) scale(0.7);
    box-shadow: 0px 15px 30px rgba(0,0,0,0.3);
    z-index: 4000;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

/* POPUP SHOW STATE */
#popup-overlay.active,
#register-popup.active {
    opacity: 1;
    visibility: visible;
}

#register-popup.active {
    transform: translate(-50%, -50%) scale(1);
}

/* -----------------------------------------------------------
   POPUP CONTENT
-----------------------------------------------------------*/
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h2 {
    font-size: 22px;
    color: #003b73;
    font-weight: 800;
}

.popup-close {
    font-size: 28px;
    cursor: pointer;
    font-weight: bold;
    color: #003b73;
    transition: 0.2s;
}
.popup-close:hover {
    color: #0070f3;
}

#register-popup p {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #003b73;
}

.popup-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #0057b7;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.popup-btn:hover {
    background: #00408a;
}

/* MOBILE */
@media (max-width: 500px) {
    #register-popup {
        width: 90%;
    }
}
/* -----------------------------------------------------------
   TOURIST ATTRACTIONS SECTION
-----------------------------------------------------------*/
.tourist-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin-top: 35px;
}

.tourist-card {
    background: white;
    padding: 14px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    transition: 0.3s ease;
}

.tourist-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.20);
}

.tourist-img-box {
    width: 100%;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    background: #dce9ff;
}

.tourist-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tourist-title {
    margin-top: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #003060;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .tourist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .tourist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 450px) {
    .tourist-grid {
        grid-template-columns: 1fr;
    }
}
/* PARTNERS & SPONSORS — SPACING ADJUSTED */
.partners-grid.compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;  /* spacing between sponsor cards */
    margin-top: 35px; /* spacing from title */
}

.compact-card {
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.compact-card:hover {
    transform: translateY(-5px);
}

.compact-img img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.compact-name {
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #003060;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.brochure-btn {
    display: inline-block;
    text-decoration: none;
    background: #008B5E; /* elegant green color */
}

.brochure-btn:hover {
    background: #006b47;
}
.more-coming {
    margin-top: 20px;
    text-align: center;
    font-style: italic;
    font-size: 0.95rem;
    color: #777;
    letter-spacing: 0.5px;
}
.main-email {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-person {
    margin-bottom: 14px;
}

.contact-name {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.contact-detail {
    margin: 0;
    font-size: 0.95rem;
}
.main-email {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-person {
    margin-bottom: 16px;
}

.contact-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
}

.contact-info {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}
.contact-logo {
    margin-bottom: 14px;
}

.contact-logo img {
    max-width: 140px;
    height: auto;
}
.reg-left a {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
}

.reg-left a:hover {
    text-decoration: underline;
}
.contact-logo img {
    max-width: 140px;   /* desktop safe size */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 12px; /* centers image */
}
.contact-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    max-width: 1100px;
   
}
.contact-left,
.contact-map {
    flex: 1;
}
.contact-name {
    margin-top: 14px;        /* space before each name */
    margin-bottom: 4px;      /* space between name and email line */
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.contact-info {
    margin: 0 0 10px 0;      /* space after email/phone line */
    font-size: 0.95rem;
    color: #555;
}
.contact-person {
    padding-bottom: 10px;
    border-bottom: 1px dashed #e5e7eb;
}

.contact-person:last-child {
    border-bottom: none;
}
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    
    gap: 30px;
}

.contact-left {
    flex: 1;
    text-align: left;
}

.contact-logo img {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 0 12px 0;
}

.contact-name {
    margin-top: 14px;
    margin-bottom: 4px;
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-info {
    margin-bottom: 10px;
    font-size: 0.95rem;
}
#contact h2 {
    text-align: left;
    margin-bottom: 16px;
}

.contact-left {
    text-align: left;
    margin-top: 0;
}
.contact-logo {
    margin: 0 0 12px 0;
}

.contact-logo img {
    display: block;
    margin: 0;          /* removes centering */
    max-width: 140px;   /* keep size */
    height: auto;
}
/* ================= CONTACT FINAL FIX ================= */

#contact.section {
    padding-left: 80px;
    padding-right: 80px;
}

#contact h2 {
    text-align: left;
    margin-bottom: 12px;
}

/* Layout */
.contact-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Left column */
.contact-left {
    flex: 1;
    text-align: left;
}

/* Logo */
.contact-logo {
    margin: 0 0 12px 0;
}

.contact-logo img {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0;   /* 🔥 NO AUTO */
}

/* Email */
.main-email {
    margin-bottom: 16px;
}

/* Contact persons */
.contact-person {
    padding-bottom: 12px;
}

.contact-name {
    margin-top: 14px;
    margin-bottom: 4px;
    font-size: 1.15rem;
    font-weight: 700;
}

.contact-info {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
}

/* Map */
.contact-map {
    flex: 1;
}

/* Mobile */
@media (max-width: 900px) {
    #contact.section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-container {
        flex-direction: column;
    }
}
/* ===== Contact Header (Logo + Email + Socials) ===== */

.contact-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

/* Logo */
.contact-logo img {
    max-width: 140px;
    height: auto;
    display: block;
}

/* Right side info */
.contact-header-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Email line */
.contact-header-email {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #003060;
}

/* Social icons row */
.contact-socials {
    display: flex;
    gap: 10px;
}

.contact-socials a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contact-socials a:hover {
    transform: scale(1.15);
    opacity: 0.8;
}
/* ===== Contact Social Media Icons ===== */

.contact-socials {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.contact-socials a {
    font-size: 1.25rem;
    color: #003060;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease;
}

/* Brand hover colors */
.contact-socials a:hover {
    transform: scale(1.2);
}

.contact-socials a:hover .fa-linkedin-in {
    color: #0a66c2;
}

.contact-socials a:hover .fa-facebook-f {
    color: #1877f2;
}

.contact-socials a:hover .fa-x-twitter {
    color: #000000;
}

.contact-socials a:hover .fa-instagram {
    color: #e1306c;
}

.contact-socials a:hover .fa-youtube {
    color: #ff0000;
}







/* Reduce vertical spacing between contacts */

.contact-person {
    padding-bottom: 6px;     /* reduced from ~10–14px */
    margin-bottom: 6px;
    border-bottom: 1px dashed #e5e7eb;
}

.contact-person:last-child {
    border-bottom: none;
}

.contact-name {
    margin-top: 8px;         /* reduced from 14px */
    margin-bottom: 2px;     /* tighter gap to email line */
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-info {
    margin: 0 0 6px 0;      /* reduced bottom spacing */
    font-size: 0.95rem;
    color: #555;
}
/* ===== GLOBAL SCROLL SPACE FIX ===== */

html {
    scroll-padding-top: 120px;
}

.section {
    padding: 60px 80px;
    overflow: hidden;
}

.hero {
    min-height: calc(100vh - 100px);
}

.section > *:last-child {
    margin-bottom: 0;
}
/* ===== Announcement Ribbon ===== */

.announcement-ribbon {
    position: fixed;
    top: 90px; /* adjust to exactly match your navbar height */
    left: 0;
    width: 100%;
    height: 32px; /* small & elegant */
    background: linear-gradient(90deg, #0057b7, #0084ff);
    overflow: hidden;
    z-index: 1500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.ribbon-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 32px;
    animation: ribbon-scroll 14s linear infinite;
}

/* Smooth scrolling animation */
@keyframes ribbon-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
body {
    padding-top: 32px;
}
/* ===== Announcement Ribbon (FIXED & WORKING) ===== */

.announcement-ribbon {
    position: fixed;
    top: 88px; /* EXACTLY below navbar */
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(90deg, #004aad, #007bff);
    overflow: hidden;
    z-index: 1999; /* below navbar (2000), above content */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.ribbon-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 30px;
    animation: ribbon-scroll 14s linear infinite;
}

@keyframes ribbon-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.hero {
    padding-top: 230px; /* navbar + ribbon spacing */
}
/* ===== Announcement Ribbon (FINAL WORKING VERSION) ===== */

.announcement-ribbon {
    position: sticky;
    top: 80px; /* sticks just below navbar */
    width: 100%;
    height: 32px;
    background: linear-gradient(90deg, #0057b7, #0084ff);
    overflow: hidden;
    z-index: 1500;
}

.announcement-ribbon span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 32px;
    animation: ribbon-scroll 14s linear infinite;
}

@keyframes ribbon-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
/* NAVBAR RIBBON SUPPORT */
.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding: 22px 40px;
    justify-content: flex-start;
}

.navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ribbon */
.navbar-ribbon {
    height: 30px;
    background: linear-gradient(90deg, #003b73, #0057b7);
    overflow: hidden;
}

.navbar-ribbon span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 30px;
    animation: ribbon-scroll 16s linear infinite;
}

@keyframes ribbon-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
/* ===== NAVBAR STRUCTURE ===== */

.navbar {
    display: flex;
    flex-direction: row;
    background: #002e5d;
    align-items: center;
    gap: 80px;
    padding: 22px 40px;
    justify-content: flex-start;
}

/* Logo row */
.navbar-logos {
    padding: 14px 40px;
}

/* Ribbon row */
.navbar-ribbon {
    height: 30px;
    background: linear-gradient(90deg, #003b73, #0057b7);
    overflow: hidden;
}

.navbar-ribbon span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    line-height: 30px;
    animation: ribbon-scroll 16s linear infinite;
}

/* Navigation row */
.navbar-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
}

/* Animation */
@keyframes ribbon-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
/* ===== INLINE NAVBAR RIBBON ===== */

.navbar {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 22px 40px;
    justify-content: flex-start;
}

/* Ribbon sits between logo & tabs */
.navbar-ribbon-inline {
    flex: 1;
    height: 100px;
    overflow: hidden;
    background: linear-gradient(90deg, #003b73, #0057b7);
    border-radius: 15px;
    margin: 0 40px;
    width: auto;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

/* Scrolling text */
.navbar-ribbon-inline span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.8;
    animation: ribbon-scroll 18s linear infinite;
}

/* Animation */
@keyframes ribbon-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
/* ===== ONE-LINE NAVBAR WITH INLINE RIBBON ===== */

.navbar {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Ribbon only occupies middle space */
.navbar-ribbon-inline {
    flex: 1;                     /* key line */
    height: 65px;
    overflow: hidden;
    background: linear-gradient(90deg, #003b73, #0057b7);
    border-radius: 25px;
    margin: 0 60px;
    display: flex;
    align-items: center;
}

/* Moving text */
.navbar-ribbon-inline span {
    white-space: nowrap;
    padding-left: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    animation: ribbon-scroll 18s linear infinite;
}

/* Animation */
@keyframes ribbon-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
/* ===== FORCE SINGLE-LINE NAVBAR ===== */

.navbar {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;          /* 🔥 PREVENT LINE BREAKS */
    overflow: hidden;
}

/* Logos should NOT shrink */
.logo-container {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* Ribbon takes ONLY remaining middle space */
.navbar-ribbon-inline {
    flex: 1 1 auto;
    min-width: 0;               /* 🔥 allows scrolling text to clip */
    height: 65px;
    overflow: hidden;
    background: linear-gradient(90deg, #003b73, #0057b7);
    border-radius: 25px;
    margin: 0 60px;
    display: flex;
    align-items: center;
}

/* Ribbon text */
.navbar-ribbon-inline span {
    white-space: nowrap;
    padding-left: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    animation: ribbon-scroll 18s linear infinite;
}

/* Nav tabs must stay on ONE line */
.nav-links {
    display: flex;
    flex-wrap: nowrap;          /* 🔥 PREVENT TAB WRAP */
    gap: 22px;
    flex-shrink: 0;
}

/* Mobile menu button should not push layout */
.menu-btn {
    flex-shrink: 0;
}

/* Animation */
@keyframes ribbon-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}
/* ===== FORCE ONE-LINE NAVBAR USING GRID ===== */

.navbar-grid {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    gap: 40px !important;
    padding: 22px 40px !important;
    white-space: nowrap !important;
}

/* Logos */
.logo-container {
    display: flex;
    gap: 16px;
}

/* Ribbon */
.navbar-ribbon-inline {
    height: 65px;
    overflow: hidden;
    background: linear-gradient(90deg, #003b73, #0057b7);
    border-radius: 25px;
    margin: 0 60px;
}

.navbar-ribbon-inline span {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 65px;
    animation: ribbon-scroll 18s linear infinite;
}

/* Nav links */
.nav-links {
    display: flex !important;
    gap: 15px !important;
    margin-left: auto !important;
}

/* Prevent wrapping anywhere */
.logo-container,
.nav-links,
.navbar-ribbon-inline span {
    white-space: nowrap;
}

/* Animation */
@keyframes ribbon-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
/* Space before nav tabs */
.nav-links {
    margin-left: 14px;   /* 👈 adjust (10–20px) if needed */
}
/* Space between nav items */
.nav-links li {
    margin-right: 14px;  /* spacing between tabs */
}

/* Remove extra space after last item */
.nav-links li:last-child {
    margin-right: 0;
}
.nav-links {
    gap: 18px;           /* modern spacing */
}

.nav-links li {
    list-style: none;    /* ensures no default bullets */
}
/* ===== NAV TABS WITH BULLETS ===== */

.nav-links {
    display: flex;
    align-items: center;
}

/* Each tab */
.nav-links li {
    list-style: none;            /* remove default bullets */
    position: relative;
    padding-left: 14px;          /* space for bullet */
    margin-right: 16px;          /* space between tabs */
}

/* Bullet before each tab */
.nav-links li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #a5d8ff;              /* soft blue bullet */
    font-size: 18px;
    line-height: 1;
}

/* Remove extra space after last tab */
.nav-links li:last-child {
    margin-right: 0;
}
/* Add space after logo before ribbon text starts */
.navbar-ribbon-inline {
    padding-left: 16px;   /* 👈 space from logo */
}
.navbar-ribbon-inline {
    padding-left: 20px;
}
