:root {
    --green: #1a6b3c;
    --green-dark: #124d2b;
    --green-light: #e8f5ee;
    --gold: #c9a84c;
    --gold-light: #f5ecd5;
    --text: #1a1a2e;
    --muted: #5a6272;
    --white: #ffffff;
    --border: #dde3ec;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #f4f7f4;
    color: var(--text);
    line-height: 1.6;
}

/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2d8a52 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 50px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: var(--gold);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(26px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero h1 span {
    color: var(--gold);
}

.hero .sub-event {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 20px;
}

.hero .theme {
    font-style: italic;
    font-size: 16px;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 0;
    margin: 20px 0 28px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.meta-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.meta-chip svg {
    flex-shrink: 0;
}

/* ── ABOUT ── */
.section {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
}

.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--green), transparent);
    border-radius: 2px;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.hcard {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--green);
}

.hcard .icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.hcard h3 {
    font-size: 15px;
    color: var(--green-dark);
    font-weight: 700;
}

.hcard p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

/* ── PROGRAMME ── */
.programme-section {
    background: var(--white);
}

.programme-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trow {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.trow:last-child {
    border-bottom: none;
}

.ttime {
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    padding-top: 2px;
    white-space: nowrap;
}

.tprog {
    font-size: 14px;
    color: var(--text);
}

.tprog.highlight {
    font-weight: 700;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 4px solid var(--green);
}

/* ── REGISTRATION ── */
.reg-section {
    background: var(--green-light);
}

.reg-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
}

.reg-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    background: var(--white);
    padding: 6px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.tab-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
    color: var(--muted);
}

.tab-btn.active {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26, 107, 60, 0.35);
}

.tab-btn.active.gold {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
}

.form-panel {
    display: none;
}

.form-panel.active {
    display: block;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--border);
}

.form-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--green-dark);
}

.form-header p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 4px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

@media (max-width: 580px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: auto;
    }

    .trow {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .ttime {
        color: var(--gold);
        font-size: 12px;
    }
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-dark);
}

.field label span {
    color: #c0392b;
    margin-left: 2px;
}

.field input,
.field select,
.field textarea {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(26, 107, 60, 0.12);
    background: var(--white);
}

.field textarea {
    resize: vertical;
    min-height: 80px;
}

.section-divider {
    grid-column: 1 / -1;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--green);
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text);
}

.check-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--green);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.submit-btn.buyer {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(26, 107, 60, 0.3);
}

.submit-btn.buyer:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.submit-btn.seller {
    background: var(--gold);
    color: var(--green-dark);
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
}

.submit-btn.seller:hover {
    background: #b8942e;
    transform: translateY(-1px);
}

.disclaimer {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
}

/* ── SUCCESS ── */
.success-msg {
    display: none;
    background: var(--green-light);
    border: 2px solid var(--green);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    margin-top: 20px;
}

.success-msg h3 {
    color: var(--green-dark);
    font-size: 20px;
    margin-bottom: 8px;
}

.success-msg p {
    color: var(--muted);
    font-size: 14px;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}



.gallery img {
    width: 100%;
    height: auto;
    border-radius: 1px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

.hero-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero-banner img {
    position: relative;
    z-index: -1;
}

.address {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.3;
}

.hoverlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-div {
    position: absolute;
}

.hero-text {
    color: #fff;
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
    white-space: normal;
    overflow: hidden;
}


.page-header {
    padding-top: 75px;
    /*padding-bottom: 75px;*/

}

/* =========================================
   PREMIUM PAHANG ABOUT SECTION
========================================= */

.premium-about {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 5% 20%, rgba(184, 148, 72, 0.08), transparent 30%),
        radial-gradient(circle at 95% 80%, rgba(12, 68, 55, 0.08), transparent 30%),
        #f8f7f2;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

/* subtle background decoration */

.premium-about::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(166, 130, 55, 0.12);
    border-radius: 50%;
    left: -180px;
    top: 80px;
}

.premium-about::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(166, 130, 55, 0.1);
    border-radius: 50%;
    right: -130px;
    bottom: 40px;
}


/* =========================================
   HEADING
========================================= */

.premium-section-header {
    position: relative;
    z-index: 2;
}

.about-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #a27b32;
}

.premium-section-header h2 {
    margin: 0;
    color: #123f35;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.premium-section-header h2 span {
    color: #a27b32;
}

.gold-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.gold-line::before,
.gold-line::after {
    content: "";
    width: 55px;
    height: 1px;
    background: #c5a45d;
}

.gold-line span {
    width: 7px;
    height: 7px;
    background: #c5a45d;
    transform: rotate(45deg);
}


/* =========================================
   IMAGE
========================================= */

.premium-image-wrap {
    position: relative;
    max-width: 510px;
    margin: 0 auto;
    padding: 0 18px 18px 0;
}

.premium-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.16);
}

.premium-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.premium-image-wrap:hover .premium-image img {
    transform: scale(1.04);
}

/* Gold frame */

.image-frame {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 90%;
    height: 92%;
    border: 1px solid #b7954b;
    border-radius: 6px;
    z-index: 1;
}

/* Image caption */

.image-caption {
    position: absolute;
    z-index: 3;
    left: -15px;
    bottom: 35px;
    background: #123f35;
    color: #fff;
    padding: 13px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.image-caption::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 0;
    border-top: 21px solid #123f35;
    border-bottom: 21px solid #123f35;
    border-right: 10px solid transparent;
}


/* =========================================
   CONTENT
========================================= */

.premium-content {
    position: relative;
    padding-left: 35px;
}

.content-number {
    position: absolute;
    left: -5px;
    top: -35px;
    font-size: 75px;
    line-height: 1;
    font-weight: 700;
    color: rgba(18, 63, 53, 0.06);
    pointer-events: none;
}

.premium-content p {
    position: relative;
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}


/* =========================================
   WEBSITE LINK
========================================= */

.about-link {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(18, 63, 53, 0.15);
}

.about-link span {
    display: block;
    margin-bottom: 7px;
    color: #888;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-link a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #123f35;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.about-link a i {
    font-size: 12px;
    color: #a27b32;
    transition: transform .3s ease;
}

.about-link a:hover {
    color: #a27b32;
}

.about-link a:hover i {
    transform: translate(3px, -3px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .premium-about {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .premium-section-header {
        margin-bottom: 40px !important;
    }

    .premium-image-wrap {
        max-width: 600px;
        margin-bottom: 25px;
    }

    .premium-image img {
        height: 420px;
    }

    .premium-content {
        padding-left: 0;
    }

    .content-number {
        display: none;
    }
}

@media (max-width: 575px) {

    .premium-about {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .about-eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .premium-section-header h2 {
        font-size: 30px;
    }

    .premium-image-wrap {
        padding-right: 10px;
        padding-bottom: 10px;
    }

    .premium-image img {
        height: 320px;
    }

    .image-caption {
        left: 0;
        bottom: 25px;
        padding: 11px 17px;
        font-size: 10px;
    }

    .premium-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-link a {
        font-size: 14px;
    }
}

/* =========================================
   PREMIUM ORGANISING CHAIR SECTION
========================================= */

.premium-chair {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 20%, rgba(166, 130, 55, 0.08), transparent 30%),
        radial-gradient(circle at 5% 80%, rgba(18, 63, 53, 0.07), transparent 30%),
        #f8f7f2;
    padding-top: 85px !important;
    padding-bottom: 85px !important;
}

/* Decorative circles */

.premium-chair::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(166, 130, 55, 0.12);
    border-radius: 50%;
    left: -190px;
    top: 50px;
}

.premium-chair::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(166, 130, 55, 0.1);
    border-radius: 50%;
    right: -140px;
    bottom: -80px;
}


/* =========================================
   HEADER
========================================= */

.premium-chair-header {
    position: relative;
    z-index: 2;
}

.premium-chair-header p {
    margin: 0;
    color: #a27b32;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.premium-chair-header h2 {
    margin-bottom: 0;
    color: #123f35;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
}

.chair-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.chair-divider::before,
.chair-divider::after {
    content: "";
    width: 55px;
    height: 1px;
    background: #c5a45d;
}

.chair-divider span {
    width: 7px;
    height: 7px;
    background: #c5a45d;
    transform: rotate(45deg);
}


/* =========================================
   IMAGE
========================================= */

.chair-image-wrap {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 15px 15px 0;
}

.chair-image {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
}

.chair-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.chair-image-wrap:hover .chair-image img {
    transform: scale(1.04);
}


/* Gold frame */

.chair-image-frame {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 92%;
    height: 94%;
    border: 1px solid #b7954b;
    border-radius: 8px;
    z-index: 1;
}


/* Image badge */

.chair-badge {
    position: absolute;
    z-index: 3;
    left: -20px;
    bottom: 30px;
    background: #123f35;
    color: #fff;
    padding: 12px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.chair-badge span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================
   CONTENT
========================================= */

.premium-chair-content {
    position: relative;
    padding: 40px 45px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(18, 63, 53, .08);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
}

.premium-chair-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: linear-gradient(to bottom,
            transparent,
            #b7954b,
            transparent);
}


/* Quote */

.quote-mark {
    position: absolute;
    right: 30px;
    top: 5px;
    font-family: Georgia, serif;
    font-size: 100px;
    line-height: 1;
    color: rgba(166, 130, 55, .10);
}


/* Paragraph */

.premium-chair-content .gift-content {
    position: relative;
    z-index: 2;
}

.premium-chair-content .gift-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.85;
}

.premium-chair-content .gift-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   SIGNATURE
========================================= */

.chair-signature {
    position: relative;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(18, 63, 53, .12);
}

.chair-signature strong {
    color: #123f35;
    font-size: 18px;
}

.chair-signature b {
    color: #8a6a2d;
    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .premium-chair {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .premium-chair-header {
        margin-bottom: 35px !important;
    }

    .chair-image-wrap {
        max-width: 320px;
        margin-bottom: 15px;
    }

    .premium-chair-content {
        padding: 35px 30px;
    }
}


@media (max-width: 575px) {

    .premium-chair {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .premium-chair-header p {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .premium-chair-header h2 {
        font-size: 30px;
    }

    .chair-image img {
        height: 330px;
    }

    .chair-badge {
        left: -5px;
        bottom: 20px;
        padding: 10px 14px;
    }

    .chair-badge span {
        font-size: 9px;
    }

    .premium-chair-content {
        padding: 30px 22px;
    }

    .premium-chair-content .gift-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .quote-mark {
        font-size: 70px;
        right: 15px;
    }

    .chair-signature strong {
        font-size: 16px;
    }

    .chair-signature b {
        font-size: 12px;
    }
}

/* =========================================
   PREMIUM PAGE HEADER
========================================= */

.page-header {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 75px 0 65px;
    display: flex;
    align-items: center;

    background:
        radial-gradient(circle at 15% 50%, rgba(181, 145, 68, 0.18), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(135deg, #0c3028 0%, #123f35 50%, #0a2822 100%);
}

/* Decorative overlay */
.page-header .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(9, 35, 29, 0.25),
            transparent 50%,
            rgba(9, 35, 29, 0.2));
    pointer-events: none;
}

/* Subtle decorative circle */
.page-header::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(198, 164, 91, 0.18);
    border-radius: 50%;
    left: -150px;
    top: -100px;
}

.page-header::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(198, 164, 91, 0.12);
    border-radius: 50%;
    right: -90px;
    bottom: -110px;
}

/* Content */
.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header-content-area {
    text-align: center;
}

/* Title */
.page-header .ph-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Gold line below title */
.page-header .ph-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 18px auto 0;
    background: #c5a45d;
}

/* Breadcrumb */
.page-header .lab-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Breadcrumb items */
.page-header .lab-ul li {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 500;
}

/* Separator */
.page-header .lab-ul li+li::before {
    content: "/";
    margin: 0 13px;
    color: #c5a45d;
    font-weight: 400;
}

/* Links */
.page-header .lab-ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Home hover */
.page-header .lab-ul li:first-child a:hover {
    color: #c5a45d;
}

/* Active breadcrumb */
.page-header .lab-ul li a.active {
    color: #c5a45d;
    font-weight: 600;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .page-header {
        min-height: 200px;
        padding: 60px 0 50px;
    }

    .page-header .ph-title {
        font-size: 36px;
    }

    .page-header .lab-ul li {
        font-size: 12px;
    }

    .page-header .lab-ul li+li::before {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {

    .page-header {
        min-height: 180px;
        padding: 50px 0 45px;
    }

    .page-header .ph-title {
        font-size: 32px;
    }

    .page-header .ph-title::after {
        margin-top: 14px;
    }
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.countdown-section .countdown {
    column-gap: 20px;
    row-gap: 15px;
}

.countdown-section .countdown .clock-item {
    list-style: none;
    width: 70px;
    height: auto;
}

.countdown-section .countdown .clock-item .count-number {
    background: #303280;
    color: #fff;
    font-size: 30px;
    font-weight: 700;

    padding: 1rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 1;
    border-radius: 4px 4px 0 0;
}

.countdown-section .countdown .clock-item .count-text {
    background: #fff;

    font-size: 18px;
    color: #303280 !important;
    padding: 0.5rem 0.7rem;
    margin-bottom: 0;
    display: inline-block;
    width: 100%;
    text-align: center;
    line-height: 1;
    border-radius: 0 0 4px 4px;
}





.section-header {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 40px !important;
}

.text-justify {
    text-align: justify !important;
}

.lab-btn {
    display: inline-block;
    line-height: 1.6;
    padding: 15px 30px;
}

.schedule-pack .schedule-list .accordion-item .accordion-header .accordion-button.collapsed .h7 {

    text-align: left;
}

.hover-box {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    min-height: 250px;
    /* Ensures both boxes have equal height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin-bottom: 1rem;
}

.hover-box .lab-btn {
    margin-bottom: 0 !important;
}

.hover-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.hover-box1 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    height: 150px;
    /* Ensures both boxes have equal height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    margin-bottom: 1rem;
    object-fit: cover;
}

.fm-item-content {
    text-align: justify;
}

.clients-covers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
    align-items: center;
}

.clients-covers img {
    max-height: 100px;
    margin: 0 10px 10px;
    BACKGROUND: WHITE;
    PADDING: 10PX;
    BORDER-RADIUS: 5PX;
}

.hover-box1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.hover-box:hover img {
    transform: scale(1.1);
}

.hover-box1:hover img {
    transform: scale(1.1);
    object-fit: cover;

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #041541a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    padding: 1rem;
    transition: opacity 0.3s ease-in-out;

}

.hover-box1 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #041541a6;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    padding: 1rem;
    transition: opacity 0.3s ease-in-out;

}

.hover-box:hover .overlay {
    opacity: 1;
}

.overlay-text {
    text-shadow: 2px 2px 0 #303280;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.image-box {
    position: relative;
    overflow: hidden;
    height: 500px;
    /* Adjust height as needed */
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.image-box:hover img {
    transform: scale(1.1);
}

.image-box .content-overlay img {
    max-height: 100px !important;
    width: auto !important;
    border-radius: 5px;
    margin: 1rem auto;
    position: relative;
    z-index: 99;
    object-fit: contain;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    padding: 1rem 2rem;
}

.image-box:hover .content-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.content-overlay h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.content-overlay p {
    font-size: 1rem;

}

.btn-custom {
    background: #ff5733;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.btn-custom:hover {
    background: #e04b2a;
}

.glightbox {
    position: relative;
    overflow: hidden;
}

.caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    transition: bottom 0.4s ease-in-out;
    padding: 2px 10px;
}

.glightbox:hover .caption {
    bottom: 0;
}

/*Media Queries*/
@media (min-width:480px) {

    .countdown-section .countdown .clock-item {
        list-style: none;
        width: 140px;
        height: auto;

    }

    .countdown-section .countdown .clock-item .count-number {
        font-size: 4rem;
    }
}

@media (max-width:480px) {
    .slanted-box.black-theme span {
        font-size: 13px;
    }

    .slanted-box.black-theme p {
        font-size: 1rem;
        color: #fff;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .slanted-box.black-theme h3 {
        font-size: 1.4rem;
    }

    .hoverlay {
        display: none;
    }

    .hero-div {
        position: relative;
        padding: 2rem 1rem;
    }

    .date-venue {
        margin-top: 0px;
    }

    .image-box {
        height: 700px;
    }

    .page-header {
        padding-top: 75px;
        padding-bottom: 50px;
    }
}

/* ========================================
   HEADER
======================================== */

.header-section {
    position: relative;
    z-index: 9999;
    width: 100%;
    background: #0d5b35;
}

.header-bottom {
    width: 100%;
    background: #0d5b35;
}

.header-section .navbar {
    min-height: 105px;
    padding: 0;

    display: flex;
    align-items: center;
}

/* ========================================
   LOGO
======================================== */

.header-section .navbar-brand {
    margin: 0;
    padding: 0;
}

.logo img {
    display: block;
    width: auto;
    max-width: 225px;
    max-height: 75px;
}


/* ========================================
   BOOTSTRAP MOBILE TOGGLE
======================================== */

.header-bar {
    width: 44px;
    height: 44px;

    padding: 0 !important;
    margin: 0;

    border: 1px solid rgba(255, 255, 255, .25) !important;
    border-radius: 5px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    box-shadow: none !important;
}

.header-bar:focus {
    box-shadow: none !important;
}

.header-bar span {
    display: block;

    width: 23px;
    height: 2px;

    background: #fff;

    border-radius: 2px;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 991.98px) {

    .header-section .navbar {
        min-height: 80px;
    }

    .logo img {
        max-width: 175px;
        max-height: 60px;
    }

    /* Bootstrap collapse */
    .navbar-collapse {
        width: 100%;
        padding: 15px 0 20px;
    }

    .menu {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        margin: 0 !important;
    }

    .menu .nav-item {
        width: 100%;
    }

    .menu .nav-link {
        width: 100%;
        padding: 12px 15px !important;

        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .menu .nav-link::after {
        display: none;
    }

    .menu .nav-link:hover {
        background: rgba(255, 255, 255, .05);
    }

    /* Register mobile */
    .cart-ticket {
        width: 100%;
        margin: 15px 0 0;
    }

    .ticket-btn.lab-btn {
        width: 100%;
        height: 48px;
    }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 575.98px) {

    .header-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-section .navbar {
        min-height: 72px;
    }

    .logo img {
        max-width: 145px;
        max-height: 52px;
    }

    .header-bar {
        width: 40px;
        height: 40px;
    }
}

.header-section {
    width: 100%;
    position: relative;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Fixed header after scrolling */
.header-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* Prevent page jump when header becomes fixed */
.header-section.sticky+.header-spacer {
    display: block;
}

.header-section {
    z-index: 9999;
}

.header-section.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
}

.event-dual-header {
    position: relative;
    overflow: hidden;
    /* padding: 80px 0;
    background:
        radial-gradient(circle at 10% 50%,
            rgba(197, 164, 93, 0.12),
            transparent 30%),
        radial-gradient(circle at 90% 50%,
            rgba(197, 164, 93, 0.08),
            transparent 30%),
        linear-gradient(135deg,
            #0a2922 0%,
            #123f35 50%,
            #09251f 100%); */
}

/* Decorative circles */
.event-dual-header::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(197, 164, 93, 0.12);
    border-radius: 50%;
    left: -220px;
    top: 50%;
    transform: translateY(-50%);
}

.event-dual-header::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(197, 164, 93, 0.10);
    border-radius: 50%;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
}

/* Main wrapper */
.event-dual-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    max-width: 1100px;
    margin: 0 auto;
}

/* Titles */
.event-title {
    padding: 20px 45px;
}

.event-title h1,
.event-title h2 {
    margin: 0;
    color: #ffffff;
    line-height: 1.2;
}

.event-title-left {
    text-align: right;
}

.event-title-left h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -1px;
}

.event-title-left h1 span {
    color: #c5a45d;
}

.event-title-right {
    text-align: left;
}

.event-title-right h2 {
    max-width: 450px;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.event-title-right h2 span {
    color: #c5a45d;
}

/* Ampersand */
.event-ampersand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 72px;
    height: 72px;

    border: 1px solid #c5a45d;
    border-radius: 50%;

    background: #123f35;
    box-shadow:
        0 0 0 8px rgba(197, 164, 93, 0.05),
        0 15px 35px rgba(0, 0, 0, 0.2);
}

.event-ampersand span {
    color: #c5a45d;
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
}

/* Vertical decorative lines */
.event-ampersand::before,
.event-ampersand::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 65px;
    background: rgba(197, 164, 93, 0.45);
}

.event-ampersand::before {
    left: 50%;
    top: -85px;
}

.event-ampersand::after {
    left: 50%;
    bottom: -85px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .event-dual-header {
        padding: 65px 0;
    }

    .event-title {
        padding: 20px 25px;
    }

    .event-title-left h1 {
        font-size: 34px;
    }

    .event-title-right h2 {
        font-size: 27px;
    }

    .event-ampersand {
        width: 62px;
        height: 62px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .event-dual-header {
        padding: 55px 20px;
    }

    .event-dual-wrapper {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .event-title {
        padding: 10px 5px;
    }

    .event-title-left,
    .event-title-right {
        text-align: center;
    }

    .event-title-left h1 {
        font-size: 32px;
    }

    .event-title-right h2 {
        max-width: 100%;
        font-size: 25px;
        line-height: 1.3;
    }

    .event-ampersand {
        width: 55px;
        height: 55px;
        margin: 15px 0;
    }

    .event-ampersand span {
        font-size: 28px;
    }

    .event-ampersand::before,
    .event-ampersand::after {
        display: none;
    }
}

/* =========================================
   EVENT LOGOS
========================================= */

.event-logo {
    margin-bottom: 25px;
}

.event-logo img {
    display: inline-block;
    width: auto;
    max-width: 180px;
    height: 75px;
    object-fit: contain;
}

/* Left logo */
.event-title-left .event-logo {
    text-align: right;
}

/* Right logo */
.event-title-right .event-logo {
    text-align: left;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .event-logo {
        margin-bottom: 18px;
    }

    .event-logo img {
        max-width: 150px;
        height: 60px;
    }
}

@media (max-width: 767px) {

    .event-logo {
        margin-bottom: 15px;
    }

    .event-logo img {
        max-width: 150px;
        height: 60px;
    }

    .event-title-left .event-logo,
    .event-title-right .event-logo {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .event-logo img {
        max-width: 130px;
        height: 52px;
    }
}

.registration-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0 !important;

    background:
        radial-gradient(circle at 10% 50%,
            rgba(197, 164, 93, .08),
            transparent 30%),
        radial-gradient(circle at 90% 50%,
            rgba(18, 63, 53, .08),
            transparent 30%),
        #f8f7f2;
}

/* =========================================
   GRID
========================================= */

.registration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================
   CARD
========================================= */

.hero-card {
    position: relative;
}

.hero-card figure {
    position: relative;
    height: 470px;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;

    background: #123f35;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .14);

    isolation: isolate;
}

/* Gold border */
.hero-card figure::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 3;

    border: 1px solid rgba(255, 255, 255, .35);
    pointer-events: none;

    transition: all .5s ease;
}


/* =========================================
   IMAGE
========================================= */

.hero-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease,
        filter .7s ease;
}

.hero-card:hover img {
    transform: scale(1.07);
    filter: brightness(.75);
}


/* =========================================
   OVERLAY
========================================= */

.card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(to top,
            rgba(5, 27, 22, .95) 0%,
            rgba(5, 27, 22, .65) 35%,
            rgba(5, 27, 22, .10) 75%);

    transition: background .4s ease;
}

.hero-card:hover .card-overlay {
    background:
        linear-gradient(to top,
            rgba(5, 27, 22, .97) 0%,
            rgba(5, 27, 22, .72) 45%,
            rgba(5, 27, 22, .18) 100%);
}


/* =========================================
   CONTENT
========================================= */

.hero-card figcaption {
    position: absolute;
    z-index: 4;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 45px 42px;

    color: #fff;
}

.card-label {
    display: inline-block;

    margin-bottom: 13px;

    color: #c5a45d;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero-card h2 {
    margin: 0;

    color: #fff;

    font-size: clamp(30px, 3vw, 43px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-card h2 span {
    color: #c5a45d;
}

.hero-card small {
    display: block;

    margin-top: 10px;

    color: rgba(255, 255, 255, .75);

    font-size: 12px;
    letter-spacing: .5px;
}


/* =========================================
   BUTTON
========================================= */

.hero-card .lab-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 12px 23px;

    border: 1px solid #c5a45d;
    border-radius: 3px;

    background: #c5a45d;
    color: #123f35;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: all .35s ease;
}

.hero-card .lab-btn i {
    font-size: 11px;
    transition: transform .3s ease;
}

.hero-card .lab-btn:hover {
    background: transparent;
    color: #fff;
}

.hero-card .lab-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   HOVER BORDER
========================================= */

.hero-card:hover figure::before {
    inset: 8px;
    border-color: rgba(197, 164, 93, .75);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .registration-section {
        padding: 60px 0 !important;
    }

    .registration-grid {
        gap: 22px;
    }

    .hero-card figure {
        height: 430px;
    }

    .hero-card figcaption {
        padding: 35px 30px;
    }

    .hero-card h2 {
        font-size: 34px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .registration-section {
        padding: 50px 15px !important;
    }

    .registration-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .hero-card figure {
        height: 420px;
    }

    .hero-card figcaption {
        padding: 35px 30px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero-card figure {
        height: 390px;
    }

    .hero-card figcaption {
        padding: 30px 25px;
    }

    .hero-card h2 {
        font-size: 31px;
    }
}

/* =========================================
   PREMIUM IMAGE GALLERY
========================================= */

.bg-image {
    position: relative;
    overflow: hidden;
    padding-top: 80px !important;
    padding-bottom: 90px !important;

    background:
        radial-gradient(circle at 5% 20%,
            rgba(197, 164, 93, 0.08),
            transparent 28%),
        radial-gradient(circle at 95% 80%,
            rgba(18, 63, 53, 0.08),
            transparent 30%),
        #f8f7f2;
}

/* =========================================
   SECTION TITLE
========================================= */

.bg-image h2 {
    position: relative;
    margin-bottom: 42px !important;

    color: #123f35;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
}

.bg-image h2::after {
    content: "";
    display: block;

    width: 55px;
    height: 2px;

    margin: 17px auto 0;

    background: #c5a45d;
}


/* =========================================
   GALLERY GRID
========================================= */

.bg-image .gallery {
    position: relative;
    max-width: 1450px;
    margin: 0 auto;
}


/* =========================================
   GALLERY ITEM
========================================= */

.bg-image .gallery .col {
    overflow: hidden;
    padding: 4px;
}

.bg-image .gallery a {
    position: relative;
    display: block;

    height: 180px;

    overflow: hidden;
    border-radius: 6px;

    background: #123f35;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    text-decoration: none;

    isolation: isolate;
}


/* =========================================
   IMAGE
========================================= */

.bg-image .gallery img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition:
        transform .7s cubic-bezier(.2, .7, .2, 1),
        filter .5s ease;
}

.bg-image .gallery a:hover img {
    transform: scale(1.08);
    filter: brightness(.72);
}


/* =========================================
   DARK OVERLAY
========================================= */

.bg-image .gallery a::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(to top,
            rgba(5, 28, 23, .92) 0%,
            rgba(5, 28, 23, .25) 45%,
            transparent 75%);

    opacity: .8;

    transition: opacity .4s ease;
}

.bg-image .gallery a:hover::before {
    opacity: 1;
}


/* =========================================
   GOLD INNER FRAME
========================================= */

.bg-image .gallery a::after {
    content: "";

    position: absolute;

    left: 9px;
    right: 9px;
    top: 9px;
    bottom: 9px;

    z-index: 2;

    border: 1px solid rgba(255, 255, 255, .28);

    pointer-events: none;

    transition:
        border-color .4s ease,
        inset .4s ease;
}

.bg-image .gallery a:hover::after {
    left: 6px;
    right: 6px;
    top: 6px;
    bottom: 6px;

    border-color: rgba(197, 164, 93, .8);
}


/* =========================================
   CAPTION
========================================= */

.bg-image .gallery .caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding: 22px 18px 17px;

    color: #fff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    line-height: 1.4;

    text-align: left;

    transform: translateY(3px);

    transition: all .4s ease;
}

.bg-image .gallery a:hover .caption {
    color: #d5b66d;
    transform: translateY(0);
}


/* Small gold accent */

.bg-image .gallery .caption::before {
    content: "";

    display: block;

    width: 25px;
    height: 2px;

    margin-bottom: 8px;

    background: #c5a45d;

    transition: width .4s ease;
}

.bg-image .gallery a:hover .caption::before {
    width: 42px;
}


/* =========================================
   GLIGHTBOX CURSOR
========================================= */

.bg-image .gallery a.glightbox {
    cursor: zoom-in;
}


/* =========================================
   HOVER SHADOW
========================================= */

.bg-image .gallery a:hover {
    box-shadow:
        0 18px 40px rgba(0, 0, 0, .18);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .bg-image {
        padding-top: 65px !important;
        padding-bottom: 70px !important;
    }

    .bg-image .gallery a {
        height: 230px;
    }

    .bg-image .gallery .caption {
        font-size: 11px;
        padding: 18px 14px 14px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .bg-image {
        padding-top: 55px !important;
        padding-bottom: 60px !important;
    }

    .bg-image h2 {
        margin-bottom: 30px !important;
        font-size: 32px;
    }

    .bg-image .gallery {
        --bs-gutter-x: 5px;
        --bs-gutter-y: 5px;
    }

    .bg-image .gallery .col {
        padding: 2.5px;
    }

    .bg-image .gallery a {
        height: 200px;
        border-radius: 5px;
    }

    .bg-image .gallery .caption {
        padding: 17px 12px 12px;
        font-size: 10px;
    }

    .bg-image .gallery .caption::before {
        width: 20px;
        margin-bottom: 6px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .bg-image h2 {
        font-size: 28px;
    }

    .bg-image .gallery a {
        height: 165px;
    }

    .bg-image .gallery .caption {
        padding: 15px 10px 10px;
        font-size: 9px;
    }
}

/* =========================================
   PREMIUM PARTNERS SECTION
========================================= */

#sponsors {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px !important;

    background:
        radial-gradient(circle at 8% 30%,
            rgba(197, 164, 93, 0.08),
            transparent 28%),
        radial-gradient(circle at 92% 70%,
            rgba(18, 63, 53, 0.08),
            transparent 30%),
        #f8f7f2;
}

/* Decorative circles */

#sponsors::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -230px;
    top: 40%;
    border: 1px solid rgba(197, 164, 93, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

#sponsors::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -180px;
    bottom: -170px;
    border: 1px solid rgba(18, 63, 53, 0.09);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================
   SECTION TITLE
========================================= */

#sponsors .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 45px;
}

#sponsors .title-conference {
    position: relative;
    margin: 0;
    color: #123f35;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
}

#sponsors .title-conference span {
    position: relative;
}

#sponsors .title-conference span::after {
    content: "";
    display: block;
    width: 55px;
    height: 2px;
    margin: 17px auto 0;
    background: #c5a45d;
}


/* =========================================
   PARTNER COLUMNS
========================================= */

#sponsors .row.justify-content-center {
    position: relative;
    z-index: 2;
    align-items: stretch;
}

#sponsors .row.justify-content-center>div:not(.d-none) {
    display: flex;
    flex-direction: column;
    align-items: center;

    min-width: 260px;
    margin: 10px 12px;
    padding: 28px 35px 32px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(18, 63, 53, 0.09);
    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.06);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

#sponsors .row.justify-content-center>div:not(.d-none):hover {
    transform: translateY(-6px);

    border-color: rgba(197, 164, 93, 0.5);

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.11);
}


/* =========================================
   CATEGORY TITLE
========================================= */

#sponsors h5 {
    position: relative;

    margin: 0 0 25px;

    color: #123f35;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

#sponsors h5::after {
    content: "";

    display: block;

    width: 25px;
    height: 2px;

    margin: 10px auto 0;

    background: #c5a45d;

    transition: width .35s ease;
}

#sponsors .row.justify-content-center>div:hover h5::after {
    width: 45px;
}


/* =========================================
   LOGO AREA
========================================= */

#sponsors .clients-covers {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;

    width: 100%;
}

#sponsors .client-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================
   LOGO CARD
========================================= */

#sponsors .client-slide-cover {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 190px;
    height: 105px;

    padding: 15px;

    background: #fff;

    border: 1px solid rgba(18, 63, 53, 0.08);
    border-radius: 7px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

#sponsors .client-slide-cover:hover {
    transform: translateY(-3px);

    border-color: rgba(197, 164, 93, 0.55);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================
   LOGOS
========================================= */

#sponsors .client-slide-cover img {
    display: block;

    max-width: 100%;
    max-height: 75px;

    width: auto;
    height: auto;

    object-fit: contain;

    transition: transform .35s ease;
}

#sponsors .client-slide-cover:hover img {
    transform: scale(1.04);
}


/* =========================================
   POWERED BY LOGO
========================================= */

#sponsors .row.justify-content-center>div:last-child .client-slide-cover {
    width: 220px;
}


/* =========================================
   HIDDEN CORPORATE PARTNERS
========================================= */

#sponsors .d-none {
    display: none !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    #sponsors {
        padding: 65px 15px 70px !important;
    }

    #sponsors .row.justify-content-center>div:not(.d-none) {
        min-width: 230px;
        padding: 25px 25px 28px;
        margin: 8px;
    }

    #sponsors .client-slide-cover {
        width: 180px;
        height: 100px;
    }
}


@media (max-width: 767px) {

    #sponsors {
        padding: 55px 15px 60px !important;
    }

    #sponsors .section-header {
        margin-bottom: 30px;
    }

    #sponsors .title-conference {
        font-size: 32px;
    }

    #sponsors .row.justify-content-center {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #sponsors .row.justify-content-center>div:not(.d-none) {
        width: 100%;
        max-width: 430px;
        min-width: 0;

        margin: 8px 0;
        padding: 25px 20px 30px;
    }

    #sponsors .clients-covers {
        gap: 10px;
    }

    #sponsors .client-slide-cover {
        width: 190px;
        height: 100px;
    }
}


@media (max-width: 480px) {

    #sponsors .title-conference {
        font-size: 29px;
    }

    #sponsors .row.justify-content-center>div:not(.d-none) {
        padding: 22px 15px 25px;
    }

    #sponsors .client-slide-cover {
        width: 175px;
        height: 95px;
    }

    #sponsors .client-slide-cover img {
        max-height: 65px;
    }
}


/* =========================================
   PREMIUM FOOTER
========================================= */

footer {
    position: relative;
    overflow: hidden;

    padding: 70px 45px 45px !important;

    background:
        radial-gradient(circle at 10% 20%,
            rgba(197, 164, 93, 0.10),
            transparent 28%),
        radial-gradient(circle at 90% 80%,
            rgba(197, 164, 93, 0.06),
            transparent 30%),
        linear-gradient(135deg,
            #071f1a 0%,
            #0c3028 50%,
            #071f1a 100%);

    color: rgba(255, 255, 255, .78);

    border-top: 1px solid rgba(197, 164, 93, .35);

    box-shadow:
        0 -15px 50px rgba(0, 0, 0, .08);
}


/* Decorative circle */

footer::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -230px;
    top: -230px;

    border: 1px solid rgba(197, 164, 93, .10);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================
   FOOTER INNER CONTAINER
========================================= */

footer>.container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
}


/* =========================================
   COLUMNS
========================================= */

footer .col-lg-4,
footer .col-sm-4 {
    padding: 15px 30px;

    border-right: 1px solid rgba(255, 255, 255, .08);
}

footer .col-lg-4 {
    padding-left: 15px;
}

footer .col-sm-4:last-child {
    border-right: 0;
}


/* =========================================
   HEADINGS
========================================= */

footer h4 {
    position: relative;

    margin: 0 0 25px;

    color: #fff;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

footer h4::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 10px;

    background: #c5a45d;

    transition: width .35s ease;
}

footer h4:hover::after {
    width: 50px;
}


/* =========================================
   LOGO
========================================= */

footer img {
    display: block;

    width: 190px !important;
    max-width: 100%;
    height: auto;

    margin-bottom: 22px;

    object-fit: contain;
}


/* =========================================
   TEXT
========================================= */

footer p {
    margin-bottom: 13px;

    color: rgba(255, 255, 255, .65);

    font-size: 13px;
    line-height: 1.8;
}

footer p i {
    width: 22px;

    color: #c5a45d;

    font-size: 14px;
}

footer p a {
    color: rgba(255, 255, 255, .75);

    text-decoration: none;

    transition: color .3s ease;
}

footer p a:hover {
    color: #c5a45d;
}


/* =========================================
   SOCIAL / OTHER LIST
========================================= */

footer ul {
    margin: 0;
    padding: 0;
}

footer ul li {
    padding: 7px 0 !important;
}

footer ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, .68);

    font-size: 13px;

    text-decoration: none;

    transition:
        color .3s ease,
        transform .3s ease;
}

footer ul li a:hover {
    color: #c5a45d;

    transform: translateX(4px);
}


/* Social icons */

footer ul li a i {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border: 1px solid rgba(197, 164, 93, .25);
    border-radius: 50%;

    color: #c5a45d;

    font-size: 12px;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

footer ul li a:hover i {
    background: #c5a45d;
    border-color: #c5a45d;

    color: #0c3028;
}


/* =========================================
   COPYRIGHT
========================================= */

footer .col-sm-4:last-child li {
    color: rgba(255, 255, 255, .55);

    font-size: 12px;
}

footer .col-sm-4:last-child li a {
    color: #c5a45d;
}

footer .col-sm-4:last-child li a:hover {
    color: #fff;
}


/* =========================================
   BOTTOM AREA
========================================= */

footer .row.text-center {
    position: relative;

    margin-top: 35px !important;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, .08);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    footer {
        padding: 55px 25px 35px !important;
    }

    footer .col-lg-4,
    footer .col-sm-4 {
        padding: 15px 20px;
    }
}


@media (max-width: 767px) {

    footer {
        padding: 50px 20px 30px !important;
    }

    footer .col-lg-4,
    footer .col-sm-4 {
        padding: 25px 10px;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    footer .col-sm-4:last-child {
        border-bottom: 0;
    }

    footer img {
        width: 180px !important;
    }

    footer h4 {
        margin-bottom: 20px;
    }

    footer p {
        font-size: 12px;
    }
}


@media (max-width: 480px) {

    footer {
        padding: 40px 15px 25px !important;
    }

    footer img {
        width: 165px !important;
    }

    footer h4 {
        font-size: 13px;
    }

    footer ul li a {
        font-size: 12px;
    }
}

/* =========================================
   PREMIUM SCROLL TO TOP
========================================= */

.scrollToTop {
    position: fixed !important;
    right: 25px;
    bottom: 25px !important;

    width: 52px;
    height: 52px;

    z-index: 9999;

    display: flex !important;
    align-items: center;
    justify-content: center;

    background: #123f35;
    color: #c5a45d !important;

    border: 1px solid rgba(197, 164, 93, .75);
    border-radius: 50%;

    text-decoration: none !important;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .18);

    transition:
        all .35s ease;
}

/* Icon */

.scrollToTop i {
    position: relative;
    z-index: 3;

    font-size: 20px;
    line-height: 1;

    transition: transform .35s ease;
}


/* Hover */

.scrollToTop:hover {
    background: #c5a45d;
    color: #123f35 !important;

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .25);
}

.scrollToTop:hover i {
    transform: translateY(-2px);
}


/* =========================================
   PULSE RINGS
========================================= */

.scrollToTop .pluse_1,
.scrollToTop .pluse_2 {
    position: absolute;

    width: 100%;
    height: 100%;

    left: 0;
    top: 0;

    border: 1px solid rgba(197, 164, 93, .5);
    border-radius: 50%;

    pointer-events: none;
}

.scrollToTop .pluse_1 {
    animation: scrollPulse 2s infinite;
}

.scrollToTop .pluse_2 {
    animation: scrollPulse 2s 1s infinite;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes scrollPulse {

    0% {
        transform: scale(1);
        opacity: .7;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .scrollToTop {
        right: 16px;
        bottom: 18px !important;

        width: 46px;
        height: 46px;
    }

    .scrollToTop i {
        font-size: 17px;
    }
}

/* =========================================
   PREMIUM NAVBAR
========================================= */

.header-section {
    position: relative;
    z-index: 9999;
}

.header-bottom {
    background: #94dcc4;
    border-bottom: 1px solid rgba(18, 63, 53, 0.08);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}

.header-bottom .navbar {
    min-height: 82px;
    padding: 10px 0;
}


/* =========================================
   LOGO
========================================= */

.header-bottom .logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 45px;
}

.header-bottom .logo img {
    display: block;
    width: auto;
    max-width: 190px;
    height: 58px;
    object-fit: contain;
}


/* =========================================
   MENU
========================================= */

.header-bottom .menu {
    align-items: center;
    gap: 5px;
}

.header-bottom .menu .nav-item {
    position: relative;
}

.header-bottom .menu .nav-link {
    position: relative;

    padding: 12px 15px !important;

    color: #173f35 !important;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;

    text-transform: uppercase;

    transition:
        color .3s ease,
        transform .3s ease;
}


/* Gold underline */

.header-bottom .menu .nav-link::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 4px;

    width: auto;
    height: 2px;

    background: #c5a45d;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .3s ease;
}

.header-bottom .menu .nav-link:hover,
.header-bottom .menu .nav-link:focus {
    color: #c5a45d !important;
}

.header-bottom .menu .nav-link:hover::after,
.header-bottom .menu .nav-link:focus::after {
    transform: scaleX(1);
}


/* =========================================
   REGISTER BUTTON
========================================= */

.header-bottom .cart-ticket {
    margin-left: 25px;
}

.header-bottom .ticket-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 125px;
    padding: 12px 25px;

    overflow: hidden;

    background: #123f35 !important;
    color: #fff !important;

    border: 1px solid #123f35;
    border-radius: 4px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;

    text-transform: uppercase;
    text-decoration: none;

    box-shadow: 0 7px 18px rgba(18, 63, 53, .18);

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.header-bottom .ticket-btn::before {
    content: "";

    position: absolute;

    width: 0;
    height: 100%;

    left: 50%;
    top: 0;

    background: #c5a45d;

    transform: translateX(-50%);

    transition: width .35s ease;

    z-index: 0;
}

.header-bottom .ticket-btn span {
    position: relative;
    z-index: 1;
}

.header-bottom .ticket-btn:hover {
    color: #123f35 !important;
    border-color: #c5a45d;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(18, 63, 53, .22);
}

.header-bottom .ticket-btn:hover::before {
    width: 100%;
}


/* =========================================
   MOBILE TOGGLE
========================================= */

.header-bottom .header-bar {
    width: 46px;
    height: 42px;

    padding: 8px;

    border: 1px solid rgba(18, 63, 53, .15);
    border-radius: 5px;

    background: #f8f7f2;

    box-shadow: none;

    outline: none !important;
}

.header-bottom .header-bar span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: #123f35;

    border-radius: 10px;

    transition: all .3s ease;
}

.header-bottom .header-bar:hover {
    border-color: #c5a45d;
    background: #123f35;
}

.header-bottom .header-bar:hover span {
    background: #c5a45d;
}


/* =========================================
   MOBILE MENU
========================================= */

@media (max-width: 991px) {

    .header-bottom .navbar {
        min-height: 72px;
        padding: 8px 15px;
    }

    .header-bottom .logo {
        margin-right: 0;
    }

    .header-bottom .logo img {
        max-width: 160px;
        height: 50px;
    }

    .header-bottom .navbar-collapse {
        margin-top: 12px;
        padding: 10px;

        background: #ffffff;

        border: 1px solid rgba(18, 63, 53, .08);
        border-radius: 8px;

        box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
    }

    .header-bottom .menu {
        align-items: stretch;
        gap: 0;
    }

    .header-bottom .menu .nav-item {
        border-bottom: 1px solid rgba(18, 63, 53, .06);
    }

    .header-bottom .menu .nav-item:last-child {
        border-bottom: 0;
    }

    .header-bottom .menu .nav-link {
        padding: 13px 15px !important;
    }

    .header-bottom .menu .nav-link::after {
        left: 15px;
        right: auto;
        bottom: 7px;
        width: 30px;
    }

    .header-bottom .cart-ticket {
        margin: 12px 0 3px;
    }

    .header-bottom .ticket-btn {
        width: 100%;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .header-bottom .navbar {
        padding: 7px 12px;
    }

    .header-bottom .logo img {
        max-width: 145px;
        height: 46px;
    }

    .header-bottom .header-bar {
        width: 42px;
        height: 40px;
    }
}


/* =========================================
   OPTIONAL: FIXED ON SCROLL
   Add .fixed-header with JS if required
========================================= */

.header-section.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    animation: premiumHeader .35s ease forwards;
}

.header-section.fixed-header .header-bottom {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
}

@keyframes premiumHeader {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* ===== Section wrapper ===== */
.date-venue {
    padding: 40px 20px;
    text-align: center;
    background: #e9f1e9;
}

/* ===== Heading ===== */
.date-venue h2 {

    font-size: clamp(14px, 2vw, 22px);
    font-weight: 700;
    color: #1a2f22;
    max-width: 720px;
    margin: 0 auto 10px;
    line-height: 1.4;
}

/* ===== Button wrapper ===== */
.register-btn {
    padding-top: 20px;
}

.register-btn .row.g-2 {
    --bs-gutter-x: 1.25rem;
    align-items: stretch;
    /* equal height buttons */
}

.register-btn .row.g-2 .col-6 {
    display: flex;
}

/* ===== Transparent ghost buttons ===== */
.lab-btn {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    min-height: 78px;
    padding: 18px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #2e7d32;
    background: transparent;
    border: 2px solid #2e7d32;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
    transition: color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

.lab-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2e7d32;
    border-radius: 50px;
    transform: scale(0);
    transform-origin: center;
    z-index: -1;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lab-btn:hover {
    color: #ffffff;
    border-color: #2e7d32;
    transform: translateY(-3px);
}

.lab-btn:hover::before {
    transform: scale(1);
}

.lab-btn:active {
    transform: translateY(0);
}

/* ===== Sub-label span ===== */
.lab-btn span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    opacity: 0.75;
    color: inherit;
}

/* ===== Responsive ===== */
@media (max-width: 575.98px) {
    .date-venue h2 {
        font-size: 20px;
        padding: 0 10px;
    }

    .lab-btn {
        font-size: 14px;
        padding: 14px 16px;
        min-height: 70px;
    }

    .register-btn .row.g-2 {
        --bs-gutter-x: 0.75rem;
    }
}