:root {
    --gradient: linear-gradient(135deg, #f63397, #711fb8);
    --primary-font: 'Poppins', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --text-color: #333;
    --bg-color: #ffffff;
    --surface-color: #f8f9fa;
    --white: #fff;
    --border-color: #dee2e6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --status-available: #b2e2d5;
    --status-reserved: #fde293;
    --status-sold: #f7c5d2;
    --status-available-dark: #32816B;
    --status-reserved-dark: #9A7714;
    --status-sold-dark: #9F4D63
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--primary-font);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    position: relative
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(209, 35, 134, 0.08) 0%, transparent 40%), radial-gradient(circle at 100% 100%, rgba(113, 31, 184, 0.08) 0%, transparent 40%), radial-gradient(circle at 100% 0%, rgba(157, 80, 230, 0.05) 0%, transparent 40%), radial-gradient(circle at 0% 100%, rgba(209, 35, 134, 0.05) 0%, transparent 40%);
    z-index: -1;
    animation: pulseBg 15s ease-in-out infinite alternate
}

@keyframes pulseBg {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.1)
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem
}

h1 {
    font-size: 3rem;
    color: var(--white);
    text-shadow: 2px 2px 8px rgb(0 0 0 / .7)
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem
}

h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 3rem
}

h4 {
    font-size: 1.5rem;
    margin-bottom: .5rem
}

p {
    margin-bottom: 1rem
}

section {
    padding: 80px 0
}

.bg-surface {
    background-color: var(--surface-color)
}

:focus-visible {
    outline: 3px solid #711fb8;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgb(113 31 184 / .4);
    border-radius: 4px
}

.btn:focus-visible,
.zoom-btn:focus-visible {
    outline-offset: 1px
}

.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000
}

/* Optimized Mobile Sticky Bar */
#mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none; /* Hidden by default, shown via media query */
    justify-content: space-around;
    align-items: center;
    padding: 10px 5px;
    z-index: 1000;
}

@media (max-width: 768px) {
    #mobile-sticky-bar {
        display: flex;
    }
    .mobile-cta-btn {
        flex: 1;
        text-align: center;
        text-decoration: none;
        color: var(--text-color);
        font-size: 0.75rem;
        font-weight: 700;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
    .mobile-cta-btn i {
        font-size: 1.2rem;
        color: #d12386;
    }
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1400px
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain
}

.logo:focus-visible {
    outline-offset: 4px
}

#main-nav {
    flex: 1;
    display: flex;
    justify-content: center
}

#main-nav>ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    flex-wrap: nowrap
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: .3rem;
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap
}

.nav-link:hover {
    color: #d12386
}

.nav-link.active {
    color: #d12386
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d12386;
    border-radius: 2px
}

.header-ctas {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
    align-items: center
}

.has-dropdown {
    position: relative
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    list-style: none;
    padding: .5rem 0;
    margin: 0;
    margin-top: .75rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    min-width: 220px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease
}

.has-dropdown.dropdown-open>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-left: 50%;
    transform: translateX(-50%) translateY(0)
}

.dropdown-menu a {
    display: block;
    padding: .75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap
}

.dropdown-menu a:hover {
    background-color: var(--surface-color);
    color: #d12386
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002
}

.nav-toggle:focus-visible {
    outline-offset: 4px
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative
}

.hamburger-inner {
    display: block;
    top: 50%;
    transform: translateY(-50%)
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block
}

.hamburger-inner::before {
    top: -10px
}

.hamburger-inner::after {
    bottom: -10px
}

.main-header.nav-open .hamburger-inner {
    transform: rotate(45deg)
}

.main-header.nav-open .hamburger-inner::before {
    top: 0;
    opacity: 0
}

.main-header.nav-open .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg)
}

.main-header.nav-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .5);
    z-index: 998
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--heading-font);
    text-align: center;
    border: 2px solid #fff0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgb(0 0 0 / .1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap
}

.btn-primary {
    background: var(--gradient);
    background-size: 200% auto;
    color: var(--white)
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / .4), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s cubic-bezier(.23, 1, .32, 1);
    z-index: 1
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgb(113 31 184 / .4)
}

.btn-primary:hover::after {
    left: 130%
}

.btn-secondary {
    background: var(--bg-color);
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: var(--gradient);
    color: #711fb8
}

.btn-secondary:hover {
    background: var(--gradient);
    color: var(--white);
    border-image-source: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgb(113 31 184 / .4)
}

.btn-sm {
    padding: 8px 16px;
    font-size: .9rem
}



.btn.disabled,
.btn:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    opacity: .7;
    transform: none !important;
    box-shadow: none !important;
    border-color: #dee2e6;
    background-image: none
}

.btn-outline-light {
    background: #fff0;
    border: 2px solid var(--white);
    color: var(--white)
}

.btn-outline-light:hover {
    background: var(--white);
    color: #101c35
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgb(37 211 102 / .4)
}

.btn-whatsapp i {
    margin-right: .5rem;
    pointer-events: none;
}

.btn-outline-dark {
    background: #fff0;
    border: 2px solid #101c35;
    color: #101c35
}

.btn-outline-dark:hover {
    background: #101c35;
    color: var(--white)
}

#hero {
    position: relative;
    color: var(--white);
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    text-align: center
}

#hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1
}

.hero-bg-image {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(16 28 53 / .7);
    z-index: 2
}

#hero.counselling-hero {
    background-image: url(https://res.cloudinary.com/dj3vhocuf/image/upload/w_1920,q_auto,f_auto/v1762464000/pexels-photo-3184418.webp);
    padding: 80px 0
}

.hero-content {
    position: relative;
    z-index: 3
}

.hero-mascot {
    position: absolute;
    bottom: -60px;
    right: 50px;
    width: 300px;
    height: auto;
    z-index: 4;
    pointer-events: none;
    right: 6%
}

.hero-text {
    max-width: 800px;
    margin: 0 auto
}

.hero-text p {
    font-size: 1.2rem;
    opacity: .9;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto
}

.cta-group {
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap
}

.urgency-trigger {
    margin: 1rem 0;
    font-size: 1rem
}

#countdown-timer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center
}

#countdown-timer h4 {
    background: rgb(255 255 255 / .15);
    padding: 1rem 2rem;
    border-radius: 10px;
    width: 100%;
    text-align: center
}

.timer-unit {
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .2);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 90px;
    flex-grow: 1;
    max-width: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.timer-unit span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1
}

.timer-unit p {
    margin: 0;
    font-size: .8rem;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: 1px
}

.timer-unit.updated {
    animation: pulse-glow 0.6s ease-out
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px rgb(255 255 255 / .2)
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgb(255 255 255 / .5), inset 0 0 10px rgb(255 255 255 / .2)
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px rgb(255 255 255 / .2)
    }
}

.scrolling-banner {
    background: var(--gradient);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 3
}

.scrolling-text {
    display: inline-block;
    animation: scroll-left 40s linear infinite
}

.scrolling-text span {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--heading-font);
    text-transform: uppercase;
    padding: 0 2rem
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 0;
    text-align: center
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: .5rem
}

.page-header p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: .9
}

.about-page .page-header p {
    max-width: none
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.section-cta {
    text-align: center;
    margin-top: 3rem
}

#why-qatar,
#market-opportunity {
    padding-top: 40px
}

#home-partners {
    padding: 60px 0
}

#home-partners h2 {
    margin-bottom: 2rem
}

.logo-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap
}

.logo-item {
    text-align: center
}

.logo-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: filter 0.3s, opacity 0.3s
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1
}

.logo-scroller {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent)
}

.logo-scroller #home-partners-grid {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: max-content;
    gap: 6rem;
    animation: scroll-logos 40s linear infinite
}

.logo-scroller:hover #home-partners-grid {
    animation-play-state: paused
}

@keyframes scroll-logos {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

#home-partners .logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

#home-partners .logo-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease
}

#home-partners .logo-item a:hover img,
#home-partners .logo-item a:focus-visible img,
#home-partners .logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1)
}

/* Participating Exhibitors Section */
.exhibitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    margin: 3rem 0;
}

.exhibitor-logo-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.exhibitor-logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(246, 51, 151, 0.2);
}

.exhibitor-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .exhibitor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .exhibitor-logo-item {
        padding: 1rem;
    }
}

#home-partners .logo-item .sheraton-logo {
    transform: scale(1.4)
}

#home-partners .logo-item .large-logo {
    transform: scale(1.3)
}

#home-partners .logo-item .sheraton-logo:hover {
    transform: scale(1.5)
}

#home-partners .logo-item .large-logo:hover {
    transform: scale(1.4)
}

.market-opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow)
}

.stat-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.stat-card h4 {
    font-size: 2rem;
    margin-bottom: .5rem
}

.stat-card p {
    margin: 0;
    font-size: .9rem
}

#why-qatar {
    background-color: #fff0
}

.why-qatar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.why-qatar-text ul {
    list-style: none;
    padding: 0
}

.why-qatar-text li {
    font-size: 1.1rem;
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem
}

.why-qatar-text li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.why-qatar-image img,
.why-qatar-image picture {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: block
}

.why-qatar-image img {
    width: 100%
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem
}

.benefit-card {
    background: var(--white);
    padding: 2.2rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column
}

.benefit-card:hover {
    transform: translateY(-10px)
}

.benefit-card i {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    color: #fff0
}

.benefit-card h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem
}

.benefit-card p {
    font-size: .95rem;
    margin-bottom: 0
}

#who-is-attending {
    background: var(--gradient);
    color: var(--white)
}

#who-is-attending h2 {
    color: var(--white)
}

#who-is-attending .subtitle {
    color: rgb(255 255 255 / .9)
}

#who-is-attending .container {
    max-width: 1400px
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 3rem
}

.impact-card {
    position: relative;
    aspect-ratio: 202 / 227;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    color: var(--white);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgb(0 0 0 / .1)
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .2)
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #fff0 20%, rgb(25 38 65 / .9) 80%, #192641 100%);
    z-index: 1
}

.impact-number,
.impact-label {
    position: relative;
    z-index: 2;
    margin: 0;
    text-align: left
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out
}

#who-is-attending.is-visible .impact-number {
    opacity: 1;
    transform: translateY(0)
}

#who-is-attending.is-visible .impact-card:nth-child(2) .impact-number {
    transition-delay: 0.1s
}

#who-is-attending.is-visible .impact-card:nth-child(3) .impact-number {
    transition-delay: 0.2s
}

#who-is-attending.is-visible .impact-card:nth-child(4) .impact-number {
    transition-delay: 0.2s
}

#who-is-attending.is-visible .impact-card:nth-child(5) .impact-number {
    transition-delay: 0.2s
}

#who-is-attending.is-visible .impact-card:nth-child(6) .impact-number {
    transition-delay: 0.2s
}

.impact-label {
    font-size: .9rem;
    font-weight: 400;
    opacity: .9;
    margin-top: .25rem
}

.decision-makers-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center
}

.decision-makers-stats .stat-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow)
}

.decision-makers-stats .stat-group span {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    line-height: 1
}

.decision-makers-stats .stat-group p {
    margin: 0;
    line-height: 1.4
}

.decision-makers-chart .chart-item {
    margin-bottom: 1rem
}

.decision-makers-chart .chart-label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 700
}

.chart-bar-container {
    background: #e9ecef;
    border-radius: 50px
}

.chart-bar {
    background: var(--gradient);
    padding: .5rem 1rem;
    border-radius: 50px;
    color: var(--white);
    text-align: right;
    font-weight: 700;
    font-size: .9rem
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

.speaker-card {
    position: relative;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    background: #000;
}

.speaker-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.speaker-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom shadow for text legibility */
.speaker-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 30%, transparent 100%);
    z-index: 1;
}

.speaker-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    text-align: left;
}

.speaker-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.15rem;
    font-weight: 800;
    color: #fff;
    text-transform: none;
    letter-spacing: -0.02em;
}

.speaker-title {
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.05rem;
}

.speaker-org {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 400;
}

.speaker-tag {
    display: none;
}

.speaker-linkedin {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 3;
    transition: all 0.3s;
    text-decoration: none;
}

.speaker-linkedin:hover {
    background-color: #0077b5;
    color: var(--white);
}

#testimonials {
    background-color: var(--surface-color)
}

#testimonials .container {
    position: relative
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column
}

.testimonial-card i.fa-quote-left {
    font-size: 2rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    margin-bottom: 1rem
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    margin: 0 0 1.5rem;
    border-left: 3px solid #d12386;
    padding-left: 1.5rem;
    flex-grow: 1
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color)
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover
}

.testimonial-author strong {
    display: block;
    font-size: 1rem
}

.testimonial-author span {
    font-size: .85rem;
    color: #777
}

.testimonial-author>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px
}

.testimonials-mascot {
    position: absolute;
    width: 200px;
    height: auto;
    top: -45px;
    z-index: 5;
    pointer-events: none
}

.gradient-headline {
    background: var(--gradient);
    color: var(--white);
    padding: .5rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem
}

#booth-packages {
    background-color: var(--surface-color)
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
    align-items: stretch
}

.package-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgb(0 0 0 / .15)
}

.package-card.popular,
.package-card.best-visibility {
    border: 2px solid #711fb8
}

@media (min-width:1025px) {
    .package-card.popular:hover {
        transform: translateY(-10px) scale(1.03)
    }
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -45px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 40px;
    font-size: .8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgb(0 0 0 / .2)
}

.package-card__header {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background-color: #fdfcff
}

.package-card__header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.package-card__header h3 {
    font-size: 1.5rem;
    margin: 0 0 .5rem;
    font-weight: 800
}

.package-card__size {
    font-size: 1rem;
    font-weight: 700;
    color: #555;
    margin: 0
}

.package-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.package-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1
}

.package-card__features li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: .95rem;
    line-height: 1.5;
    color: #444
}

.package-card__features li i {
    color: #d12386;
    margin-top: 4px
}

.package-card .btn {
    margin-top: auto;
    width: 100%
}

.urgency-cta-section {
    margin-top: 16rem;
    padding: 2.5rem;
    background: linear-gradient(rgb(255 255 255 / .9), rgb(255 255 255 / .9)), url(https://images.pexels.com/photos/2608517/pexels-photo-2608517.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2&fm=webp) center/cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: visible
}

.urgency-cta-section h3 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem
}

.urgency-cta-section h3 i {
    color: #d12386;
    margin-right: .5rem
}

.urgency-cta-section p {
    max-width: 600px;
    margin: 0 auto 1rem;
    font-size: 1.1rem
}

.urgency-cta-section .countdown-label {
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color)
}

#early-bird-countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: .5rem auto 0;
    max-width: 450px
}

#early-bird-countdown .timer-unit {
    background: rgb(0 0 0 / .05);
    border: 1px solid rgb(0 0 0 / .1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    flex-grow: 1
}

#early-bird-countdown .timer-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1;
    color: #711fb8
}

#early-bird-countdown .timer-unit p {
    margin: 0;
    font-size: .75rem;
    opacity: .8;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color)
}

#early-bird-countdown h4 {
    color: var(--text-color);
    text-align: center;
    width: 100%
}

.prime-booth-counter {
    margin: 1.5rem 0 0;
    font-weight: 700;
    font-size: 1.1rem
}

.prime-booth-counter p {
    margin: auto
}

.prime-booth-counter span {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 1.5rem;
    vertical-align: middle
}

.urgency-cta-section .btn {
    margin-top: 2rem
}

#sponsorship-details h2,
#sponsorship-details h3,
#exclusive-branding h2,
#exclusive-branding h3 {
    text-align: left
}

#sponsorship-details .subtitle,
#exclusive-branding .subtitle {
    text-align: left;
    margin-left: 0
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    align-items: stretch;
    justify-content: center
}

.tier-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgb(0 0 0 / .05), 0 10px 20px rgb(0 0 0 / .05);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 15px rgb(0 0 0 / .07), 0 15px 30px rgb(0 0 0 / .07)
}

.tier-header {
    padding: 2rem;
    color: var(--white)
}

.tier-card.platinum .tier-header {
    background: #101c35
}

.tier-card.gold .tier-header {
    background: #ffc107;
    color: var(--text-color)
}

.tier-card.startup .tier-header {
    background: var(--gradient)
}

.tier-header h3 {
    font-size: 1.8rem;
    color: inherit;
    margin-bottom: .25rem;
    text-align: left
}

.tier-subtitle {
    font-weight: 700;
    opacity: .9;
    margin: 0
}

.tier-body {
    padding: 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.tier-description {
    margin-bottom: 1.5rem;
    color: #444
}

.tier-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left
}

.tier-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1
}

.tier-benefits li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: .75rem;
    font-size: .95rem
}

.tier-benefits li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: #d12386
}

.tier-benefits.two-column-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem 1.5rem
}

.tier-benefits.two-column-list li {
    margin-bottom: 0
}

.tier-footer {
    padding: 0 2rem 2rem;
    margin-top: auto
}

.tier-footer .btn {
    width: 100%
}

.sponsorship-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.sponsorship-addons-grid .a-la-carte-card {
    background: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #fff0
}

.sponsorship-addons-grid .a-la-carte-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    background: var(--white);
    border-color: var(--border-color)
}

.sponsorship-addons-grid .a-la-carte-card i {
    font-size: 3rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    margin-bottom: 1.5rem
}

.sponsorship-addons-grid .a-la-carte-card h4 {
    font-size: 1.3rem;
    margin-bottom: .5rem;
    text-align: center
}

.sponsorship-addons-grid .a-la-carte-card p {
    font-size: .95rem;
    color: #555;
    margin-bottom: 0
}

#sponsorship-intro .market-opportunity-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr))
}

#sponsorship-intro .stat-card {
    background: var(--surface-color)
}

#sponsorship-intro h2 {
    text-align: left
}

#sponsorship-intro .subtitle {
    text-align: left;
    margin-left: 0
}

#sponsor-faq h2 {
    text-align: left;
    margin-bottom: 1rem
}

#sponsor-faq .faq-accordion {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 2rem
}

#final-cta {
    background: var(--gradient);
    color: var(--white)
}

#final-cta h2,
#final-cta p {
    color: var(--white);
    text-align: center
}

#final-cta .cta-group {
    margin-top: 2.5rem
}

#final-cta h2 {
    font-size: 2.5rem
}

#three-ways-to-join {
    background-color: var(--white)
}

.ways-to-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch
}

.way-card {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(209, 35, 134, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: var(--white);
    overflow: hidden;
    border: none;
}

.way-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgb(113 31 184 / .25)
}

.way-card img,
.way-card picture {
    width: 100%;
    height: 220px;
    display: block
}

.way-card img {
    object-fit: cover;
    width: 100%;
    height: 100%
}

.way-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.way-card-content h3 {
    margin: 0 0 .5rem;
    font-size: 1.6rem
}

.way-card-content p {
    padding: 0;
    margin: 0 0 1.5rem;
    flex-grow: 1;
    color: #555
}

.way-card-cta {
    margin-top: auto
}

.way-card .btn {
    width: 80%;
    margin: 0 auto
}

/* Home FAQ Mini Styles */
/* Home FAQ Mini Styles */
#home-faq .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    align-items: stretch; /* Ensures equal height in a row */
}

.faq-item-mini {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-item-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #d12386, #711fb8);
    transition: width 0.3s ease;
}

.faq-item-mini:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(209, 35, 134, 0.1);
    border-color: rgba(209, 35, 134, 0.1);
}

.faq-item-mini:hover::before {
    width: 8px;
}

.faq-item-mini .faq-icon {
    width: 50px;
    height: 50px;
    background: rgba(209, 35, 134, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #d12386;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.faq-item-mini:hover .faq-icon {
    background: #d12386;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.faq-item-mini h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    font-family: 'Montserrat', sans-serif;
}

.faq-item-mini p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    flex-grow: 1;
}

[dir="rtl"] .faq-item-mini::before {
    left: auto;
    right: 0;
}

@media (min-width:992px) {
    .ways-to-join-grid {
        align-items: center
    }

    .way-card--speak {
        transform: scale(1.05);
        z-index: 5
    }

    .way-card--speak:hover {
        transform: scale(1.08) translateY(-8px)
    }
}

.way-card-badge {
    position: absolute;
    top: 15px;
    right: -40px;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 40px;
    font-size: .8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgb(0 0 0 / .2);
    z-index: 2
}

#three-ways-to-join .way-card {
    background: linear-gradient(135deg, #d12386, #711fb8);
    color: var(--white);
    box-shadow: 0 15px 40px rgba(113, 31, 184, 0.3);
}

#three-ways-to-join .way-card h3 {
    color: var(--white);
    font-weight: 800;
}

#three-ways-to-join .way-card p {
    color: rgba(255, 255, 255, 0.9);
}

#three-ways-to-join .way-card p strong {
    color: #fff;
}

#three-ways-to-join .way-card .btn {
    background: #101c35;
    color: #fff;
    border-color: #fff;
    transition: background-color 0.3s, color 0.3s
}

#three-ways-to-join .way-card .btn:hover {
    background-color: #fff;
    color: #000
}

#who-should-exhibit .container {
    position: relative
}

.exhibit-mascot {
    position: absolute;
    width: 180px;
    height: auto;
    top: -50px;
    right: 9%;
    z-index: 5;
    pointer-events: none
}

.exhibitor-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto
}

.exhibitor-type-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgb(0 0 0 / .05)
}

.exhibitor-type-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.exhibitor-type-card p {
    margin: 0;
    font-size: 1rem
}

.lead-capture-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.lead-capture-text h2,
.lead-capture-text h3 {
    text-align: left
}

.lead-capture-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: .5rem
}

.lead-capture-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.lead-capture-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0
}

.lead-capture-features li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.lead-capture-features i {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    font-size: 1.3rem;
    margin-top: 4px
}

.lead-capture-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border-color)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative
}

.exhibitor-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .exhibitor-form {
        padding: 1.5rem;
        border-radius: 10px;
    }
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: .5rem;
    font-size: .9rem
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: var(--primary-font);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    /* Prevent iOS zoom on focus */
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px;
        /* Prevents auto-zoom on iOS */
        padding: 12px 12px;
    }
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #711fb8;
    box-shadow: 0 0 0 3px rgb(113 31 184 / .2)
}

input.invalid,
select.invalid,
textarea.invalid {
    border-color: #e74c3c
}

.error-message {
    color: #e74c3c;
    font-size: .85rem;
    font-weight: 600;
    margin-top: 5px;
    display: none
}

.form-group-consent {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.5rem
}

.form-group-consent input[type="checkbox"] {
    margin-top: 5px;
    width: auto;
    flex-shrink: 0
}

.form-group-consent label {
    font-weight: 400;
    font-size: .85rem;
    margin-bottom: 0
}

.interest-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: .5rem 1.5rem
}

.interest-checkbox-item {
    display: flex;
    align-items: center;
    gap: .75rem
}

.interest-checkbox-item input[type="checkbox"] {
    width: auto;
    margin-top: 0;
    flex-shrink: 0
}

.interest-checkbox-item label {
    font-weight: 400;
    font-size: .95rem;
    margin: 0
}

#contact-methods {
    padding-bottom: 40px
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .1)
}

.contact-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: .75rem
}

.contact-card p {
    font-size: .95rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1
}

.content-card .btn-primary {
    margin-top: 2rem
}

.contact-card .btn {
    margin-top: auto;
    width: 80%
}

a.contact-email {
    margin-top: auto;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-word
}

a.contact-email:hover {
    color: #d12386;
    text-decoration: underline
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color)
}

#contact-page-form-section h2,
#contact-page-form-section .subtitle {
    text-align: center
}

#contact-form {
    text-align: left
}

#form-success-message {
    text-align: center;
    padding: 2rem;
    border: 1px solid #b2e2d5;
    background-color: #f0f9f8;
    border-radius: 10px
}

#form-success-message h3 {
    text-align: center
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.content-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .1)
}

.content-card h3 {
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: 800
}

.content-card h3 i {
    font-size: 2.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

#visa-entry .content-card h3 {
    white-space: nowrap
}

.content-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0
}

.content-card .btn {
    margin-top: auto;
    width: 80%
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--heading-font)
}

.faq-question i {
    transition: transform 0.3s ease
}

.faq-item.open .faq-question i {
    transform: rotate(45deg)
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none
}

.faq-item.open .faq-answer {
    display: block
}

.faq-answer p:last-child {
    margin-bottom: 0
}

.main-footer {
    background-color: #101c35;
    color: rgb(255 255 255 / .8);
    padding: 60px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 40px;
    align-items: start
}

.footer-col .logo img {
    height: 95px;
    margin-bottom: 1rem
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
    margin-top: 0
}

.footer-links {
    list-style: none
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    color: rgb(255 255 255 / .8);
    text-decoration: none;
    transition: color 0.3s
}

.footer-links a:hover {
    color: var(--white)
}

.footer-contact-info {
    list-style: none
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
}

.footer-contact-info a {
    color: rgb(255 255 255 / .8);
    text-decoration: none
}

.footer-contact-info a:hover {
    color: var(--white)
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: transform 0.3s
}

.social-links a:hover {
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / .1);
    padding: 20px 0;
    text-align: center;
    font-size: .9rem
}

.footer-bottom p {
    margin: 0
}

.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    animation: whatsapp-blink 1.5s infinite;
    box-shadow: 0 4px 12px rgb(0 0 0 / .15)
}

.whatsapp-fab:hover {
    animation: none;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgb(37 211 102 / .4)
}

@keyframes whatsapp-blink {
    0% {
        box-shadow: 0 0 0 0 rgb(37 211 102 / .7)
    }

    100% {
        box-shadow: 0 0 0 25px #fff0
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible
}

.modal-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgb(0 0 0 / .2);
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(.95);
    transition: transform 0.3s ease
}

.modal-overlay.visible .modal-content {
    transform: scale(1)
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999
}

.exit-intent-content {
    text-align: center
}

.exit-intent-content h3 {
    margin-top: 0
}

#mobile-sticky-bar {
    display: none
}

.coming-soon-section {
    padding: 100px 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.coming-soon-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto
}

.coming-soon-content .fa-clock,
.coming-soon-content .fa-exclamation-triangle {
    font-size: 4rem;
    color: var(--text-color);
    opacity: .8;
    margin-bottom: 2rem
}

.coming-soon-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem
}

.coming-soon-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2.5rem
}

#audience-reach .stat-card {
    background-color: var(--surface-color)
}

#target-audience {
    padding-top: 40px
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.audience-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: #d12386
}

.audience-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.audience-card h4 {
    font-size: 1.3rem;
    margin-bottom: .75rem;
    text-align: center
}

.audience-card p {
    font-size: .95rem;
    color: #555;
    margin-bottom: 0;
    flex-grow: 1
}

.exposure-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem
}

.exposure-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.exposure-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgb(0 0 0 / .1)
}

.exposure-item:nth-child(even) .exposure-image {
    order: 2
}

.exposure-image img,
.exposure-image picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block
}

.exposure-text h3 {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .75rem
}

.exposure-text h3 i {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.exposure-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem
}

.exposure-benefits li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: .75rem
}

.exposure-benefits li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #d12386
}

#marketing-timeline-section {
    padding-top: 40px
}

.marketing-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0
}

.marketing-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #d12386, #711fb8);
    border-radius: 2px
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem
}

.timeline-item:last-child {
    margin-bottom: 0
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 5px var(--bg-color), 0 0 15px rgb(113 31 184 / .5)
}

.timeline-icon i {
    color: var(--white);
    font-size: 1rem;
    vertical-align: middle
}

.timeline-content h4 {
    text-align: left;
    margin-top: .5rem;
    margin-bottom: .5rem;
    font-size: 1.3rem
}

.timeline-content p {
    margin: 0;
    color: #555
}

#speaker-registration-form-section fieldset {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem
}

#speaker-registration-form-section legend {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 1.3rem;
    padding: 0 .5rem;
    margin-left: -.5rem
}

.session-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem
}

.session-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem
}

.session-checkbox-item input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
    flex-shrink: 0
}

.session-checkbox-item label {
    font-weight: 400;
    font-size: .9rem;
    margin: 0
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.file-upload-ui {
    display: flex;
    align-items: center;
    gap: 1rem
}

.file-upload-btn {
    flex-shrink: 0
}

.file-upload-btn i {
    margin-right: .5rem
}

.file-name-display {
    font-style: italic;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

#speaker-registration-form-section .form-group-consent {
    display: block
}

#speaker-registration-form-section .form-group-consent label {
    margin-bottom: .75rem
}

.consent-group {
    display: flex;
    gap: 2rem
}

.consent-radio-item {
    display: flex;
    align-items: center;
    gap: .5rem
}

.consent-radio-item input[type="radio"] {
    width: auto
}

.consent-radio-item label {
    margin: 0;
    font-weight: 400;
    margin-top: 8px
}

@media (max-width:1200px) {
    .main-header .container {
        padding: 0 1rem
    }

    #main-nav>ul {
        gap: 1.2rem
    }

    .nav-link {
        font-size: .9rem
    }

    .header-ctas {
        display: none
    }

    .lead-capture-grid {
        gap: 2rem
    }

    .impact-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .hero-mascot {
        width: 220px;
        right: 20px;
        bottom: -30px
    }

    .exhibit-mascot {
        top: 50px;
        right: 5%
    }
}

@media (max-width:992px) {
    h1 {
        font-size: 2.5rem
    }

    h2 {
        font-size: 2.2rem
    }

    section {
        padding: 60px 0
    }

    .nav-toggle {
        display: block
    }

    #main-nav {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 300px;
        height: 100%;
        background: var(--white);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0
    }

    .main-header.nav-open #main-nav {
        transform: translateX(0)
    }

    #main-nav>ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        overflow-y: auto
    }

    #main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--border-color)
    }

    .nav-link {
        padding: 1rem 1.5rem;
        width: 100%;
        justify-content: space-between
    }

    .nav-link.active::after {
        display: none
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: 1px solid var(--border-color);
        min-width: 100%;
        padding: 0;
        margin: 0;
        display: none
    }

    .has-dropdown.dropdown-open>.dropdown-menu {
        display: block
    }

    .dropdown-menu a {
        padding-left: 2.5rem;
        margin-left: auto;
        background-color: var(--surface-color)
    }

    .why-qatar-content,
    .decision-makers-layout,
    .lead-capture-grid {
        grid-template-columns: 1fr
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lead-capture-image {
        order: -1
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem
    }

    .exposure-item {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .exposure-item:nth-child(even) .exposure-image {
        order: -1
    }

    .hero-mascot {
        display: none;
        width: 180px;
        right: 10px;
        bottom: -20px
    }

    .exhibit-mascot,
    .testimonials-mascot {
        display: none
    }
}

@media (max-width:768px) {
    #hero {
        padding: 80px 0
    }

    #hero.counselling-hero {
        background-image: url(https://res.cloudinary.com/dj3vhocuf/image/upload/w_800,q_auto,f_auto/v1762464000/pexels-photo-3184418.webp)
    }

    .timer-unit span {
        font-size: 2rem
    }

    .timer-unit {
        min-width: 70px;
        padding: 0.8rem
    }

    #countdown-timer {
        gap: 0.5rem
    }

    .benefits-grid,
    .packages-grid {
        grid-template-columns: 1fr
    }

    .benefit-card h3 {
        min-height: auto
    }

    .marketing-timeline::before {
        left: 15px
    }

    .timeline-item {
        padding-left: 50px
    }

    .timeline-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        box-shadow: 0 0 0 3px var(--bg-color)
    }

    #mobile-sticky-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 -2px 10px rgb(0 0 0 / .1);
        z-index: 990;
        display: flex;
        justify-content: space-around;
        padding: 5px 0
    }

    .mobile-cta-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--text-color);
        font-size: 0.7rem;
        padding: 5px;
        transition: color 0.3s
    }

    .mobile-cta-btn i {
        font-size: 1.2rem;
        margin-bottom: 3px
    }

    .mobile-cta-btn:hover {
        color: #d12386
    }

    body {
        padding-bottom: 60px
    }

    .whatsapp-fab {
        bottom: 80px
    }

    .tier-benefits.two-column-list {
        grid-template-columns: 1fr
    }

    .exhibitor-types-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:576px) {
    .container {
        padding: 0 15px
    }

    h1 {
        font-size: 1.8rem
    }

    h2 {
        font-size: 1.6rem
    }

    .section {
        padding: 40px 0
    }

    #countdown-timer {
        gap: 0.5rem;
        flex-wrap: nowrap
    }

    .timer-unit {
        min-width: auto;
        flex: 1;
        padding: 0.5rem
    }

    .timer-unit span {
        font-size: 1.5rem
    }

    .timer-unit p {
        font-size: 0.65rem
    }

    .benefit-card,
    .package-card,
    .testimonial-card,
    .contact-card,
    .audience-card,
    .content-card {
        padding: 1.5rem
    }

    .footer-grid,
    .contact-cards-grid,
    .session-selection-grid {
        grid-template-columns: 1fr
    }

    .exhibitor-types-grid {
        grid-template-columns: 1fr;
        max-width: 320px
    }

    .impact-grid {
        grid-template-columns: 1fr
    }

    .impact-number {
        font-size: 2.2rem
    }

    .impact-label {
        font-size: 0.9rem
    }

    .hero-mascot {
        width: 150px
    }
}

@media (max-width:375px) {

    #countdown-timer,
    #early-bird-countdown {
        gap: 0.5rem
    }

    .timer-unit,
    #early-bird-countdown .timer-unit {
        min-width: 65px;
        padding: 0.7rem
    }

    .timer-unit span,
    #early-bird-countdown .timer-unit span {
        font-size: 1.8rem
    }
}

#agenda {
    padding-top: 40px
}

.agenda-container {
    max-width: 1000px
}

.agenda-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    background-color: var(--surface-color);
    border-radius: 50px;
    padding: 5px;
    box-shadow: inset 0 2px 4px rgb(0 0 0 / .05)
}

.agenda-tabs .tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--heading-font);
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: var(--text-color)
}

.agenda-tabs .tab-btn:hover {
    background-color: rgb(0 0 0 / .05)
}

.agenda-tabs .tab-btn.active {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow)
}

.agenda-content {
    display: none
}

.agenda-content.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.agenda-timeline {
    border-left: 3px solid var(--border-color);
    padding-left: 2rem
}

.timeline-block {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    position: relative;
    padding-bottom: 3rem
}

.timeline-block::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 15px;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid #711fb8;
    z-index: 1
}

.timeline-time h3 {
    text-align: left;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    position: sticky;
    top: 120px
}

.timeline-time span {
    font-weight: 700;
    color: #777
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.timeline-events .track-title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--surface-color);
    color: #711fb8
}

.timeline-events .track-title:first-child {
    margin-top: 0
}

.session-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-left: 5px solid #ccc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden
}

.session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgb(0 0 0 / .12)
}

.session-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--surface-color);
    font-size: 1.5rem
}

.session-content h4 {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    font-family: var(--primary-font);
    font-weight: 700
}

.session-content p {
    margin: 0;
    color: #555;
    font-size: 0.9rem
}

.session-tag {
    position: absolute;
    top: 10px;
    right: -35px;
    background: #6c757d;
    color: var(--white);
    padding: 5px 30px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 1px 3px rgb(0 0 0 / .2)
}

.session-card.keynote {
    background: var(--gradient);
    color: var(--white);
    border-color: #d12386
}

.session-card.keynote .session-icon {
    background: rgb(255 255 255 / .2);
    color: var(--white)
}

.session-card.keynote .session-content p {
    color: rgb(255 255 255 / .8)
}

.session-card.panel {
    border-color: #17a2b8
}

.session-card.panel .session-icon {
    color: #17a2b8
}

.session-card.track {
    border-color: #ffc107
}

.session-card.track .session-icon {
    color: #ffc107
}

.session-card.break {
    border-color: #6c757d
}

.session-card.break .session-icon {
    color: #6c757d
}

.session-card.closed {
    border-color: #dc3545
}

.session-card.closed .session-icon {
    color: #dc3545
}

.session-card.award {
    background: linear-gradient(to right, #f2c94c, #f2994a);
    color: var(--text-color);
    border-color: #f2994a
}

.session-card.award .session-icon {
    background: rgb(255 255 255 / .4);
    color: #a06c14
}

#event-highlights h2,
#event-highlights .subtitle {
    text-align: center
}

#event-highlights .content-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr))
}

#event-highlights .content-card {
    padding: 2rem 1.5rem
}

#event-highlights .content-card h3 {
    font-size: 1.1rem;
    min-height: 0;
    flex-grow: 1;
    justify-content: center
}

#event-highlights .content-card h3 i {
    font-size: 2rem;
    margin-bottom: 0.75rem
}

@media(max-width:768px) {
    .agenda-tabs {
        flex-direction: column;
        border-radius: 10px
    }

    .agenda-tabs .tab-btn {
        font-size: 1rem
    }

    .timeline-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-left: 1.5rem
    }

    .agenda-timeline {
        padding-left: 1rem
    }

    .timeline-block::before {
        left: -1rem
    }

    .timeline-time {
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color)
    }

    .timeline-time h3 {
        position: static
    }

    .session-tag {
        top: 5px;
        right: -40px;
        font-size: 0.7rem
    }
}

.about-page #market-opportunity .subtitle {
    font-size: 1.3rem
}

.about-page .stat-card p {
    font-size: 1rem
}

.about-page .why-qatar-text li {
    font-size: 1.2rem
}

#target-audience .audience-card {
    padding: 0;
    text-align: left;
    overflow: hidden
}

.audience-avatar {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block
}

.audience-card-content {
    padding: 1.5rem
}

#target-audience .audience-card h4 {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem
}

#target-audience .audience-card i {
    font-size: 1.3rem;
    margin-bottom: 0
}

#marketing-ecosystem {
    padding-top: 40px
}

.exposure-tabs-container {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 3rem
}

.exposure-tabs {
    display: flex;
    background-color: var(--surface-color);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px
}

.exposure-tab-btn {
    flex: 1;
    padding: 1.25rem 1rem;
    border: none;
    background: none;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--heading-font);
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem
}

.exposure-tab-btn:hover {
    color: var(--text-color);
    background-color: #e9ecef
}

.exposure-tab-btn.active {
    color: #711fb8;
    border-bottom-color: #711fb8;
    background: var(--white)
}

.exposure-content-panels {
    padding: 2.5rem
}

.exposure-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out
}

.exposure-content.active {
    display: block
}

.exposure-content h3 {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 2rem
}

.exposure-panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.exposure-benefit-item {
    text-align: center
}

.exposure-benefit-item i {
    font-size: 2rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    margin-bottom: 1rem
}

.exposure-benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center
}

.exposure-benefit-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0
}

@media (max-width:768px) {
    .exposure-tabs {
        flex-direction: column;
        border-radius: 10px
    }

    .exposure-tab-btn {
        border-bottom: 1px solid var(--border-color);
        border-radius: 0
    }

    .exposure-tab-btn.active {
        border-bottom-color: #711fb8
    }

    .exposure-content-panels {
        padding: 1.5rem
    }

    .audience-avatar {
        height: 150px
    }
}

#exhibitor-benefits .container {
    position: relative
}

.benefits-mascot {
    position: absolute;
    width: 180px;
    height: auto;
    right: 6%;
    top: -55px;
    z-index: 5;
    pointer-events: none
}

#about-expo .container {
    position: relative
}

.market-mascot {
    position: absolute;
    width: 120px;
    height: auto;
    top: -105px;
    right: 40px;
    z-index: 5;
    pointer-events: none
}

#why-attend-benefits .container {
    position: relative
}

.why-attend-mascot {
    position: absolute;
    width: 260px;
    height: auto;
    top: -35px;
    left: 0;
    z-index: 5;
    pointer-events: none
}

#decision-makers .container {
    position: relative
}

.footer-mascot {
    position: absolute;
    width: 180px;
    height: auto;
    bottom: -105px;
    right: -150px;
    z-index: 5;
    pointer-events: none
}

.content-card.hayya-card {
    position: relative;
    overflow: visible
}

.visa-mascot {
    position: absolute;
    width: 300px;
    height: auto;
    top: -350px;
    left: -20px;
    right: -30px;
    z-index: 5;
    pointer-events: none
}

.admission-zone-card {
    position: relative;
    overflow: visible
}

.agenda-mascot {
    position: absolute;
    width: 180px;
    height: auto;
    top: -160px;
    left: 70%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none
}

.student-reg-mascot {
    position: absolute;
    width: 230px;
    height: auto;
    top: 110px;
    bottom: 150px;
    right: 5%;
    z-index: 5;
    pointer-events: none
}

.booth-reg-mascot {
    position: absolute;
    width: 230px;
    height: auto;
    top: 110px;
    right: 5%;
    z-index: 5;
    pointer-events: none
}

.sponsorship-reg-mascot {
    position: absolute;
    width: 230px;
    height: auto;
    top: 110px;
    right: 5%;
    z-index: 5;
    pointer-events: none
}

.school-group-reg-mascot {
    position: absolute;
    width: 230px;
    height: auto;
    top: 110px;
    right: 5%;
    z-index: 5;
    pointer-events: none
}

.speaker-reg-mascot {
    position: absolute;
    width: 230px;
    height: auto;
    top: 110px;
    right: 5%;
    z-index: 5;
    pointer-events: none
}

.benefit-card.partnership-card-with-mascot {
    position: relative;
    overflow: visible
}

.card-top-mascot {
    position: absolute;
    width: 240px;
    height: auto;
    top: -190px;
    left: 60%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none
}

.exhibit-footer-mascot {
    position: absolute;
    width: 230px;
    height: auto;
    bottom: -105px;
    left: -110px;
    z-index: 5;
    pointer-events: none
}

.booth-features-mascot {
    position: absolute;
    width: 300px;
    height: auto;
    top: -240px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none
}

.hackathon-intro-mascot {
    position: absolute;
    width: 200px;
    height: auto;
    top: -150px;
    right: -220px;
    z-index: 5;
    pointer-events: none
}

.tier-card.startup-card-with-mascot {
    position: relative;
    overflow: visible
}

.tier-mascot {
    position: absolute;
    width: 180px;
    height: auto;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none
}

.impressions-card-with-mascot {
    position: relative;
    overflow: visible
}

.sponsorship-intro-mascot {
    position: absolute;
    width: 250px;
    height: auto;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none
}

.countries-card-with-mascot {
    position: relative;
    overflow: visible
}

.brand-exposure-mascot {
    position: absolute;
    width: 280px;
    height: auto;
    top: -220px;
    left: 70%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none
}

.pre-event-panel-with-mascot {
    position: relative
}

.pre-event-mascot {
    position: absolute;
    width: 180px;
    height: auto;
    top: -300px;
    left: 70px;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none
}

.quick-chat-card-with-mascot {
    position: relative;
    overflow: visible
}

.contact-quick-chat-mascot {
    position: absolute;
    width: 170px;
    height: auto;
    top: -210px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    pointer-events: none
}

.faq-item-with-mascot {
    position: relative;
    overflow: visible
}

.contact-faq-mascot {
    position: absolute;
    width: 160px;
    height: auto;
    top: -135px;
    left: 1%;
    transform: translateX(-50%) scaleX(-1);
    z-index: 5;
    pointer-events: none
}

@media (max-width:1200px) {
    .benefits-mascot {
        left: 0;
        width: 180px;
        top: 50px
    }
}

@media (max-width:992px) {

    .benefits-mascot,
    .hackathon-intro-mascot,
    .testimonials-mascot,
    .market-mascot,
    .why-attend-mascot,
    .footer-mascot,
    .visa-mascot,
    .agenda-mascot,
    .student-reg-mascot,
    .booth-reg-mascot,
    .sponsorship-reg-mascot,
    .school-group-reg-mascot,
    .exhibit-footer-mascot,
    .booth-features-mascot,
    .tier-mascot,
    .brand-exposure-mascot,
    .pre-event-mascot,
    .contact-quick-chat-mascot,
    .contact-faq-mascot,
    .speaker-reg-mascot {
        display: none
    }
}

.lang-switcher {
    margin-left: 1rem;
    display: flex;
    align-items: center;
    z-index: 1002
}

.lang-switcher a,
.mobile-header-lang-switcher a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #101c35;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
    border: none;
    z-index: 1002
}

.lang-switcher a:hover,
.mobile-header-lang-switcher a:hover {
    background: #2a3a5a;
    color: var(--white)
}

.lang-flag {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover
}

.mobile-nav-logo,
.mobile-nav-ctas,
.mobile-header-lang-switcher,
.mobile-nav-header,
.mobile-nav-close {
    display: none
}

@media (max-width:992px) {
    .main-header {
        direction: ltr
    }

    #main-nav {
        display: flex;
        z-index: 1000
    }

    #main-nav>ul {
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%
    }

    .mobile-header-lang-switcher {
        display: block;
        margin-left: auto;
        z-index: 999
    }

    .mobile-nav-header {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        width: 100%
    }

    .mobile-nav-logo {
        display: block
    }

    .mobile-nav-logo img {
        height: 65px;
        width: auto
    }

    .mobile-nav-ctas {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1.5rem 2.5rem;
        width: 100%
    }

    .mobile-nav-ctas .btn {
        width: 100%;
        text-align: center
    }

    /* Fixed Off-Canvas Mobile Menu */
    #main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 0;
    }

    .main-header.nav-open #main-nav {
        transform: translateX(0);
    }

    .main-header.nav-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

@media (max-width:576px) {
    .impact-grid {
        grid-template-columns: 1fr
    }

    /* Mobile Responsive Fixes */
    .logo img {
        height: 50px;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .cta-group .btn {
        width: 100%;
        margin: 0;
    }

    #countdown-timer {
        gap: 0.5rem;
    }

    .timer-unit {
        min-width: auto;
        padding: 0.5rem;
        flex-grow: 1;
    }

    .timer-unit span {
        font-size: 1.5rem;
    }
}

@media (min-width:1201px) {
    .main-header .container {
        max-width: 1800px
    }

    #main-nav {
        flex: initial
    }
}

.feature-section {
    padding: 80px 0
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2e7fc
}

.feature-icon i {
    font-size: 1.8rem;
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: left
}

.feature-text p {
    margin: 0;
    color: #555
}

#meet-the-experts-v2 {
    padding-top: 0
}

.counselor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.counselor-card-v2 {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    align-items: flex-start
}

.counselor-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .1)
}

.counselor-card-v2 .speaker-photo {
    position: relative;
    top: auto;
    left: auto;
    margin: 0;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover
}

.counselor-card-v2 .speaker-info,
.counselor-card-v2 .speaker-info h4 {
    text-align: left
}

.counselor-card-v2 .speaker-org {
    font-size: 0.9rem;
    margin-bottom: 1rem
}

.counselor-specialty {
    font-weight: 700;
    font-size: 0.9rem;
    color: #711fb8;
    margin: 0
}

#counselling-faq {
    background-color: var(--white)
}

.counselling-final-cta {
    background: var(--gradient);
    color: var(--white);
    text-align: center
}

.counselling-final-cta h2,
.counselling-final-cta p {
    color: var(--white)
}

.counselling-final-cta h2 {
    font-size: 2.5rem
}

.counselling-final-cta p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.counselling-final-cta .cta-group {
    margin-top: 2rem
}

.counselling-final-cta .btn-primary {
    background: #101c35;
    color: var(--white);
    border-color: #101c35
}

.counselling-final-cta .btn-primary:hover {
    background: #2a3a5a;
    border-color: #2a3a5a;
    color: var(--white)
}

@media (max-width:992px) {
    .counselling-hero-v2 .container {
        grid-template-columns: 1fr;
        text-align: center
    }

    .counselling-hero-v2 .hero-text h1 {
        text-align: center;
        font-size: 2.8rem
    }

    .counselling-hero-v2 .hero-text p {
        max-width: 100%
    }

    .counselling-hero-v2 .cta-group,
    .counselling-hero-v2 .hero-stats {
        justify-content: center
    }

    .hero-image-v2 {
        order: -1;
        min-height: 300px
    }
}

@media (max-width:576px) {
    .counselling-hero-v2 .hero-text h1 {
        font-size: 2.2rem
    }

    .feature-list {
        grid-template-columns: 1fr
    }

    .counselor-card-v2 {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .counselor-card-v2 .speaker-info,
    .counselor-card-v2 .speaker-info h4 {
        text-align: center
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem
}

.article-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgb(0 0 0 / .15)
}

.article-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.article-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.article-card__content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    text-align: left;
    margin-top: 0
}

.article-card__excerpt {
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
    margin-bottom: 1.5rem
}

.article-card__read-more {
    font-weight: 700;
    color: #711fb8;
    text-decoration: none;
    align-self: flex-start
}

.article-card__read-more:hover {
    text-decoration: underline
}

.blog-post-header {
    text-align: center;
    margin-bottom: 2rem
}

.blog-post-header h1 {
    font-size: 2.8rem;
    color: var(--text-color);
    text-shadow: none
}

.blog-post-meta {
    margin-top: -1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #777;
    text-align: center
}

.blog-post-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto
}

.blog-post-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 1rem
}

.blog-post-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem
}

.blog-post-content ul {
    list-style-position: inside;
    padding-left: 1rem;
    margin-bottom: 1.5rem
}

.blog-post-content li {
    margin-bottom: 0.75rem
}

@media (max-width:768px) {
    .blog-post-header h1 {
        font-size: 2.2rem
    }
}

.read-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 5px;
    background: var(--gradient);
    z-index: 2000;
    transition: width 0.1s linear
}

#blog-post {
    position: relative
}

.social-share-sticky {
    position: sticky;
    top: 150px;
    float: left;
    margin-left: -120px;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.social-share-sticky a,
.social-share-sticky button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    color: #555;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer
}

.social-share-sticky a:hover,
.social-share-sticky button:hover {
    background-color: var(--text-color);
    color: var(--white);
    transform: scale(1.1)
}

.key-takeaway {
    background-color: #f2e7fc;
    border-left: 5px solid #711fb8;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0
}

.key-takeaway h3 {
    font-size: 1.3rem;
    text-align: left;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #711fb8
}

.key-takeaway ul {
    list-style-type: none;
    padding-left: 0
}

.key-takeaway li {
    padding-left: 2rem;
    position: relative
}

.key-takeaway li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #711fb8
}

.social-share-inline {
    display: none;
    text-align: center;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color)
}

.social-share-inline h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem
}

.social-share-inline .share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem
}

.social-share-inline a,
.social-share-inline button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    color: #555;
    font-size: 1.3rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease
}

.social-share-inline a:hover,
.social-share-inline button:hover {
    background-color: var(--text-color);
    color: var(--white)
}

.author-box {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem
}

.author-box__image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0
}

.author-box__info h4 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
    text-align: left
}

.author-box__bio {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem
}

.author-box__social a {
    color: #777;
    text-decoration: none;
    font-size: 1.3rem;
    margin-right: 1rem;
    transition: color 0.3s ease
}

.author-box__social a:hover {
    color: #711fb8
}

.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color)
}

.related-articles h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem
}

@media (max-width:1100px) {
    .social-share-sticky {
        display: none
    }

    .social-share-inline {
        display: block
    }
}

@media (max-width:576px) {
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

    .author-box__info h4 {
        text-align: center
    }
}

#cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #ffffff;
    color: #0f172a;
    padding: 30px;
    border-radius: 20px;
    z-index: 9999;
    display: none;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

#cookie-banner h4 {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #002169;
}

#cookie-banner p {
    margin: 0 0 25px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    font-weight: 500;
}

.cookie-banner-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.cookie-banner-content {
    flex: 1;
}

.cookie-banner-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-banner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-footer-links {
    display: flex;
    gap: 25px;
}

.cookie-footer-links a {
    color: #002169;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.cookie-footer-links a:hover {
    text-decoration: underline;
}

#cookie-banner #acceptCookies {
    background: #002169;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-banner #acceptCookies:hover {
    background: #001a54;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    #cookie-banner {
        padding: 20px;
        bottom: 20px;
    }

    .cookie-banner-layout {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-footer-links {
        gap: 15px;
    }
}

.hackathon-hero-section {
    padding: 80px 20px;
}

.hackathon-hero-section .hero-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hackathon-hero-section .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width:768px) {
    .hackathon-hero-section {
        padding: 60px 10px
    }

    .hackathon-hero-section .hero-title {
        font-size: 2.5rem;
    }

    .hackathon-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
}

#participating-universities {
    background-color: #fff;
    padding: 100px 0
}

.uni-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-top: 4rem
}

.uni-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 220px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center
}

.uni-card img {
    width: 180px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: none;
    box-shadow: none;
    transition: all 0.4s ease;
    mix-blend-mode: multiply;
    background: transparent !important;
    display: block
}

.uni-card img.mit-logo {
    width: 100px
}

.uni-card span {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.9rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease
}

.uni-card:hover {
    transform: translateY(-5px)
}

.uni-card:hover img {
    transform: scale(1.08)
}

.uni-card:hover span {
    color: var(--brand-purple)
}

@media (max-width:768px) {
    .uni-grid {
        gap: 3rem 1.5rem
    }

    .uni-card {
        width: 45%
    }

    .uni-card img {
        width: 140px;
        height: 100px
    }

    .uni-card span {
        font-size: 0.8rem
    }
}

.btn-expo-style {
    background: var(--gradient);
    color: white !important;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 2rem;
    text-decoration: none;
    font-family: var(--heading-font);
}

.btn-expo-style:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-lg {
    padding: 1.5rem 3.5rem;
    font-size: 1.25rem;
}

/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    .whatsapp-fab {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.8rem !important;
        right: 15px !important;
    }

    #home-partners .logo-item {
        padding: 0 15px !important;
    }

    .hero-ad h1,
    .elite-hero h1 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem !important;
    }

    .whatsapp-fab {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.6rem !important;
        right: 10px !important;
        bottom: 75px !important;
    }

    .hero-ad h1,
    .elite-hero h1 {
        font-size: 1.8rem !important;
    }
}

/* ==========================================================================
   EDUCATION ABROAD EXPO PAGE
   ========================================================================== */

.abroad-hero {
    position: relative;
    background: radial-gradient(circle at center, rgba(16, 28, 53, 0.7) 0%, rgba(16, 28, 53, 0.95) 100%), 
                url('https://images.pexels.com/photos/256490/pexels-photo-256490.jpeg?auto=compress&cs=tinysrgb&w=1200');
    background-size: cover;
    background-position: center;
    padding: 160px 0 120px;
    color: white;
    text-align: center;
    overflow: hidden;
}

.abroad-hero::before {
    content: 'ABROAD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 300px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    letter-spacing: -0.02em;
}

.hero-layout {
    position: relative;
    z-index: 2;
}

.hero-flag-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-pink);
}

.flag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-pink);
    box-shadow: 0 0 15px var(--brand-pink);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(246, 51, 151, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(246, 51, 151, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(246, 51, 151, 0); }
}

.hero-date-pill {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    line-height: 1.05;
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-title em {
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding: 0 5px;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 850px;
    margin: 0 auto 48px;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 50px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-num span {
    color: var(--brand-pink);
    font-size: 1.6rem;
    margin-left: 2px;
}

.hero-stat-lbl {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
}

.hero-mascot.abroad-mascot {
    position: absolute;
    width: 200px;
    bottom: -20px;
    right: 5%;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.abroad-hero:hover .hero-mascot.abroad-mascot {
    transform: translateY(-10px) rotate(2deg);
}

/* Destinations Grid */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.dest-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.dest-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(113, 31, 184, 0.08);
    border-color: var(--brand-purple);
}

.dest-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.4s ease;
}

.dest-card:hover .dest-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Expect Cards */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.expect-card {
    background: #fff;
    border-radius: 28px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.expect-card:hover {
    border-color: rgba(246, 51, 151, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(246, 51, 151, 0.08);
}

.expect-icon {
    width: 65px;
    height: 65px;
    background: var(--surface-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--brand-pink);
    margin-bottom: 28px;
    transition: all 0.4s ease;
}

.expect-card:hover .expect-icon {
    background: var(--brand-pink);
    color: #fff;
    transform: rotate(10deg);
}

/* Counselling Strip */
.counselling-strip {
    background: var(--gradient);
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.counselling-strip::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.1;
    pointer-events: none;
}

/* School Group Section */
.school-promo-card {
    background: #fff;
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    position: relative;
    border: 1px solid var(--border-color);
}

.school-stat-val {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--brand-pink);
    line-height: 1;
    letter-spacing: -2px;
}

/* FAQ Refinement */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-purple);
    box-shadow: 0 10px 25px rgba(113, 31, 184, 0.05);
}

.faq-q {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--brand-purple);
    display: flex;
    gap: 15px;
}

.faq-q::before {
    content: 'Q.';
    color: var(--brand-pink);
}

@media (max-width: 991px) {
    .abroad-hero { padding: 120px 0 80px; }
    .hero-stats-row { gap: 30px; }
    .hero-stat-num { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem !important; }
    .hero-description { font-size: 1.1rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .hero-mascot.abroad-mascot { width: 150px; right: 2%; bottom: -10px; }
}

/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    .whatsapp-fab {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.8rem !important;
        right: 15px !important;
    }

    #home-partners .logo-item {
        padding: 0 15px !important;
    }

    .hero-ad h1,
    .elite-hero h1 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.6rem !important;
    }

    .whatsapp-fab {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.6rem !important;
        right: 10px !important;
        bottom: 75px !important;
    }

    .hero-ad h1,
    .elite-hero h1 {
        font-size: 1.8rem !important;
    }
}