/* ============================================================
   PROPAINT 2027 — Main Stylesheet
   Fonts loaded via CDN in each HTML file
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-body);
    color: #444;
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--theme-secondary);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ============================================================
   Bootstrap Color Overrides
   ============================================================ */
.bg-primary {
    background-color: var(--theme-primary) !important;
}

.bg-secondary {
    background-color: var(--theme-secondary) !important;
}

.text-primary {
    color: var(--theme-primary) !important;
}

.text-secondary {
    color: var(--theme-secondary) !important;
}

.border-primary {
    border-color: var(--theme-primary) !important;
}

.border-secondary {
    border-color: var(--theme-secondary) !important;
}

.btn-primary {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
    filter: brightness(1.08);
}

.btn-secondary {
    background-color: var(--theme-secondary);
    border-color: var(--theme-secondary);
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--theme-secondary-dark);
    border-color: var(--theme-secondary-dark);
    color: #fff;
}

.btn-outline-primary {
    color: var(--theme-primary);
    border-color: var(--theme-primary);
}

.btn-outline-primary:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
}

.btn-outline-light:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
}

/* ============================================================
   Site Header (fixed wrapper)
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
}

/* Hide topbar smoothly once scrolled */
#site-header .topbar {
    max-height: 60px;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease, opacity .25s ease;
    opacity: 1;
}

#site-header.scrolled .topbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
}

/* Subtle shadow boost on scrolled navbar */
#site-header.scrolled .site-navbar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
}

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
    background: var(--gradient-accent);
    padding: 8px 0;
    font-size: 0.875rem;
}

.topbar a {
    color: rgba(255, 255, 255, .92);
    font-weight: 600;
    transition: opacity .2s;
}

.topbar a:hover {
    opacity: .75;
}

.topbar span {
    color: rgba(255, 255, 255, .92) !important;
}

.topbar .separator {
    border-left: 1px solid rgba(255, 255, 255, .35);
    height: 16px;
    margin: 0 12px;
}

.topbar .social-icons a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .18);
    color: #fff;
    border-radius: 50%;
    margin-left: 5px;
    font-size: .75rem;
    transition: background .2s, transform .2s;
}

.topbar .social-icons a:hover {
    background: rgba(255, 255, 255, .38);
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

/* ============================================================
   Scroll-to-Top Button
   ============================================================ */
#scroll-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--theme-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1049;
    box-shadow: 0 4px 16px rgba(31, 188, 176, .45);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease, filter .2s;
    pointer-events: none;
}

#scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

#scroll-top:hover {
    background: var(--theme-secondary);
}

/* ============================================================
   Navbar
   ============================================================ */
.site-navbar {
    background-color: #fff !important;
    padding: 0 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .13);
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-accent) 1;
}

.site-navbar .navbar-brand {
    padding: 6px 0;
}

.navbar-logo {
    height: 110px;
    width: auto;
    display: block;
    max-width: 260px;
    object-fit: contain;
    transition: height 0.3s ease, max-width 0.3s ease;
}

.site-navbar .nav-link {
    color: #2b2b2b !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 22px 16px !important;
    transition: color .2s;
    position: relative;
}

.site-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 16px;
    right: 16px;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform .25s;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.site-navbar .nav-link:hover::after,
.site-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.site-navbar .navbar-toggler {
    border-color: rgba(0, 0, 0, .2);
    padding: 6px 10px;
}

.site-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280%2c0%2c0%2c0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 3px solid transparent;
    border-image: var(--gradient-accent) 1;
    padding-left: 20px;
    margin-left: 16px;
}

.navbar-phone .icon {
    font-size: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.navbar-phone small {
    color: rgba(0, 0, 0, .45);
    font-size: .75rem;
    display: block;
}

.navbar-phone strong {
    color: #1a1a1a;
    font-size: .95rem;
    font-family: var(--font-heading);
}

/* ============================================================
   Section Headings
   ============================================================ */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--theme-secondary);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--theme-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--theme-primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-divider.left {
    margin-left: 0;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(13, 31, 60, 0.92) 0%,
            rgba(13, 31, 60, 0.72) 50%,
            rgba(225, 31, 38, 0.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    background: var(--gradient-accent);
    color: #fff;
    font-family: var(--font-heading);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero h1 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    font-size: 1rem;
    color: rgba(255, 255, 255, .85);
}

.hero-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta .meta-item i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-size: 1rem;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.hero-btns .btn {
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 30px;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-label {
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    margin-bottom: 10px;
    display: inline-block;
}

.countdown-box {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 12px 18px;
    text-align: center;
    min-width: 72px;
}

.countdown-box .num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
}

.countdown-box .unit {
    font-size: .68rem;
    color: var(--theme-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 4px;
    display: block;
}

/* ============================================================
   Stats Counter Strip
   ============================================================ */
.stats-strip {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 64px 0;
}

.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 31, 60, .90);
}

.stats-strip .container {
    position: relative;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--theme-yellow);
    line-height: 1;
}

.stat-suffix {
    font-size: 2.2rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-top: 6px;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .2);
    margin: 0 auto;
}

/* ============================================================
   About Split Sections
   ============================================================ */
.about-img-wrap {
    position: relative;
    min-height: 420px;
}

.about-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content-box {
    background: var(--theme-primary);
    padding: 52px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-box.dark {
    background: var(--theme-secondary);
}

.about-content-box h2,
.about-content-box.dark h2 {
    color: #fff;
}

.about-content-box p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.02rem;
    line-height: 1.75;
}

.about-content-box .btn {
    align-self: flex-start;
    margin-top: 12px;
}

/* ============================================================
   Feature / Service Cards
   ============================================================ */
.feature-wrap {
    padding-top: 60px;
}

.feature-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 36px 28px 30px;
    text-align: center;
    position: relative;
    margin-top: 40px;
    transition: transform .3s, box-shadow .3s;
    height: calc(100% - 40px);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 46, 90, .12);
}

.feature-icon {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, .4);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--theme-secondary);
}

.feature-card p {
    font-size: .9rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   Exhibitor Profile Cards (Modern Redesign)
   ============================================================ */
.exhibitor-modern-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--card-theme);
    padding: 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.exhibitor-modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.exhibitor-modern-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.exhibitor-modern-icon {
    width: 48px;
    height: 48px;
    background: var(--card-theme);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
    margin-right: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.exhibitor-title-wrap {
    flex-grow: 1;
}

.exhibitor-title-wrap h4 {
    color: #1a202c;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.exhibitor-count {
    color: #718096;
    font-size: 0.8rem;
    font-family: var(--font-body);
}

.exhibitor-chevron {
    color: rgba(0, 0, 0, 0.15);
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.exhibitor-modern-card:hover .exhibitor-chevron {
    color: var(--card-theme);
    transform: translateX(4px);
}

.exhibitor-modern-body {
    flex-grow: 1;
}

.exhibitor-modern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exhibitor-modern-list li {
    position: relative;
    padding-left: 20px;
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

.exhibitor-modern-list li:last-child {
    margin-bottom: 0;
}

.exhibitor-modern-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.25rem;
    color: var(--card-theme);
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 46, 90, .92) 0%, rgba(26, 46, 90, .78) 100%);
}

.cta-banner .container {
    position: relative;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
}

.cta-banner p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    max-width: 600px;
}

/* ============================================================
   Visitor Profile Badges
   ============================================================ */
.visitor-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f8f9fc;
    border-left: 4px solid var(--theme-primary);
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    transition: background .2s, transform .2s;
}

.visitor-badge:hover {
    background: var(--theme-primary-light);
    transform: translateX(4px);
}

.visitor-badge i {
    color: var(--theme-primary);
    font-size: 1.2rem;
    width: 20px;
    flex-shrink: 0;
}

.visitor-badge span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    color: var(--theme-secondary);
}

/* ============================================================
   Event Highlight Cards
   ============================================================ */
.highlight-card {
    background: linear-gradient(#fff, #fff) padding-box, var(--gradient-accent) border-box;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    color: var(--theme-secondary);
    transition: transform .3s, box-shadow .3s;
    height: 100%;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(31, 188, 176, .2);
}

.highlight-card i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.highlight-card p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .95rem;
    margin: 0;
}

/* ============================================================
   Sponsor Package Cards
   ============================================================ */
.sponsor-card {
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #ececec;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sponsor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
    border-color: var(--theme-primary);
}

.sponsor-card.featured {
    border-color: var(--theme-primary);
    box-shadow: 0 12px 40px rgba(245, 166, 35, .2);
}

.sponsor-card-header {
    padding: 28px 28px 20px;
    background: var(--theme-primary);
    color: #fff;
}

.sponsor-card.featured .sponsor-card-header {
    background: var(--theme-primary);
}

.sponsor-tier-badge {
    display: inline-block;
    background: var(--theme-primary);
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 4px solid var(--theme-yellow);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sponsor-card.featured .sponsor-tier-badge {
    background: var(--theme-primary);
    color: #fff !important;
}



.sponsor-card-header h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.sponsor-card-header .price {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--theme-primary);
}

.sponsor-card.featured .sponsor-card-header .price {
    color: #fff;
}

.sponsor-card-header .price small {
    font-size: .85rem;
    opacity: .8;
}

.sponsor-card-body {
    padding: 24px 28px;
    flex: 1;
    background: #fff;
}

.sponsor-benefit {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: .875rem;
    color: #555;
}

.tc {
    color: #fff;
}

.sponsor-benefit i {
    color: var(--theme-primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.sponsor-card-footer {
    padding: 20px 28px;
    background: #f8f9fc;
}

/* ============================================================
   Market Insight Stats
   ============================================================ */
.insight-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--theme-secondary) 0%, var(--theme-secondary-light) 100%);
    color: #fff;
    height: 100%;
}

.insight-card .big-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--theme-primary);
    line-height: 1;
}

.insight-card p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .75);
    margin: 8px 0 0;
}

/* ============================================================
   Why Choose / Reasons List
   ============================================================ */
.reason-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 24px;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 123, 255, 0.08);
    border-color: rgba(0, 123, 255, 0.15);
}

.reason-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 50%;
    background: var(--theme-primary);
    border: 4px solid var(--theme-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
}

.reason-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--theme-secondary);
    margin-bottom: 6px;
}

.reason-item p {
    font-size: .875rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   Contact Page
   ============================================================ */
.contact-info-card {
    background: var(--theme-secondary);
    border-radius: 10px;
    padding: 32px 28px;
    color: #fff;
    height: 100%;
}

.contact-info-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-detail .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
}

.contact-detail .text small {
    color: var(--theme-primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .5px;
    display: block;
}

.contact-detail .text span {
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
}

.contact-form-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .06);
}

.contact-form-card h3 {
    color: var(--theme-secondary);
    margin-bottom: 24px;
}

.contact-form-card .form-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .875rem;
    color: var(--theme-secondary);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-color: #dde1e7;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: .9rem;
    transition: border-color .2s, box-shadow .2s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, .15);
}

.map-embed {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ececec;
}

/* ============================================================
   Page Hero Banner (inner pages)
   ============================================================ */
.page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0 64px;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 46, 90, .9) 0%, rgba(26, 46, 90, .7) 100%);
}

.page-hero .container {
    position: relative;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-hero .breadcrumb {
    justify-content: center;
    background: transparent;
    margin: 0;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, .7);
    font-size: .875rem;
}

.page-hero .breadcrumb-item.active {
    color: var(--theme-primary);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .4);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--theme-secondary-dark);
    color: rgba(255, 255, 255, .75);
    padding: 64px 0 0;
}

.footer-logo {
    height: auto;
    width: 250px;
    max-width: 100%;
    /* display: block; */
    /* background: rgba(255, 255, 255, .1); */
    /* padding: 12px 18px; */
    /* border-radius: 10px; */
    margin-bottom: 18px;
    /* border: 1px solid rgba(255, 255, 255, .15); */
    object-fit: contain;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    display: block;
}

.footer-brand span {
    color: var(--theme-primary);
}

.site-footer p {
    font-size: .875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .65);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--theme-primary);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    font-size: .875rem;
    transition: color .2s, padding-left .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--theme-primary);
    padding-left: 4px;
}

.footer-links a i {
    font-size: .65rem;
    color: var(--theme-primary);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--theme-primary);
    margin-top: 3px;
    font-size: .9rem;
}

.footer-contact-item span {
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    transition: background .2s, color .2s;
}

.footer-social a:hover {
    background: var(--theme-primary);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 0;
    margin-top: 48px;
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
    color: var(--theme-primary);
}

/* ============================================================
   Utilities
   ============================================================ */
section {
    padding: var(--section-py) 0;
}

.section-bg {
    background: #f8f9fc;
}

.bg-gradient-primary {
    background: var(--theme-primary);
}

.rounded-pill-btn {
    border-radius: 30px !important;
    padding: 10px 20px
}

.text-amber {
    color: var(--theme-primary) !important;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
    .site-navbar .navbar-collapse {
        background-color: #ffffff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 15px 20px;
        margin-top: 10px;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-navbar .nav-link {
        padding: 12px 0 !important;
    }

    .site-navbar .nav-link::after {
        display: none;
    }

    .navbar-phone {
        display: none;
    }

    :root {
        --section-py: 56px;
    }
}

@media (max-width: 767px) {
    .about-content-box {
        padding: 36px 28px;
    }

    .hero {
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .about-img-wrap {
        min-height: 260px;
    }

    .cta-banner h2 {
        font-size: 1.75rem;
    }
}

/* ============================================================
   Paint Theme Custom Additions (Geometric & Grid Accents)
   ============================================================ */

/* Skewed Ribbon Accents */
.decor-left {
    position: relative;
    overflow: hidden;
}

.decor-left::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 38px;
    background: var(--gradient-accent);
    transform: skewX(-30deg) translateX(-40px);
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.decor-right {
    position: relative;
    overflow: hidden;
}

.decor-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 38px;
    background: var(--gradient-accent);
    transform: skewX(-30deg) translateX(40px);
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.decor-left .container,
.decor-right .container {
    position: relative;
    z-index: 1;
}


/* Why Exhibit Dashed Grid Layout */
.why-exhibit-col {
    border-right: 1.5px dashed rgba(0, 123, 255, 0.3);
    border-bottom: 1.5px dashed rgba(0, 123, 255, 0.3);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    background: transparent;
}

.why-exhibit-col:hover {
    background-color: rgba(0, 123, 255, 0.03);
}

.why-exhibit-icon {
    font-size: 2.2rem;
    color: var(--theme-primary);
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.why-exhibit-col:hover .why-exhibit-icon {
    transform: scale(1.1);
}

.why-exhibit-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--theme-secondary);
    margin-bottom: 12px;
}

.why-exhibit-col p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .why-exhibit-col:nth-child(3n) {
        border-right: none;
    }

    .why-exhibit-col:nth-child(n+4) {
        border-bottom: none;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .why-exhibit-col {
        border-right: 1.5px dashed rgba(0, 123, 255, 0.3);
        border-bottom: 1.5px dashed rgba(0, 123, 255, 0.3);
    }

    .why-exhibit-col:nth-child(2n) {
        border-right: none;
    }

    .why-exhibit-col:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .why-exhibit-col {
        border-right: none !important;
        border-bottom: 1.5px dashed rgba(0, 123, 255, 0.3) !important;
    }

    .why-exhibit-col:last-child {
        border-bottom: none !important;
    }
}

/* Theme Footer Overrides */
.site-footer {
    background: var(--theme-secondary) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.site-footer .footer-heading {
    color: #ffffff !important;
}

.site-footer .footer-heading::after {
    background: var(--theme-yellow) !important;
}

.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.85) !important;
}

.site-footer .footer-links a:hover {
    color: var(--theme-yellow) !important;
    padding-left: 4px;
}

.site-footer .footer-links a i {
    color: var(--theme-yellow) !important;
}

.site-footer .footer-contact-item i {
    color: var(--theme-yellow) !important;
}

.site-footer .footer-contact-item span {
    color: rgba(255, 255, 255, 0.85) !important;
}

.site-footer .footer-social a {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.site-footer .footer-social a:hover {
    background: var(--theme-yellow) !important;
    color: var(--theme-secondary) !important;
}

.footer-bottom {
    background: var(--theme-secondary) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-bottom a {
    color: var(--theme-yellow) !important;
}


.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================================
   Bento Gallery Section
   ============================================================ */
.bento-gallery-section {
    padding: 80px 0;
    background: #f8f9fc;
}

.bento-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(4, 280px);
    gap: 12px;
    margin: 0 auto;
}

/* Tall left cell — spans both rows */
.bento-item.bento-tall {
    grid-row: span 2;
}

/* Wide top-center cell — spans 2 columns */
.bento-item.bento-wide {
    grid-column: span 2;
}

/* Base bento cell */
.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-item:hover img {
    transform: scale(1.07);
}

/* Dark overlay on hover */
.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(13, 31, 60, 0.72) 0%,
            rgba(13, 31, 60, 0.08) 55%,
            transparent 100%);
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.35s ease;
}

.bento-item:hover::before {
    opacity: 1;
}

/* Label overlay */
.bento-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 18px 22px;
    transform: translateY(4px);
    transition: transform 0.35s ease;
}

.bento-item:hover .bento-label {
    transform: translateY(0);
}

.bento-label span {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: var(--theme-primary);
    padding: 7px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

/* Responsive: tablets — 2 col, all equal */
@media (max-width: 991px) {
    .bento-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 240px;
    }

    .bento-item.bento-tall {
        grid-row: span 1;
    }

    .bento-item.bento-wide {
        grid-column: span 2;
    }
}

/* Responsive: mobile — single column */
@media (max-width: 575px) {
    .bento-gallery-section {
        padding-top: 60px;
    }

    .bento-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-auto-rows: 220px;
        gap: 8px;
    }

    .bento-item.bento-tall,
    .bento-item.bento-wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}

/* ============================================================
   About Modern Image Grid
   ============================================================ */
.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.about-image-grid-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-image-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-image-grid-left img {
    height: 190px;
}

.about-image-grid-right img {
    height: 396px;
    /* 190 + 190 + 16 gap = 396 */
}

@media (max-width: 991px) {
    .about-image-grid-left img {
        height: 150px;
    }

    .about-image-grid-right img {
        height: 316px;
    }
}

@media (max-width: 575px) {
    .about-image-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-image-grid-left {
        gap: 12px;
    }

    .about-image-grid-left img,
    .about-image-grid-right img {
        height: 200px !important;
    }
}

/* About Section Text Styling */
.about-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about-text-container .section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    margin-bottom: 12px;
    display: inline-block;
}

.about-text-container h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--theme-secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

/* ============================================================
   Market Insights Modern Dashboard
   ============================================================ */
.industry-badge {
    background: rgba(31, 188, 176, 0.08);
    border: 1px solid rgba(31, 188, 176, 0.2);
    color: var(--theme-primary) !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 16px;
}

.insight-card-modern {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.insight-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
    border-color: var(--theme-primary);
}

.insight-card-header-flex {
    display: flex;
    align-items: center;
    gap: 16px;
}

.insight-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.insight-card-modern h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    font-family: var(--font-heading);
}

.insight-card-modern .insight-label {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

.insight-card-modern .insight-sub {
    color: #94a3b8;
    font-size: 0.72rem;
    margin-top: 2px;
}

.insight-card-chart {
    margin-top: 20px;
    height: 44px;
    width: 100%;
}

/* Middle Section Containers */
.growth-categories-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.growth-categories-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--theme-secondary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.growth-categories-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--theme-primary);
    border-radius: 2px;
}

.category-grid-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.category-grid-item:last-child {
    border-bottom: none;
}

.category-grid-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.category-grid-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.market-opportunity-box {
    background: linear-gradient(135deg, #071936 0%, #0c2340 100%);
    border-radius: 20px;
    padding: 40px 32px;
    height: 100%;
    color: #fff;
    box-shadow: 0 10px 30px rgba(13, 31, 60, 0.15);
    position: relative;
    overflow: hidden;
}

.market-opportunity-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.market-opportunity-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.opportunity-inner-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.opportunity-inner-icon {
    width: 52px;
    height: 52px;
    background: rgba(31, 188, 176, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--theme-primary);
    box-shadow: 0 0 20px rgba(31, 188, 176, 0.2);
    flex-shrink: 0;
}

.opportunity-inner-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.opp-stat-col {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 8px;
}

.opp-stat-col:last-child {
    border-right: none;
    padding-right: 0;
}

.opp-stat-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.opp-stat-num {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}


@media (max-width: 767px) {
    .opportunity-inner-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .opp-stat-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 8px;
    }

    .opp-stat-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ============================================================
   Stats Glass Card (Modern overlay)
   ============================================================ */
.stats-glass-card {
    background: rgba(13, 31, 60, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 10;
}

.stats-glass-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 3px;
    background: var(--gradient-accent);
    filter: blur(1px);
    border-radius: 10px;
}

.stat-glass-item {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-glass-item:last-child {
    border-right: none;
}

.stat-glass-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-glass-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(31, 188, 176, 0.35);
}

.stat-glass-info {
    display: flex;
    flex-direction: column;
}

.stat-glass-val {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.stat-glass-lbl {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 991px) {
    .stats-glass-card {
        padding: 16px;
    }

    .stat-glass-val {
        font-size: 1.4rem;
    }

    .navbar-logo {
        height: 80px;
        max-width: 190px;
    }
}

@media (max-width: 767px) {
    .stat-glass-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 16px 0;
    }

    .stat-glass-item:last-child {
        border-bottom: none;
    }

    .stat-glass-wrap {
        max-width: 220px;
        margin: 0 auto;
    }

    .stats-glass-card {
        margin-top: 20px !important;
    }
}

/* Organiser Badge Overlap */
.organiser-badge-overlap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    border-left: 5px solid var(--theme-primary);
    min-width: 170px;
    z-index: 10;
}

@media (max-width: 575px) {
    .organiser-badge-overlap {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 15px auto 0;
        max-width: 240px;
        border-left: none;
        border-top: 4px solid var(--theme-primary);
    }
}

.p_h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--theme-secondary);
    margin-bottom: 12px;
}