@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    * {
        box-sizing: border-box;
    }

    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }
}
/* video player*/

/* ===== INTRO VIDEO OVERLAY ===== */
#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 2000;
    overflow: hidden;
}

#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: fadeIn 1.2s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
    pointer-events: none;
}

.video-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
    z-index: 3;
}

.video-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: system-ui, -apple-system, sans-serif;
}

#closeBtn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

#closeBtn:hover {
    background: rgba(220, 38, 38, 0.85);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
}

.video-controls {
    position: absolute;
    bottom: 50px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
    box-sizing: border-box;
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    padding: 0;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.08);
}

#muteIcon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.video-info {
    color: #fff;
    text-align: left;
    font-family: system-ui, -apple-system, sans-serif;
}

.video-info h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 6px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.video-info p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== WELCOME SECTION ===== */
#welcome-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#welcomeVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 10, 30, 0.55) 0%, rgba(0, 10, 30, 0.35) 50%, rgba(0, 10, 30, 0.75) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

#badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: textReveal 0.8s ease forwards 0.2s;
}

#badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px #4ade80;
}

#welcome-text {
    color: #fff;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.25;
    max-width: 950px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1s ease forwards 0.45s;
}

#welcome-text .highlight {
    background: linear-gradient(90deg, #60a5fa, #38bdf8, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#welcome-sub {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1s ease forwards 0.7s;
}

#visitBtn {
    margin-top: 44px;
    padding: 17px 46px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #0a0a0a;
    background: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
    opacity: 0;
    transform: translateY(30px);
    animation: textReveal 1s ease forwards 0.95s;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

#visitBtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(255, 255, 255, 0.4);
    background: #f0f0f0;
}

#visitBtn svg {
    transition: transform 0.3s ease;
}

#visitBtn:hover svg {
    transform: translateX(4px);
}

@keyframes textReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating decorative particles */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-40px) translateX(15px);
        opacity: 0.8;
    }
}

/* ===== PAGE TRANSITION (circular reveal + fade) ===== */
#page-transition {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #1e3a8a, #0a0a0a);
    transform: translate(-50%, -50%) scale(0);
    z-index: 3000;
    pointer-events: none;
}

#page-transition.active {
    animation: circleGrow 0.9s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes circleGrow {
    to {
        transform: translate(-50%, -50%) scale(300);
    }
}

#welcome-section.leaving {
    animation: pageZoomOut 0.9s ease forwards;
}

@keyframes pageZoomOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    #bgVideo {
        object-fit: contain;
    }

    #closeBtn {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    #welcome-text {
        font-size: 2.4rem;
    }

    #welcome-sub {
        font-size: 1rem;
    }

    #visitBtn {
        padding: 15px 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #closeBtn {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    #badge {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    #welcome-text {
        font-size: 1.8rem;
    }

    #welcome-sub {
        font-size: 0.9rem;
    }

    #visitBtn {
        padding: 13px 30px;
        font-size: 0.9rem;
        margin-top: 30px;
    }
}

@media (max-height: 480px) and (orientation: landscape) {
    #bgVideo {
        object-fit: contain;
    }

    #closeBtn {
        top: 8px;
        right: 8px;
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    #welcome-text {
        font-size: 1.8rem;
    }
}

@supports (padding: max(0px)) {
    #closeBtn {
        top: max(16px, env(safe-area-inset-top));
        right: max(16px, env(safe-area-inset-right));
    }
}

/*
  Navebar 
*/

:root {
    --nav-text: #4b5563;
    --nav-text-h: #111827;
    --nav-bg: #ffffff;
    --nav-border: #e5e7eb;
    --nav-accent: #6366f1;
    /* Premium Indigo */
    --nav-accent-bg: rgba(99, 102, 241, 0.1);
    --nav-accent-border: rgba(99, 102, 241, 0.4);
    --nav-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.025);
    --nav-sans: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --nav-text: #9ca3af;
        --nav-text-h: #f3f4f6;
        --nav-bg: #0f172a;
        /* Slate 900 */
        --nav-border: #1e293b;
        --nav-accent: #818cf8;
        --nav-accent-bg: rgba(129, 140, 248, 0.15);
        --nav-accent-border: rgba(129, 140, 248, 0.4);
        --nav-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    }
}

/* ==========================================================================
   Navbar Component Styles
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    border-bottom: 1px solid var(--nav-border);
    font-family: var(--nav-sans);

    /* Glassmorphism background */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    position: sticky;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
    width: 100%;
    transition: background-color 0.3s ease, border-color 0.3s ease, height 0.3s ease;
}

/* Dark mode glassmorphism override */
@media (prefers-color-scheme: dark) {
    .navbar {
        background: rgba(15, 23, 42, 0.85);
        /* Slate 900 Glass */
    }
}

.navbar-logo {
    display: flex;
    align-items: center;

}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--nav-text-h);
    transition: transform 0.2s ease;
}

.logo-icon {
    width: 50px;
    height: 50px;
    color: var(--nav-accent);
}







.navbar-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.menu-item {
    font-size: 15px;
    font-weight: 600;
    color: var(--nav-text);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.2s ease;
    position: relative;
    padding: 6px 0;
}

/* Sliding underline indicator */
.menu-item:not(.login-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--nav-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:not(.login-btn):hover::after,
.menu-item.active:not(.login-btn)::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-item:hover {
    color: var(--nav-text-h);
}

.menu-item.active {
    color: var(--nav-accent);
}

/* Unified Auth Button Group - Looks like a single segmented control button */
.navbar-auth-group {
    display: inline-flex;
    align-items: center;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
    transition: all 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .navbar-auth-group {
        background: rgba(129, 140, 248, 0.1);
        border-color: rgba(129, 140, 248, 0.25);
    }
}

.auth-btn {
    border: none;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--nav-sans);
    transition: all 0.25s ease;
}

.auth-btn.login-btn {
    background: linear-gradient(135deg, var(--nav-accent) 0%, #4f46e5 100%);
    color: #ffffff;
}

.auth-btn.login-btn:hover {
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.25);
}

.auth-btn.signup-btn {
    background: transparent;
    color: var(--nav-accent);
}

@media (prefers-color-scheme: dark) {
    .auth-btn.signup-btn {
        color: #a5b4fc;
    }
}

.auth-btn.signup-btn:hover {
    background: rgba(99, 102, 241, 0.12);
    color: var(--nav-accent);
}

/* Hamburger mobile button styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--nav-text-h);
    border-radius: 4px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s ease;
}
.menu-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.menu-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 24px;
        height: 72px;
    }
    .menu-toggle {
        display: flex;
    }
    .navbar-menu {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        /* Mobile drawer style matching glassmorphism */
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--nav-border);
        border-bottom: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 28px 28px;
        gap: 20px;
        box-sizing: border-box;
        overflow-y: auto;
        /* Slide-in animation from the right */
        opacity: 1;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
        z-index: 999;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    }
    .navbar-menu.active {
        visibility: visible;
        transform: translateX(0);
    }
    .navbar-auth-group {
        width: 100%;
        display: flex;
        box-sizing: border-box;
    }
    .auth-btn {
        flex: 1;
        text-align: center;
        padding: 12px 0;
    }
}

@media (max-width: 1024px) and (prefers-color-scheme: dark) {
    .navbar-menu {
        background: rgba(15, 23, 42, 0.98);
    }
}
  /* Hero Section */ 

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(85vh - 80px);
    padding: 100px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
    position: relative;
    transition: min-height 0.3s ease;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* Content Layout */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 850px;
    animation: heroFadeIn 0.8s ease forwards;
}

/* Top Pill Badge */
.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(129, 140, 248, 0.4);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #c7d2fe;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1.5px;
}

/* Bold Title */
.hero-title {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}



/* Subtitle */
.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #cbd5e1;
    /* slate 300 */
    margin-bottom: 36px;
    max-width: 760px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Conference metadata details (Date, Place) */
.hero-details {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    background: rgba(15, 23, 42, 0.4);
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.detail-icon {
    width: 18px;
    height: 18px;
    color: var(--nav-accent, #00d2be);
}

/* Actions block */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Custom Light-border Button for dark background */
.btn-secondary-light {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: transparent;
}

.btn-secondary-light:hover {
    transform: translateY(-2px);
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 5px;
    height: 10px;
    background: #ffffff;
    border-radius: 4px;
    animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(14px);
        opacity: 0.3;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 24px;
        min-height: auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-details {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 12px;
    }

    .btn {
        width: 100%;
    }
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00d2be;
    background: rgba(0, 210, 190, .1);
    border: 1px solid rgba(0, 210, 190, .25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    cursor: pointer;
}

/*
  speakers Section
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

.speakers-section {
    padding: 100px 0 110px;
    background: linear-gradient(160deg, #03111f 0%, #061e38 40%, #04213d 100%);
    position: relative;
    overflow: hidden;
}

.speakers-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 232, .12) 0%, transparent 70%);
    pointer-events: none;
}

.speakers-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 210, 190, .09) 0%, transparent 70%);
    pointer-events: none;
}

.speakers-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.speakers-header {
    text-align: center;
    margin-bottom: 72px;
}

.speakers-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00d2be;
    background: rgba(0, 210, 190, .1);
    border: 1px solid rgba(0, 210, 190, .25);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.speakers-eyebrow-dot {
    width: 6px;
    height: 6px;
    background: #00d2be;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .4;
        transform: scale(.7);
    }
}

.speakers-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 16px;
}

.speakers-title span {
    background: linear-gradient(90deg, #00a8e8, #00d2be);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.speakers-desc {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, .55);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 28px;
}

.speaker-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    transform: translateY(30px);
    transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease,
        border-color .35s ease, background .35s ease;
}

.speaker-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0, 168, 232, .07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
    border-radius: inherit;
}

.speaker-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 168, 232, .22), 0 8px 24px rgba(0, 0, 0, .45);
    border-color: rgba(0, 168, 232, .4);
    background: rgba(255, 255, 255, .07);
}

.speaker-card:hover::before {
    opacity: 1;
}

.speaker-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s ease, transform .55s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.speaker-avatar-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 20px;
}

.speaker-avatar-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #00a8e8, #00d2be, #0059a0, #00a8e8);
    animation: spin-ring 6s linear infinite;
    opacity: 0;
    transition: opacity .35s ease;
}

.speaker-card:hover .speaker-avatar-ring {
    opacity: 1;
}

@keyframes spin-ring {
    to {
        transform: rotate(360deg);
    }
}

.speaker-avatar-inner {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    overflow: hidden;
    background: #0a1f38;
    z-index: 1;
}

.speaker-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.speaker-card:hover .speaker-avatar {
    transform: scale(1.08);
}

.speaker-name {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.3;
}

.speaker-role {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #00a8e8;
    margin: 0 0 4px;
}

.speaker-org {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, .42);
    margin: 0 0 10px;
}

.speaker-flag {
    display: block;
    width: 40px;
    height: 26px;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 auto 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.speaker-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: #00d2be;
    background: rgba(0, 210, 190, .1);
    border: 1px solid rgba(0, 210, 190, .22);
    padding: 4px 12px;
    border-radius: 30px;
    transition: background .25s ease, border-color .25s ease;
}

.speaker-card:hover .speaker-tag {
    background: rgba(0, 210, 190, .18);
    border-color: rgba(0, 210, 190, .45);
}

.speaker-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #00a8e8, #00d2be);
    padding: 3px 10px;
    border-radius: 20px;
}

/* ── View All Speakers CTA ───────────────────────────────── */
.speakers-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

.speakers-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #00a8e8 0%, #00d2be 100%);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(0, 168, 232, 0.35);
    transition: transform 0.25s ease, box-shadow 0.3s ease, gap 0.25s ease;
}

.speakers-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(0, 168, 232, 0.5);
    gap: 14px;
}

.speakers-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(0, 168, 232, 0.3);
}

.speakers-cta-btn svg {
    transition: transform 0.25s ease;
}

.speakers-cta-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width:768px) {
    .speakers-section {
        padding: 70px 0 80px;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .speaker-avatar-wrap {
        width: 90px;
        height: 90px;
    }

    .speakers-cta-wrap {
        margin-top: 40px;
    }
}

@media (max-width:480px) {
    .speakers-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .speaker-card {
        padding: 22px 16px 20px;
    }

    .speakers-cta-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/*
  Footer Section
*/

/* ==========================================================================
   Footer Styles - Recreated from Hook Agency Layout
   ========================================================================== */

.footer-section {
    width: 100%;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
}

/* ── Top Promo Banner (Image background with blue overlay) ── */
.footer-promo-banner {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?w=1200&q=80');
    background-size: cover;
    background-position: center;
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 51, 95, 0.85);
    /* Rich blue matching the image overlay */
    z-index: 1;
}

.footer-promo-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.footer-promo-title {
    color: #ffffff;
    font-size: clamp(22px, 3.5vw, 34px);
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.5px;
}

.footer-promo-btn {
    display: inline-block;
    background-color: #b89c56;
    /* Gold/Bronze shade matching Hook Agency buttons */
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 4px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.footer-promo-btn:hover {
    background-color: #a38744;
    transform: translateY(-2px);
}

.footer-promo-btn:active {
    transform: translateY(0);
}

/* ── Main Footer Area (Dark Blue / Indigo) ───────────────── */
.footer-main-bg {
    background-color: #0b1a30;
    /* Solid dark blue matching the image */
    padding: 70px 24px 40px;
}

.footer-main-bg .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-cols-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 50px;
}

/* Column 1: Logo & Address */
.footer-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    /* Vertical line */
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    color: #b89c56;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-address-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-address-info p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.footer-address-info .footer-phone-number {
    margin-top: 14px;
}

.footer-address-info .footer-phone-number a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.footer-address-info .footer-phone-number a:hover {
    color: #b89c56;
}

.footer-address-info .footer-map-link {
    margin-top: 14px;
}

.footer-address-info .footer-map-link a {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: all 0.25s ease;
}

.footer-address-info .footer-map-link a:hover {
    color: #b89c56;
    border-color: #b89c56;
}

/* Column headings */
.footer-col-heading {
    font-size: 13.5px;
    font-weight: 700;
    color: #b89c56;
    /* Gold color headers */
    letter-spacing: 1px;
    margin: 0 0 20px;
    text-transform: uppercase;
}

/* Column 2: Sitemap */
.footer-col-middle {
    display: flex;
    flex-direction: column;
}

.footer-sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-sitemap-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-sitemap-links a:hover {
    color: #ffffff;
    padding-left: 3px;
}

/* Column 3: Newsletter */
.footer-col-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-newsletter-subtext {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Signup Inline Form */
.footer-signup-form {
    display: flex;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
}

.footer-signup-input {
    background-color: #061224;
    /* Very dark background input matching image */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    color: #ffffff;
    padding: 14px 18px;
    font-size: 14px;
    outline: none;
    flex: 1;
    font-family: inherit;
}

.footer-signup-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-signup-btn {
    background-color: #b89c56;
    /* Gold button */
    color: #ffffff;
    border: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0 24px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.footer-signup-btn:hover {
    background-color: #a38744;
}

/* ── Bottom Copyright Row ────────────────────────────────── */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-credits {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.footer-credits a:hover {
    color: #b89c56;
}

.badge-dmca {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.02);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 992px) {
    .footer-cols-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col-left {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .footer-promo-banner {
        padding: 60px 16px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Login model */
/* ==========================================================================
   Login Modal Styles (Ultra-Premium Redesign)
   ========================================================================== */

.login-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 10, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.login-modal-card {
    background: linear-gradient(145deg, #091a2f 0%, #040d1a 100%);
    border: 1px solid rgba(0, 168, 232, 0.2);
    width: 100%;
    max-width: 440px;
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 168, 232, 0.1);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.login-modal-overlay.open .login-modal-card {
    transform: translateY(0) scale(1);
}

.login-modal-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 210, 190, 0.15);
    border-color: rgba(0, 210, 190, 0.35);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
    padding: 0;
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-close:hover {
    background: rgba(255, 50, 50, 0.15);
    border-color: rgba(255, 50, 50, 0.3);
    color: #ff5252;
    transform: rotate(90deg);
}

/* Modal Headers */
.login-header {
    text-align: center;
    margin-bottom: 36px;
}

.login-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 40%, #00a8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Inputs */
.login-modal-card .form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.25s ease;
}

.login-modal-card .form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.login-modal-card .form-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #00d2be;
    box-shadow: 0 0 12px rgba(0, 210, 190, 0.25);
}

/* Links */
.forgot-link,
.signup-link,
.signin-link {
    font-size: 13.5px;
    color: #00a8e8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.forgot-link:hover,
.signup-link:hover,
.signin-link:hover {
    color: #00d2be;
    text-shadow: 0 0 8px rgba(0, 210, 190, 0.4);
}

/* Action Button */
.login-modal-card .btn.btn-primary.btn-block {
    background: linear-gradient(135deg, #00a8e8 0%, #00d2be 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 168, 232, 0.35);
    transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    margin-top: 10px;
}

.login-modal-card .btn.btn-primary.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.5);
    background: linear-gradient(135deg, #00b4ff 0%, #00e6d0 100%);
}

.login-modal-card .btn.btn-primary.btn-block:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(0, 168, 232, 0.25);
}

/* Footer Section */
.login-footer {
    text-align: center;
    margin-top: 36px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 6px;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* Responsive modal scaling */
@media (max-width: 480px) {
    .login-modal-card {
        border-radius: 0;
        height: 100%;
        max-height: 100%;
        padding: 80px 24px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: none;
    }

    .modal-close {
        top: 40px;
        right: 24px;
    }
}

/*
 *signup model
 */
/* ==========================================================================
   Signup Modal Styles (Ultra-Premium Redesign)
   ========================================================================== */

.signup-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 10, 20, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.signup-modal-overlay.open {
    display: flex;
    opacity: 1;
}

.signup-modal-card {
    background: linear-gradient(145deg, #091a2f 0%, #040d1a 100%);
    border: 1px solid rgba(0, 168, 232, 0.2);
    width: 100%;
    max-width: 500px;
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 168, 232, 0.1);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.signup-modal-overlay.open .signup-modal-card {
    transform: translateY(0) scale(1);
}

.signup-modal-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 210, 190, 0.15);
    border-color: rgba(0, 210, 190, 0.35);
}

/* Close Button */
.signup-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
    padding: 0;
}

.signup-modal-close svg {
    width: 16px;
    height: 16px;
}

.signup-modal-close:hover {
    background: rgba(255, 50, 50, 0.15);
    border-color: rgba(255, 50, 50, 0.3);
    color: #ff5252;
    transform: rotate(90deg);
}

/* Header */
.signup-header {
    text-align: center;
    margin-bottom: 32px;
}

.signup-modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 40%, #00a8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-modal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signup-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Inputs */
.signup-modal-card .form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    padding: 13px 16px;
    font-size: 14.5px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.25s ease;
    width: 100%;
}

.signup-modal-card .form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.signup-modal-card .form-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: #00d2be;
    box-shadow: 0 0 12px rgba(0, 210, 190, 0.25);
}

/* Action Button */
.signup-modal-card .btn.btn-primary.btn-block {
    background: linear-gradient(135deg, #00a8e8 0%, #00d2be 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(0, 168, 232, 0.35);
    transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
    margin-top: 10px;
}

.signup-modal-card .btn.btn-primary.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 232, 0.5);
    background: linear-gradient(135deg, #00b4ff 0%, #00e6d0 100%);
}

.signup-modal-card .btn.btn-primary.btn-block:active {
    transform: translateY(0);
    box-shadow: 0 3px 12px rgba(0, 168, 232, 0.25);
}

/* Footer Section */
.signup-footer {
    text-align: center;
    margin-top: 32px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 6px;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 480px) {
    .signup-modal-card {
        border-radius: 0;
        height: 100%;
        max-height: 100%;
        padding: 80px 24px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border: none;
    }

    .signup-modal-close {
        top: 40px;
        right: 24px;
    }

    .signup-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* register model /*

/* ===========================
   Register Modal
=========================== */

* {
    box-sizing: border-box;
}

.register-modal-overlay {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .5);
    padding: 1rem;
    z-index: 9999;
}

.register-modal-overlay.open {
    display: flex;
}

.register-modal-card {
    position: relative;
    width: 100%;
    max-width: 28rem;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: .75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1),
        0 8px 10px -6px rgba(0, 0, 0, .1);
    padding: 1.5rem;
}

/* ===========================
   Close Button
=========================== */

.register-modal-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    transition: .15s ease-in-out;
    line-height: 1;
    padding: 6px;
}

.register-modal-close:hover {
    color: #374151;
}

.register-modal-close svg {
    width: 22px;
    height: 22px;
}

/* ===========================
   Header
=========================== */

.register-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.register-icon {
    font-size: 2.25rem;
    margin-bottom: .75rem;
}

.register-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: .25rem;
}

.register-modal-subtitle {
    font-size: .875rem;
    color: #6b7280;
}

/* ===========================
   Form
=========================== */

.register-form {
    display: flex;
    flex-direction: column;
}

.register-form>*+* {
    margin-top: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    display: block;
    font-size: .875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: .25rem;
}

.required {
    color: #ef4444;
}

/* ===========================
   Inputs
=========================== */

.form-input {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    padding: .625rem .75rem;
    font-size: .875rem;
    font-family: inherit;
    color: #1f2937;
    background: #fff;
    outline: none;
    transition: .15s ease-in-out;
}

.form-input:focus {
    box-shadow: 0 0 0 2px #3b82f6;
    border-color: transparent;
}

.form-input::placeholder {
    color: #9ca3af;
}


/* ===========================
   Select Fields
=========================== */

.form-input[type="file"] {
    padding: .5rem;
}

select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-color: #ffffff;
}

/* ===========================
   File Upload
=========================== */

input[type="file"] {
    font-family: inherit;
    font-size: .875rem;
    color: #1f2937;
}

input[type="file"]::file-selector-button {
    margin-right: .75rem;
    padding: .375rem .75rem;
    border: none;
    border-radius: .375rem;
    background: #eff6ff;
    color: #1d4ed8;
    cursor: pointer;
    transition: background .15s ease;
}

input[type="file"]::file-selector-button:hover {
    background: #dbeafe;
}

/* ===========================
   Button
=========================== */

.register-btn {
    width: 100%;
    padding: .75rem 1.5rem;
    border: none;
    border-radius: .5rem;
    background: #2563eb;
    color: #ffffff;
    font-size: .95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .15s ease-in-out;
}

.register-btn:hover {
    background: #1d4ed8;
}

.register-btn:active {
    transform: scale(.98);
}

/* ===========================
   Messages
=========================== */

.success-message {
    color: #16a34a;
    font-size: .875rem;
    margin-top: .5rem;
}

.error-message {
    color: #ef4444;
    font-size: .875rem;
    margin-top: .5rem;
}

/* ===========================
   Helpers
=========================== */

.text-center {
    text-align: center;
}

.text-sm {
    font-size: .875rem;
}

.text-xs {
    font-size: .75rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.mt-1 {
    margin-top: .25rem;
}

.mt-2 {
    margin-top: .5rem;
}

.mt-3 {
    margin-top: .75rem;
}

.mb-1 {
    margin-bottom: .25rem;
}

.mb-3 {
    margin-bottom: .75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

/* ===========================
   Scrollbar
=========================== */

.register-modal-card::-webkit-scrollbar {
    width: 8px;
}

.register-modal-card::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 8px;
}

.register-modal-card::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 8px;
}

.register-modal-card::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ===========================
   Register Form — New Elements
=========================== */

.req-star {
    color: #ef4444;
    margin-left: 2px;
}

/* Bank Details Info Box */
.bank-details-box {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08) 0%, rgba(0, 210, 190, 0.06) 100%);
    border: 1px solid rgba(0, 168, 232, 0.35);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
}

.bank-details-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #00a8e8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 168, 232, 0.2);
}

.bank-details-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bank-detail-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bank-detail-label {
    font-size: 11px;
    font-weight: 600;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-detail-value {
    font-size: 13.5px;
    color: black;
    font-weight: 500;
    line-height: 1.4;
}

.iban-text {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: black;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 2px;
}

.bank-details-note {
    font-size: 11.5px;
    color: black;
    margin: 12px 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 1.5;
}

/* File Upload Areas */
.file-upload-area {
    border: 2px dashed rgba(0, 168, 232, 0.35);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    background: rgba(0, 168, 232, 0.04);
    margin-top: 6px;
}

.file-upload-area:hover {
    border-color: rgba(0, 168, 232, 0.7);
    background: rgba(0, 168, 232, 0.09);
}

.file-upload-area svg {
    color: rgba(0, 168, 232, 0.65);
    margin-bottom: 8px;
}

.file-upload-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 4px;
}

.file-upload-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0 0 6px;
}

.file-upload-name {
    font-size: 11.5px;
    color: #00d2be;
    margin: 0;
    font-style: italic;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

input[type="file"] {
    display: none;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 768px) {
    .register-modal-card {
        max-width: 95%;
        padding: 1.25rem;
    }

    .register-modal-title {
        font-size: 1.1rem;
    }

    .register-modal-subtitle {
        font-size: .8rem;
    }

    .register-btn {
        font-size: .9rem;
    }
}

@media (max-width: 480px) {
    .register-modal-overlay {
        padding: .75rem;
    }

    .register-modal-card {
        padding: 1rem;
        border-radius: .5rem;
    }

    .register-icon {
        font-size: 2rem;
    }

    .register-modal-title {
        font-size: 1rem;
    }

    .form-input {
        padding: .6rem .7rem;
    }

    .register-btn {
        padding: .7rem;
    }
}

/* About PCOM */

/* =====================================
   Modern PCOM About Section
===================================== */

.modern-about-pcom {

    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        radial-gradient(circle at top left,
            rgba(0, 102, 255, 0.12),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(0, 198, 255, 0.15),
            transparent 35%),
        #ffffff;

}


.modern-about-pcom::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -250px;
    right: -200px;

    background:
        linear-gradient(135deg,
            #0066ff20,
            #00c6ff20);

    border-radius: 50%;

    filter: blur(30px);

}


/* Container */

.about-container {

    width: 90%;
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

    position: relative;

    z-index: 2;

}



/* ======================
   CONTENT
====================== */


.about-label {

    display: inline-flex;

    padding: 8px 18px;

    border-radius: 50px;

    background:
        rgba(0, 102, 255, 0.08);

    color: #0066ff;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

}



.about-content h1 {

    margin-top: 25px;

    font-size: 58px;

    line-height: 1.08;

    font-weight: 900;

    letter-spacing: -2px;

    color: #101828;

}



.about-content h1 span {

    background:

        linear-gradient(90deg,
            #0066ff,
            #00c6ff);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}



.about-content p {

    margin-top: 25px;

    max-width: 560px;

    color: #667085;

    font-size: 18px;

    line-height: 1.8;

}



/* Stats */


.about-stats {

    display: flex;

    gap: 45px;

    margin-top: 45px;

}



.stat-item h2 {

    margin: 0;

    font-size: 42px;

    font-weight: 900;

    color: #101828;

}



.stat-item span {

    color: #667085;

    font-size: 14px;

}



/* Button */


.about-button {

    margin-top: 45px;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 16px 35px;

    border-radius: 50px;

    background:

        linear-gradient(135deg,
            #0066ff,
            #00c6ff);

    color: white;

    text-decoration: none;

    font-weight: 700;

    box-shadow:

        0 20px 40px rgba(0, 102, 255, .25);

    transition: .4s;

}



.about-button:hover {

    transform: translateY(-6px);

    box-shadow:

        0 30px 60px rgba(0, 102, 255, .35);

    color: white;

}



/* ======================
   IMAGE AREA
====================== */


.about-visual {

    position: relative;

}



.main-image {

    position: relative;

    padding: 15px;

    border-radius: 45px;

    background:

        linear-gradient(135deg,
            rgba(255, 255, 255, .8),
            rgba(255, 255, 255, .3));

    backdrop-filter: blur(20px);

    box-shadow:

        0 40px 100px rgba(0, 0, 0, .15);

}



.main-image img {

    width: 100%;

    height: 580px;

    object-fit: cover;

    border-radius: 35px;

    display: block;

}



/* Glass Cards */


.glass-card {

    position: absolute;

    background:

        rgba(255, 255, 255, .75);

    backdrop-filter: blur(20px);

    border:

        1px solid rgba(255, 255, 255, .5);

    box-shadow:

        0 25px 60px rgba(0, 0, 0, .12);

    border-radius: 25px;

}



.card-top {

    top: 50px;

    left: -70px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px 25px;

}



.icon-box {

    width: 55px;

    height: 55px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 18px;

    background:

        linear-gradient(135deg,
            #0066ff,
            #00c6ff);

    font-size: 25px;

}



.card-top h4 {

    margin: 0;

    font-size: 18px;

}



.card-top p {

    margin: 5px 0 0;

    font-size: 13px;

    color: #667085;

}



.card-bottom {

    right: -40px;

    bottom: 50px;

    padding: 25px 35px;

}



.card-bottom h3 {

    margin: 0;

    font-size: 28px;

}



.card-bottom p {

    margin: 5px 0 0;

    color: #667085;

}



/* Decorative Circle */


.circle-shape {

    position: absolute;

    width: 120px;

    height: 120px;

    right: -40px;

    top: -40px;

    border-radius: 50%;

    background:

        linear-gradient(135deg,
            #0066ff,
            #00c6ff);

    opacity: .15;

    animation: moveCircle 6s infinite ease-in-out;

}


@keyframes moveCircle {

    50% {

        transform: translateY(25px);

    }

}



/* ======================
   RESPONSIVE
====================== */


@media(max-width:1050px) {


    .about-container {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-content h1 {

        font-size: 45px;

    }


    .about-visual {

        max-width: 600px;

        margin: auto;

    }


}



@media(max-width:600px) {


    .about-content h1 {

        font-size: 35px;

    }


    .about-stats {

        gap: 20px;

        flex-wrap: wrap;

    }


    .main-image img {

        height: 400px;

    }


    .card-top {

        left: -10px;

    }


    .card-bottom {

        right: -10px;

    }

}

/* Why Attend PCOM */
/* ==========================================
   WHY ATTEND PCOM - PREMIUM CONFERENCE STYLE
========================================== */


.pcom-attend {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, #06152f, #0b2347 45%, #08101f);
    color: #ffffff;
    font-family: "Inter", sans-serif;
}


/* Container */

.pcom-attend .container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;
}


/* =====================================
   BACKGROUND EFFECTS
===================================== */


.pcom-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .5;
}


.gradient-one {
    width: 500px;
    height: 500px;
    background: #00d4ff;
    top: -200px;
    left: -150px;
}


.gradient-two {
    width: 450px;
    height: 450px;
    background: #7b2cff;
    bottom: -150px;
    right: -120px;
}


.pcom-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .05) 1px,
            transparent 1px);

    background-size: 50px 50px;
    opacity: .25;
}




/* =====================================
   HEADER
===================================== */


.pcom-header {

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    margin-bottom: 70px;

}


.pcom-label {

    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background:
        rgba(255, 255, 255, .08);

    border: 1px solid rgba(255, 255, 255, .15);

    color: #00d4ff;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;

}



.header-left h2 {

    margin-top: 25px;

    font-size: 65px;
    line-height: 1.1;
    font-weight: 800;

}


.header-left h2 span {

    background:
        linear-gradient(90deg, #00d4ff, #8b5cff);

    -webkit-background-clip: text;
    color: transparent;

}



.header-right {

    max-width: 450px;

}


.header-right p {

    color: #c5d0e5;
    line-height: 1.8;
    font-size: 17px;

}




/* =====================================
   MAIN SECTION
===================================== */


.pcom-main {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: center;

}



/* =====================================
   IMAGE AREA
===================================== */


.visual-wrapper {

    position: relative;

}


.visual-wrapper video {

    width: 700px;
    height: 520px;

    object-fit: cover;

    border-radius: 35px;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .45);

}



.visual-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 35px;

    background:
        linear-gradient(180deg,
            transparent,
            rgba(0, 0, 0, .5));

}



/* Floating Stats */


.floating-stat {

    position: absolute;

    z-index: 3;

    background:
        rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255, 255, 255, .25);

    padding: 18px 25px;

    border-radius: 20px;

    text-align: center;

    animation: float 4s infinite ease-in-out;

}


.floating-stat strong {

    display: block;

    font-size: 32px;

    color: #fff;

}


.floating-stat span {

    font-size: 14px;
    color: #d8e5ff;

}



.stat-one {

    top: 30px;
    left: -35px;

}


.stat-two {

    right: -35px;
    top: 50%;

}


.stat-three {

    bottom: 30px;
    left: 40px;

}



@keyframes float {

    50% {

        transform: translateY(-15px);

    }

}





/* Play Button */


.conference-play {

    position: absolute;

    z-index: 5;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 90px;
    height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg, #00d4ff, #7b2cff);

    font-size: 30px;

    box-shadow:
        0 0 40px rgba(0, 212, 255, .7);

}




/* =====================================
   FEATURE ITEMS
===================================== */


.pcom-features {

    display: flex;

    flex-direction: column;

    gap: 35px;

}



.feature-item {

    display: grid;

    grid-template-columns:
        55px 70px 1fr;

    gap: 20px;

    align-items: center;

    padding: 25px;

    border-radius: 25px;

    background:
        rgba(255, 255, 255, .06);

    backdrop-filter: blur(15px);

    border:
        1px solid rgba(255, 255, 255, .1);

    transition: .4s;

}



.feature-item:hover {

    transform: translateX(12px);

    background:
        rgba(255, 255, 255, .12);

}




.feature-number {

    font-size: 32px;

    font-weight: 800;

    color:
        rgba(255, 255, 255, .25);

}




.feature-icon {

    width: 60px;
    height: 60px;

    display: flex;

    justify-content: center;
    align-items: center;

    border-radius: 18px;

    background:
        linear-gradient(135deg, #00d4ff, #7b2cff);

    font-size: 25px;

}




.feature-text h3 {

    margin: 0 0 10px;

    font-size: 22px;

}



.feature-text p {

    margin: 0;

    color: #cbd5e8;

    line-height: 1.7;

}




/* =====================================
   BOTTOM CARDS
===================================== */


.pcom-bottom {

    margin-top: 90px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;

}




.bottom-box {

    padding: 40px 30px;

    text-align: center;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, .07);

    border:
        1px solid rgba(255, 255, 255, .12);

    transition: .4s;

}



.bottom-box:hover {

    transform:
        translateY(-12px);

}



.bottom-box i {

    font-size: 45px;

    margin-bottom: 20px;

    color: #00d4ff;

}



.bottom-box h3 {

    font-size: 23px;

}



.bottom-box p {

    color: #c5d0e5;

    line-height: 1.7;

}





/* =====================================
   CTA AREA
===================================== */


.pcom-cta {

    margin-top: 80px;

    padding: 45px;

    border-radius: 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    background:
        linear-gradient(135deg,
            rgba(0, 212, 255, .15),
            rgba(123, 44, 255, .2));

    border:
        1px solid rgba(255, 255, 255, .15);

}



.pcom-cta h3 {

    font-size: 32px;

    margin-bottom: 10px;

}



.pcom-cta p {

    color: #d2ddf2;

}



.pcom-button {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 35px;

    border-radius: 50px;

    text-decoration: none;

    color: #fff;

    font-weight: 700;

    background:
        linear-gradient(90deg, #00d4ff, #7b2cff);

    transition: .3s;

}



.pcom-button:hover {

    transform: scale(1.05);

}




/* =====================================
   RESPONSIVE
===================================== */


@media(max-width:1000px) {


    .pcom-header,
    .pcom-main,
    .pcom-cta {

        grid-template-columns: 1fr;

        flex-direction: column;

    }


    .header-left h2 {

        font-size: 45px;

    }



    .pcom-bottom {

        grid-template-columns: 1fr;

    }



    .visual-wrapper img {

        height: 420px;

    }



}


@media(max-width:600px) {


    .pcom-attend {

        padding: 70px 0;

    }


    .header-left h2 {

        font-size: 36px;

    }



    .feature-item {

        grid-template-columns: 1fr;

        text-align: center;

    }



    .stat-one,
    .stat-two,
    .stat-three {

        position: relative;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        margin: 10px;

    }



    .pcom-cta {

        padding: 30px;

        text-align: center;

    }


}

/* Scientific Program */
/* ==========================================
   SCIENTIFIC PROGRAM - PREMIUM CONFERENCE
========================================== */


.scientific-program {

    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, #06152f, #091d3b 50%, #07101f);
    color: #fff;
    font-family: "Inter", sans-serif;

}


.scientific-program .container {

    width: 90%;
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;

}



/* ==========================================
   BACKGROUND EFFECTS
========================================== */


.science-glow {

    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .45;

}


.glow-one {

    width: 500px;
    height: 500px;
    background: #00d4ff;
    top: -200px;
    left: -150px;

}


.glow-two {

    width: 450px;
    height: 450px;
    background: #7b2cff;
    right: -150px;
    bottom: -150px;

}



.science-grid {

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .04) 1px,
            transparent 1px);


    background-size: 50px 50px;
    opacity: .35;

}





/* ==========================================
   HEADER
========================================== */


.scientific-header {

    max-width: 850px;
    margin: auto;
    text-align: center;
    margin-bottom: 70px;

}



.science-label {


    display: inline-block;

    padding: 10px 25px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .15);

    color: #00d4ff;

    font-size: 14px;

    letter-spacing: 2px;

    font-weight: 700;


}



.scientific-header h2 {


    margin-top: 25px;

    font-size: 58px;

    line-height: 1.15;

    font-weight: 800;


}



.scientific-header h2 span {


    background:
        linear-gradient(90deg, #00d4ff, #8b5cff);

    -webkit-background-clip: text;

    color: transparent;


}



.scientific-header p {


    margin-top: 25px;

    color: #c7d4e8;

    font-size: 17px;

    line-height: 1.8;


}





/* ==========================================
   PROGRAM TABS
========================================== */


.program-tabs {


    display: flex;

    justify-content: center;

    gap: 18px;

    margin-bottom: 70px;


}



.program-tabs button {


    border: none;

    padding: 15px 35px;

    border-radius: 50px;

    color: white;

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .15);

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;


}



.program-tabs button:hover,
.program-tabs .active {


    background:
        linear-gradient(90deg, #00d4ff, #7b2cff);

    transform: translateY(-5px);


}







/* ==========================================
   TIMELINE
========================================== */


.program-timeline {


    position: relative;

    max-width: 1000px;

    margin: auto;


}



.program-timeline::before {


    content: "";

    position: absolute;

    left: 145px;

    top: 0;

    bottom: 0;

    width: 2px;

    background:
        linear-gradient(#00d4ff,
            #7b2cff);


}




/* ITEM */


.program-item {


    display: grid;

    grid-template-columns: 140px 1fr;

    gap: 45px;

    margin-bottom: 45px;

    position: relative;


}





/* TIME */


.program-time {


    text-align: right;

    padding-top: 25px;


}



.program-time span {


    color: #00d4ff;

    font-size: 18px;

    font-weight: 700;


}





/* CONTENT */


.program-content {


    display: flex;

    gap: 25px;

    padding: 30px;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, .07);

    backdrop-filter: blur(20px);

    border:
        1px solid rgba(255, 255, 255, .12);

    transition: .4s;


}



.program-content:hover {


    transform: translateX(12px);

    background:
        rgba(255, 255, 255, .12);


}




/* ICON */


.program-icon {


    min-width: 65px;

    height: 65px;

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    background:
        linear-gradient(135deg, #00d4ff, #7b2cff);


}





.program-content h3 {


    margin: 0 0 12px;

    font-size: 24px;


}



.program-content p {


    color: #cbd7ea;

    line-height: 1.7;

    margin-bottom: 20px;


}






/* META */


.program-meta {


    display: flex;

    flex-wrap: wrap;

    gap: 25px;


}


.program-meta span {


    color: #9fb2d0;

    font-size: 14px;


}



.program-meta i {


    color: #00d4ff;

    margin-right: 8px;


}







/* ==========================================
   FOOTER CTA
========================================== */


.scientific-footer {


    margin-top: 80px;

    padding: 45px;

    border-radius: 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;


    background:
        linear-gradient(135deg,
            rgba(0, 212, 255, .15),
            rgba(123, 44, 255, .2));


    border:
        1px solid rgba(255, 255, 255, .15);


}



.scientific-footer h3 {


    font-size: 30px;

    margin-bottom: 10px;


}



.scientific-footer p {


    color: #cbd7ea;

}



.science-btn {


    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px 35px;

    border-radius: 50px;

    text-decoration: none;

    color: #fff;

    font-weight: 700;


    background:
        linear-gradient(90deg, #00d4ff, #7b2cff);


    transition: .3s;


}



.science-btn:hover {


    transform: scale(1.05);


}





/* ==========================================
   RESPONSIVE DESIGN
========================================== */


@media(max-width:1000px) {


    .scientific-header h2 {

        font-size: 45px;

    }



    .program-timeline::before {

        display: none;

    }



    .program-item {


        grid-template-columns: 1fr;

        gap: 15px;

    }



    .program-time {


        text-align: left;

    }



    .scientific-footer {


        flex-direction: column;

        text-align: center;

    }



}



@media(max-width:600px) {



    .scientific-program {

        padding: 80px 0;

    }



    .scientific-header h2 {

        font-size: 35px;

    }



    .program-tabs {

        flex-wrap: wrap;

    }



    .program-content {


        flex-direction: column;

        padding: 25px;

    }



    .program-content h3 {

        font-size: 21px;

    }



    .scientific-footer {


        padding: 30px;

    }


}

/* Venue */

/* ==========================================
   PCOM VENUE - PREMIUM CONFERENCE STYLE
========================================== */


.pcom-venue {

    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg, #06152f, #091d3b 55%, #070f20);

    color: #ffffff;
    font-family: "Inter", sans-serif;

}



.pcom-venue .container {

    width: 90%;
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;

}



/* ==========================================
   BACKGROUND EFFECTS
========================================== */


.venue-glow {

    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .45;

}


.venue-glow.glow-one {

    width: 500px;
    height: 500px;

    background: #00d4ff;

    top: -200px;
    left: -150px;

}



.venue-glow.glow-two {

    width: 450px;
    height: 450px;

    background: #7b2cff;

    bottom: -150px;
    right: -150px;

}



.venue-grid {

    position: absolute;
    inset: 0;

    background-image:

        linear-gradient(rgba(255, 255, 255, .04) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .04) 1px,
            transparent 1px);


    background-size: 50px 50px;

    opacity: .35;

}





/* ==========================================
   HEADER
========================================== */


.venue-header {

    text-align: center;

    max-width: 850px;

    margin: auto;

    margin-bottom: 70px;

}



.venue-label {


    display: inline-block;

    padding: 10px 25px;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid rgba(255, 255, 255, .15);

    color: #00d4ff;

    font-size: 14px;

    letter-spacing: 2px;

    font-weight: 700;


}



.venue-header h2 {


    margin-top: 25px;

    font-size: 58px;

    line-height: 1.15;

    font-weight: 800;


}



.venue-header h2 span {


    background:
        linear-gradient(90deg, #00d4ff, #8b5cff);

    -webkit-background-clip: text;

    color: transparent;


}



.venue-header p {


    margin-top: 25px;

    color: #cbd8eb;

    font-size: 17px;

    line-height: 1.8;


}






/* ==========================================
   MAIN VENUE SECTION
========================================== */


.venue-main {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;

}






/* ==========================================
   IMAGE
========================================== */


.venue-image {


    position: relative;

    height: 560px;

    border-radius: 35px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);


}



.venue-image img {


    width: 100%;

    height: 100%;

    object-fit: cover;


}



.venue-overlay {


    position: absolute;

    inset: 0;

    background:
        linear-gradient(transparent,
            rgba(0, 0, 0, .65));


}




.venue-location-card {


    position: absolute;

    bottom: 30px;

    left: 30px;

    right: 30px;

    display: flex;

    align-items: center;

    gap: 20px;


    padding: 25px;

    border-radius: 25px;


    background:
        rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);


    border:
        1px solid rgba(255, 255, 255, .2);


}



.venue-location-card i {


    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;


    font-size: 28px;


    background:
        linear-gradient(135deg, #00d4ff, #7b2cff);


}



.venue-location-card h3 {


    margin: 0 0 8px;

    font-size: 22px;


}



.venue-location-card p {


    margin: 0;

    color: #d2def0;


}







/* ==========================================
   CONTENT
========================================== */


.venue-content h3 {


    font-size: 35px;

    line-height: 1.3;

    margin-bottom: 20px;


}



.venue-content>p {


    color: #cbd8eb;

    line-height: 1.8;

    margin-bottom: 35px;


}







/* ==========================================
   FACILITIES
========================================== */


.venue-facilities {


    display: flex;

    flex-direction: column;

    gap: 22px;


}



.facility-item {


    display: flex;

    gap: 20px;

    align-items: center;


    padding: 22px;

    border-radius: 25px;


    background:
        rgba(255, 255, 255, .07);


    border:
        1px solid rgba(255, 255, 255, .12);


    transition: .4s;


}



.facility-item:hover {


    transform: translateX(10px);

    background:
        rgba(255, 255, 255, .12);


}



.facility-icon {


    min-width: 60px;

    height: 60px;


    display: flex;

    align-items: center;

    justify-content: center;


    border-radius: 18px;


    background:
        linear-gradient(135deg, #00d4ff, #7b2cff);


    font-size: 24px;


}



.facility-item h4 {


    margin: 0 0 8px;

    font-size: 19px;


}



.facility-item span {


    color: #c5d4e9;

    font-size: 14px;


}






/* BUTTON */


.venue-btn,
.venue-register {


    margin-top: 35px;

    display: inline-flex;

    align-items: center;

    gap: 12px;


    padding: 17px 35px;


    border-radius: 50px;


    background:
        linear-gradient(90deg, #00d4ff, #7b2cff);


    color: #fff;

    text-decoration: none;

    font-weight: 700;


    transition: .3s;


}



.venue-btn:hover,
.venue-register:hover {


    transform: translateY(-5px);


}







/* ==========================================
   HIGHLIGHTS
========================================== */


.venue-highlights {


    margin-top: 90px;


    display: grid;

    grid-template-columns:
        repeat(4, 1fr);


    gap: 25px;


}




.highlight-box {


    text-align: center;

    padding: 35px 25px;


    border-radius: 30px;


    background:
        rgba(255, 255, 255, .07);


    border:
        1px solid rgba(255, 255, 255, .12);


    transition: .4s;


}



.highlight-box:hover {


    transform: translateY(-12px);


}



.highlight-box i {


    font-size: 40px;

    color: #00d4ff;

    margin-bottom: 20px;


}



.highlight-box h3 {


    font-size: 21px;


}



.highlight-box p {


    color: #cbd8eb;

    line-height: 1.6;


}






/* ==========================================
   CTA
========================================== */


.venue-cta {


    margin-top: 80px;


    padding: 45px;


    border-radius: 35px;


    display: flex;

    justify-content: space-between;


    align-items: center;


    gap: 30px;


    background:
        linear-gradient(135deg,
            rgba(0, 212, 255, .15),
            rgba(123, 44, 255, .2));


    border:
        1px solid rgba(255, 255, 255, .15);


}



.venue-cta h3 {


    font-size: 32px;

    margin-bottom: 10px;


}



.venue-cta p {


    color: #cbd8eb;


}







/* ==========================================
   RESPONSIVE
========================================== */


@media(max-width:1100px) {


    .venue-main {

        grid-template-columns: 1fr;

    }



    .venue-highlights {

        grid-template-columns:
            repeat(2, 1fr);

    }



    .venue-header h2 {

        font-size: 45px;

    }



}



@media(max-width:700px) {


    .pcom-venue {

        padding: 80px 0;

    }



    .venue-header h2 {

        font-size: 35px;

    }



    .venue-image {

        height: 400px;

    }



    .venue-location-card {

        left: 15px;

        right: 15px;

    }



    .venue-highlights {

        grid-template-columns: 1fr;

    }



    .venue-cta {

        flex-direction: column;

        text-align: center;

        padding: 30px;

    }



    .venue-content h3 {

        font-size: 28px;

    }


}

/* Sponsors & Partners */

/* ==========================================
   PCOM SPONSORS & PARTNERS
   PREMIUM CONFERENCE STYLE
========================================== */


.pcom-sponsors {

    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg, #06152f, #091d3b 55%, #070f20);

    color: #ffffff;
    font-family: "Inter", sans-serif;

}



.pcom-sponsors .container {

    width: 90%;
    max-width: 1250px;
    margin: auto;

    position: relative;
    z-index: 2;

}



/* ==========================================
   BACKGROUND EFFECTS
========================================== */


.sponsor-glow {

    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .45;

}



.sponsor-glow.glow-one {

    width: 520px;
    height: 520px;

    background: #00d4ff;

    top: -220px;
    left: -160px;

}



.sponsor-glow.glow-two {

    width: 450px;
    height: 450px;

    background: #7b2cff;

    right: -150px;
    bottom: -150px;

}




.sponsor-grid {


    position: absolute;
    inset: 0;


    background-image:

        linear-gradient(rgba(255, 255, 255, .04) 1px,
            transparent 1px),

        linear-gradient(90deg,
            rgba(255, 255, 255, .04) 1px,
            transparent 1px);



    background-size: 50px 50px;

    opacity: .35;


}







/* ==========================================
   HEADER
========================================== */


.sponsor-header {

    text-align: center;

    max-width: 850px;

    margin: auto;

    margin-bottom: 70px;


}



.sponsor-label {


    display: inline-block;

    padding: 10px 25px;


    border-radius: 50px;


    color: #00d4ff;


    background:
        rgba(255, 255, 255, .08);



    border:
        1px solid rgba(255, 255, 255, .15);



    font-size: 14px;

    letter-spacing: 2px;

    font-weight: 700;


}




.sponsor-header h2 {


    margin-top: 25px;


    font-size: 58px;


    font-weight: 800;


    line-height: 1.15;


}



.sponsor-header h2 span {


    background:

        linear-gradient(90deg, #00d4ff, #8b5cff);



    -webkit-background-clip: text;

    color: transparent;


}



.sponsor-header p {


    margin-top: 25px;

    color: #cbd8eb;

    font-size: 17px;

    line-height: 1.8;


}







/* ==========================================
   FEATURED SPONSOR
========================================== */


.featured-sponsor {


    display: grid;

    grid-template-columns:
        .8fr 1.2fr;


    gap: 50px;


    padding: 45px;


    border-radius: 35px;


    background:

        rgba(255, 255, 255, .07);


    border:

        1px solid rgba(255, 255, 255, .12);


    backdrop-filter: blur(20px);


    align-items: center;


}





.sponsor-message h3 {


    font-size: 32px;

    margin-bottom: 15px;


}




.sponsor-message p {


    color: #cbd8eb;

    line-height: 1.8;


}






.sponsor-btn,
.partner-btn {


    display: inline-flex;

    align-items: center;

    gap: 12px;


    margin-top: 25px;


    padding: 17px 35px;


    border-radius: 50px;


    background:

        linear-gradient(90deg, #00d4ff, #7b2cff);



    color: #fff;


    text-decoration: none;


    font-weight: 700;


    transition: .3s;


}



.sponsor-btn:hover,
.partner-btn:hover {


    transform: translateY(-5px);


}






/* LOGO SHOWCASE */


.partner-showcase {


    display: grid;

    grid-template-columns:
        repeat(3, 1fr);


    gap: 25px;


}





.partner-logo {


    height: 150px;


    display: flex;

    align-items: center;

    justify-content: center;


    padding: 25px;


    border-radius: 25px;


    background:

        rgba(255, 255, 255, .08);


    border:

        1px solid rgba(255, 255, 255, .15);


}




.partner-logo img {


    max-width: 100%;

    max-height: 80px;

    object-fit: contain;


}







/* ==========================================
   SPONSOR LEVELS
========================================== */


.sponsor-levels {


    margin-top: 80px;


    display: grid;


    grid-template-columns:

        repeat(3, 1fr);



    gap: 30px;


}




.sponsor-card {


    text-align: center;


    padding: 40px 30px;


    border-radius: 30px;


    background:

        rgba(255, 255, 255, .07);


    border:

        1px solid rgba(255, 255, 255, .12);


    transition: .4s;


}




.sponsor-card:hover {


    transform: translateY(-12px);


}




.level-icon {


    width: 75px;

    height: 75px;


    margin: auto;


    display: flex;


    align-items: center;

    justify-content: center;


    border-radius: 25px;


    background:

        linear-gradient(135deg, #00d4ff, #7b2cff);



    font-size: 32px;


}




.sponsor-card h3 {


    margin: 25px 0;


    font-size: 23px;


}






.logo-area {


    height: 120px;


    padding: 20px;


    display: flex;


    align-items: center;


    justify-content: center;


    background:

        rgba(255, 255, 255, .08);


    border-radius: 20px;


}



.logo-area img {


    max-width: 100%;

    max-height: 70px;

    object-fit: contain;


}








/* ==========================================
   LOGO WALL
========================================== */


.logo-wall {


    margin-top: 90px;


    text-align: center;


}



.logo-wall h3 {


    font-size: 30px;

    margin-bottom: 40px;


}



.logos-container {


    display: grid;


    grid-template-columns:

        repeat(5, 1fr);


    gap: 25px;


}




.partner-small {


    height: 110px;


    display: flex;
    
    flex-direction: column;


    justify-content: center;


    align-items: center;


    padding: 20px;
    
    


    border-radius: 22px;


    background:

        rgba(255, 255, 255, .07);


    border:

        1px solid rgba(255, 255, 255, .12);


    transition: .3s;


}



.partner-small:hover {


    transform: translateY(-8px);


}




.partner-small img {


    max-width: 100%;


    max-height: 55px;


    object-fit: contain;
    
    margin-top:20px;


}

.partner-small p {
    margin-top: 10px;
    font-size: 16px;
}








/* ==========================================
   CTA
========================================== */


.sponsor-cta {


    margin-top: 80px;


    padding: 45px;


    border-radius: 35px;


    display: flex;


    justify-content: space-between;


    align-items: center;


    gap: 30px;



    background:

        linear-gradient(135deg,
            rgba(0, 212, 255, .15),
            rgba(123, 44, 255, .2));



    border:

        1px solid rgba(255, 255, 255, .15);


}



.sponsor-cta h3 {


    font-size: 32px;


    margin-bottom: 10px;


}



.sponsor-cta p {


    color: #cbd8eb;


}







/* ==========================================
   RESPONSIVE
========================================== */


@media(max-width:1100px) {


    .featured-sponsor {


        grid-template-columns: 1fr;


    }



    .sponsor-levels {


        grid-template-columns: 1fr;


    }



    .logos-container {


        grid-template-columns:
            repeat(3, 1fr);


    }


    .sponsor-header h2 {


        font-size: 45px;


    }


}





@media(max-width:700px) {


    .pcom-sponsors {


        padding: 80px 0;


    }



    .sponsor-header h2 {


        font-size: 35px;


    }



    .featured-sponsor {


        padding: 30px;


    }



    .partner-showcase {


        grid-template-columns: 1fr;


    }



    .logos-container {


        grid-template-columns:
            repeat(2, 1fr);


    }



    .sponsor-cta {


        flex-direction: column;


        text-align: center;


        padding: 30px;


    }



}

/* FAQ section */

/* ==========================================
   PCOM FAQ - PREMIUM CONFERENCE STYLE
========================================== */


.pcom-faq {

    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg, #06152f, #091d3b 55%, #070f20);

    color: #ffffff;
    font-family: "Inter", sans-serif;

}



.pcom-faq .container {

    width: 90%;
    max-width: 1250px;
    margin: auto;

    position: relative;
    z-index: 2;

}



/* ==========================================
   BACKGROUND EFFECTS
========================================== */


.faq-glow {

    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .45;

}



.faq-glow.glow-one {

    width: 520px;
    height: 520px;

    background: #00d4ff;

    top: -200px;
    left: -150px;

}



.faq-glow.glow-two {

    width: 450px;
    height: 450px;

    background: #7b2cff;

    bottom: -150px;
    right: -150px;

}



.faq-grid {


    position: absolute;

    inset: 0;


    background-image:


        linear-gradient(rgba(255, 255, 255, .04) 1px,
            transparent 1px),


        linear-gradient(90deg,
            rgba(255, 255, 255, .04) 1px,
            transparent 1px);


    background-size: 50px 50px;

    opacity: .35;


}







/* ==========================================
   HEADER
========================================== */


.faq-header {


    max-width: 850px;

    margin: auto;

    text-align: center;

    margin-bottom: 70px;


}




.faq-label {


    display: inline-block;


    padding: 10px 25px;


    border-radius: 50px;


    background:

        rgba(255, 255, 255, .08);



    border:

        1px solid rgba(255, 255, 255, .15);



    color: #00d4ff;


    font-size: 14px;


    font-weight: 700;


    letter-spacing: 2px;


}




.faq-header h2 {


    margin-top: 25px;


    font-size: 58px;


    line-height: 1.15;


    font-weight: 800;


}



.faq-header h2 span {


    background:

        linear-gradient(90deg, #00d4ff, #8b5cff);



    -webkit-background-clip: text;


    color: transparent;


}




.faq-header p {


    margin-top: 25px;


    color: #cbd8eb;


    font-size: 17px;


    line-height: 1.8;


}








/* ==========================================
   FAQ WRAPPER
========================================== */


.faq-wrapper {


    display: grid;


    grid-template-columns:
        .8fr 1.2fr;


    gap: 50px;


    align-items: start;


}







/* ==========================================
   LEFT INFO CARD
========================================== */


.faq-card {


    padding: 40px;


    border-radius: 35px;


    background:

        rgba(255, 255, 255, .07);


    border:

        1px solid rgba(255, 255, 255, .12);


    backdrop-filter: blur(20px);


}



.faq-icon {


    width: 75px;


    height: 75px;


    display: flex;


    justify-content: center;


    align-items: center;


    border-radius: 25px;


    background:

        linear-gradient(135deg, #00d4ff, #7b2cff);



    font-size: 32px;


    margin-bottom: 25px;


}




.faq-card h3 {


    font-size: 28px;


    margin-bottom: 15px;


}




.faq-card p {


    color: #cbd8eb;


    line-height: 1.8;


}





.faq-contact {


    display: inline-flex;


    align-items: center;


    gap: 12px;


    margin-top: 25px;


    padding: 16px 32px;


    border-radius: 50px;


    background:

        linear-gradient(90deg, #00d4ff, #7b2cff);



    color: #fff;


    text-decoration: none;


    font-weight: 700;


}






/* FAQ STATS */


.faq-stat {


    margin-top: 25px;


    display: grid;


    grid-template-columns:
        repeat(2, 1fr);


    gap: 20px;


}



.faq-stat div {


    padding: 25px;


    text-align: center;


    border-radius: 25px;


    background:

        rgba(255, 255, 255, .07);


    border:

        1px solid rgba(255, 255, 255, .12);


}



.faq-stat strong {


    display: block;


    font-size: 28px;


    color: #00d4ff;


}



.faq-stat span {


    color: #cbd8eb;


    font-size: 14px;


}







/* ==========================================
   ACCORDION
========================================== */


.faq-accordion {


    display: flex;


    flex-direction: column;


    gap: 20px;


}




.faq-item {


    border-radius: 25px;


    background:

        rgba(255, 255, 255, .07);


    border:

        1px solid rgba(255, 255, 255, .12);


    overflow: hidden;


    transition: .3s;


}



.faq-item:hover {


    background:

        rgba(255, 255, 255, .12);


}




.faq-question {


    width: 100%;


    padding: 28px 30px;


    border: none;


    background: none;


    color: #fff;


    display: flex;


    justify-content: space-between;


    align-items: center;


    font-size: 18px;


    font-weight: 700;


    cursor: pointer;


    text-align: left;


}



.faq-question span {


    width: 35px;


    height: 35px;


    display: flex;


    justify-content: center;


    align-items: center;


    border-radius: 50%;


    background:

        linear-gradient(135deg, #00d4ff, #7b2cff);



}



.faq-answer {


    padding: 0 30px 25px;


}



.faq-answer p {


    color: #cbd8eb;


    line-height: 1.8;


    margin: 0;


}





.faq-item:not(.active) .faq-answer {


    display: none;


}





.faq-item.active .faq-question span i {


    transform: rotate(45deg);


}







/* ==========================================
   CTA
========================================== */


.faq-cta {


    margin-top: 80px;


    padding: 45px;


    border-radius: 35px;


    display: flex;


    justify-content: space-between;


    align-items: center;


    gap: 30px;



    background:

        linear-gradient(135deg,
            rgba(0, 212, 255, .15),
            rgba(123, 44, 255, .2));



    border:

        1px solid rgba(255, 255, 255, .15);


}



.faq-cta h3 {


    font-size: 32px;


    margin-bottom: 10px;


}




.faq-cta p {


    color: #cbd8eb;


}





.faq-btn {


    display: inline-flex;


    align-items: center;


    gap: 12px;


    padding: 17px 35px;


    border-radius: 50px;


    background:

        linear-gradient(90deg, #00d4ff, #7b2cff);



    color: #fff;


    text-decoration: none;


    font-weight: 700;


    transition: .3s;


}



.faq-btn:hover {


    transform: translateY(-5px);


}








/* ==========================================
   RESPONSIVE
========================================== */


@media(max-width:1100px) {


    .faq-wrapper {


        grid-template-columns: 1fr;


    }



    .faq-header h2 {


        font-size: 45px;


    }



}





@media(max-width:700px) {


    .pcom-faq {


        padding: 80px 0;


    }



    .faq-header h2 {


        font-size: 35px;


    }



    .faq-card {


        padding: 30px;


    }



    .faq-stat {


        grid-template-columns: 1fr;


    }



    .faq-question {


        padding: 22px;


        font-size: 16px;


    }



    .faq-answer {


        padding: 0 22px 20px;


    }



    .faq-cta {


        flex-direction: column;


        text-align: center;


        padding: 30px;


    }



}

/* ===== INTRO VIDEO RESPONSIVE (Mobile & Desktop) ===== */
@media (max-width: 768px) {
    .video-top-bar {
        padding: 20px 20px;
    }

    .video-controls {
        bottom: 100px;
        right: 20px;
    }

    #closeBtn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .control-btn {
        width: 48px;
        height: 48px;
    }
}

/* ============================================================
   IMPORTANT DATES POPUP MODAL STYLING
   ============================================================ */

.dates-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 12, 24, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.dates-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dates-modal-card {
    background: linear-gradient(145deg, rgba(11, 27, 48, 0.96) 0%, rgba(6, 17, 33, 0.98) 100%);
    border: 1px solid rgba(0, 168, 232, 0.35);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    padding: 32px 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 168, 232, 0.15);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dates-modal-overlay.active .dates-modal-card {
    transform: scale(1) translateY(0);
}

/* Close Button */
.dates-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.dates-modal-close:hover {
    background: rgba(220, 38, 38, 0.85);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.08) rotate(90deg);
}

/* Header */
.dates-modal-header {
    text-align: center;
    margin-bottom: 24px;
    padding-right: 20px;
}

.dates-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.2) 0%, rgba(0, 210, 190, 0.2) 100%);
    border: 1px solid rgba(0, 210, 190, 0.4);
    color: #00d2be;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.dates-modal-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}

.dates-modal-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13.5px;
    margin: 0;
    line-height: 1.4;
}

/* Grid & Cards */
.dates-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.date-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.25s ease;
}

.date-card:hover {
    border-color: rgba(0, 168, 232, 0.4);
    background: rgba(0, 168, 232, 0.06);
    transform: translateX(4px);
}

.date-card.highlight-card {
    border-color: rgba(0, 168, 232, 0.4);
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1) 0%, rgba(0, 210, 190, 0.05) 100%);
}

.date-card.main-event-card {
    border-color: rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(239, 68, 68, 0.06) 100%);
}

.date-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(0, 168, 232, 0.15);
    color: #00a8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-event-card .date-icon-box {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.date-info {
    flex: 1;
}

.date-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 3px;
    flex-wrap: wrap;
}

.date-title {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.date-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-open {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag-ext {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.tag-limited {
    background: rgba(236, 72, 153, 0.2);
    color: #f472b6;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.tag-main {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.date-value {
    color: #00d2be;
    font-size: 13.5px;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.main-event-card .date-value {
    color: #fbbf24;
}

.date-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin: 0;
    line-height: 1.35;
}

/* Footer Button */
.dates-modal-footer {
    text-align: center;
}

.dates-confirm-btn {
    width: 100%;
    background: linear-gradient(135deg, #00a8e8 0%, #0077b6 100%);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 168, 232, 0.35);
    transition: all 0.25s ease;
}

.dates-confirm-btn:hover {
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    box-shadow: 0 12px 30px rgba(0, 168, 232, 0.5);
    transform: translateY(-2px);
}

.dates-confirm-btn:active {
    transform: scale(0.98);
}

/* ========================================================
   DASHBOARD.PHP STYLES (Abstract Portal)
======================================================== */

.dashboard-body {
    background-color: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #334155;
    margin: 0;
    padding: 0;
}

.dashboard-wrapper {
    max-width: 1200px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

/* Dashboard Hero */
.dashboard-hero {
    position: relative;
    background: linear-gradient(135deg, #0a4ea5 0%, #00a8e8 100%);
    border-radius: 16px;
    padding: 40px;
    overflow: hidden;
    margin-bottom: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(10, 78, 165, 0.2);
}

.dashboard-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('Logo/pattern.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.dashboard-hero-content {
    position: relative;
    z-index: 2;
}

.dashboard-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.dashboard-title {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px;
}

.dashboard-subtitle {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

/* Stats Grid */
.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.icon-blue { background: #e0f2fe; color: #0284c7; }
.stat-icon.icon-teal { background: #ccfbf1; color: #0f766e; }
.stat-icon.icon-gold { background: #fef3c7; color: #b45309; }

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

/* Alerts */
.dashboard-alert {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    gap: 15px;
}

.dashboard-alert.alert-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.dashboard-alert.alert-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

/* Tabs */
.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.tab-btn.active {
    background: #00a8e8;
    color: white;
}

/* Sections & Cards */
.dashboard-section {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.dashboard-section.active-section {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-container-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
}

.card-header-styled {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.card-header-styled.space-between {
    justify-content: space-between;
    flex-wrap: wrap;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon-box {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    color: #00a8e8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 5px;
}

.card-desc {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Form Styles */
.pcom-form .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pcom-form .form-group {
    display: flex;
    flex-direction: column;
}

.pcom-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.required-star {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #94a3b8;
}

.form-input {
    width: 100%;
    padding: 12px 15px 12px 42px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus {
    border-color: #00a8e8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.15);
}

/* Dropzone */
.dropzone-area {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.dropzone-area:hover {
    border-color: #00a8e8;
    background: #f0f9ff;
}

.file-input-hidden {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #00a8e8;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.dropzone-heading {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 5px;
}

.dropzone-hint {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Form Actions */
.form-actions {
    margin-top: 30px;
    text-align: right;
}

.submit-abstract-btn {
    background: #0a4ea5;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.submit-abstract-btn:hover {
    background: #00a8e8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

/* Table */
.table-search-box {
    position: relative;
    width: 300px;
}

.table-search-input {
    width: 100%;
    padding: 10px 15px 10px 38px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.table-responsive {
    overflow-x: auto;
}

.abstracts-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.abstracts-table th {
    background: #f1f5f9;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    padding: 14px 15px;
    border-bottom: 2px solid #e2e8f0;
}

.abstracts-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
    color: #334155;
    vertical-align: middle;
}

.abstracts-table tr:hover td {
    background: #f8fafc;
}

.td-id { color: #94a3b8; font-weight: 600; }
.td-name { color: #0f172a; }
.td-title { max-width: 200px; line-height: 1.4; }
.td-date { font-size: 12px; color: #64748b; }

.table-link {
    color: #00a8e8;
    text-decoration: none;
    font-weight: 500;
}
.table-link:hover { text-decoration: underline; }

.download-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.download-file-btn:hover {
    background: #00a8e8;
    color: white;
}

.no-records {
    text-align: center;
    padding: 40px !important;
    color: #94a3b8;
}

.empty-icon {
    font-size: 32px;
    margin-bottom: 10px;
    color: #cbd5e1;
}

/* Footer */
.dashboard-footer {
    text-align: center;
    padding: 20px;
    color: #64748b;
    font-size: 14px;
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .pcom-form .form-grid-2 { grid-template-columns: 1fr; }
    .card-header-styled.space-between { flex-direction: column; align-items: flex-start; gap: 15px; }
    .table-search-box { width: 100%; }
}

.committee-list {
    max-width: 700px;
    margin: 30px auto;
    font-family: Arial, sans-serif;
}

.committee-member {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    margin-bottom: 12px;
    background: #fff;
    border-left: 5px solid #0d6efd;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.committee-member:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.member-name {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.member-role {
    background: #0d6efd;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .committee-member {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .member-role {
        align-self: flex-start;
    }
}
.hero-section {
    background: url('image/header-contact.png') center center/cover no-repeat;
    min-height: 500px; /* Adjust as needed */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Sponsor Modal Overlay ───────────────────────────────── */
    .sponsor-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 5, 15, 0.85);
        backdrop-filter: blur(7px);
        -webkit-backdrop-filter: blur(7px);
        z-index: 99998;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }
    .sponsor-modal-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* ── Modal Card ─────────────────────────────────────────── */
    .sponsor-modal-card {
        background: linear-gradient(150deg, #0c1a10 0%, #091408 50%, #0d1a0e 100%);
        border: 1px solid rgba(34, 197, 94, 0.18);
        border-radius: 22px;
        padding: 40px 44px 44px;
        width: 100%;
        max-width: 820px;
        max-height: 92vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 32px 90px rgba(0,0,0,0.65), 0 0 70px rgba(34,197,94,0.06);
        transform: translateY(28px) scale(0.97);
        transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
        scrollbar-width: thin;
        scrollbar-color: rgba(34,197,94,0.3) transparent;
    }
    .sponsor-modal-overlay.active .sponsor-modal-card {
        transform: translateY(0) scale(1);
    }
    .sponsor-modal-card::-webkit-scrollbar { width: 5px; }
    .sponsor-modal-card::-webkit-scrollbar-thumb { background: rgba(34,197,94,0.3); border-radius: 8px; }

    /* ── Close Button ───────────────────────────────────────── */
    .sponsor-modal-close {
        position: absolute;
        top: 16px;
        right: 18px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #7aac88;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, transform 0.2s;
        flex-shrink: 0;
    }
    .sponsor-modal-close:hover {
        background: rgba(220,50,50,0.2);
        color: #ff6b6b;
        transform: rotate(90deg);
    }

    /* ── Header ─────────────────────────────────────────────── */
    .sponsor-modal-header { margin-bottom: 20px; }
    .sponsor-modal-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(16,185,129,0.08));
        border: 1px solid rgba(34,197,94,0.32);
        color: #4ade80;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 14px;
    }
    .sponsor-modal-title {
        font-size: 26px;
        font-weight: 800;
        color: #e8fff0;
        margin: 0 0 8px;
        letter-spacing: -0.4px;
    }
    .sponsor-modal-subtitle {
        font-size: 14px;
        color: #5a8a6a;
        margin: 0;
        line-height: 1.65;
    }

    /* ── Tier pills ─────────────────────────────────────────── */
    .sponsor-tier-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 22px;
    }
    .tier-pill {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 5px 12px;
        border-radius: 50px;
        border: 1px solid;
    }
    .tier-title    { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.4); color: #c084fc; }
    .tier-platinum { background: rgba(148,163,184,0.12); border-color: rgba(148,163,184,0.4); color: #cbd5e1; }
    .tier-gold     { background: rgba(234,179,8,0.12); border-color: rgba(234,179,8,0.4); color: #fde047; }
    .tier-silver   { background: rgba(156,163,175,0.12); border-color: rgba(156,163,175,0.4); color: #d1d5db; }
    .tier-bronze   { background: rgba(180,83,9,0.12); border-color: rgba(180,83,9,0.4); color: #fb923c; }
    .tier-exhibitor{ background: rgba(14,165,233,0.12); border-color: rgba(14,165,233,0.4); color: #38bdf8; }

    /* ── Alert ──────────────────────────────────────────────── */
    .sponsor-alert {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .sponsor-alert.success {
        background: rgba(16,185,129,0.12);
        border: 1px solid rgba(16,185,129,0.35);
        color: #34d399;
    }
    .sponsor-alert.error {
        background: rgba(239,68,68,0.1);
        border: 1px solid rgba(239,68,68,0.3);
        color: #f87171;
    }

    /* ── Form Grid ──────────────────────────────────────────── */
    .sponsor-s-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
    }
    .sp-group { display: flex; flex-direction: column; gap: 6px; }
    .sp-group.sp-full { grid-column: 1 / -1; }
    .sp-label {
        font-size: 13px;
        font-weight: 600;
        color: #7aac88;
        letter-spacing: 0.3px;
    }
    .sp-req { color: #f87171; margin-left: 2px; }
    .sp-optional { color: #3d6b4a; font-weight: 400; font-size: 12px; }

    .sp-input {
        background: rgba(255,255,255,0.035);
        border: 1px solid rgba(34,197,94,0.15);
        border-radius: 10px;
        color: #d4f5dd;
        font-size: 14px;
        padding: 11px 14px;
        outline: none;
        transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
        font-family: inherit;
        width: 100%;
        box-sizing: border-box;
    }
    .sp-input::placeholder { color: #2d5a38; }
    .sp-input:focus {
        border-color: rgba(34,197,94,0.5);
        background: #131f13;
        box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
    }
    select.sp-input { appearance: none; cursor: pointer; }
    .sp-textarea { min-height: 100px; resize: vertical; }
    .sp-textarea-sm { min-height: 72px; }

    /* ── File Upload ─────────────────────────────────────────── */
    .sp-file-area {
        border: 2px dashed rgba(34,197,94,0.2);
        border-radius: 12px;
        background: rgba(34,197,94,0.025);
        padding: 18px 14px;
        text-align: center;
        cursor: pointer;
        transition: border-color 0.25s, background 0.25s;
        color: #3d6b4a;
        flex: 1;
    }
    .sp-file-area:hover {
        border-color: rgba(34,197,94,0.45);
        background: rgba(34,197,94,0.06);
    }
    .sp-file-text { font-size: 13px; font-weight: 600; color: #7aac88; margin: 5px 0 2px; }
    .sp-file-hint { font-size: 11px; color: #2d5a38; margin: 0 0 3px; }
    .sp-file-name { font-size: 11px; color: #4ade80; margin: 0; }
    #sp-logo-file, #sp-profile-file { display: none; }

    /* ── Submit Button ───────────────────────────────────────── */
    .sp-submit-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #166534 0%, #16a34a 60%, #22c55e 100%);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        padding: 14px 28px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        letter-spacing: 0.3px;
        transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
        box-shadow: 0 6px 24px rgba(34,197,94,0.3);
        margin-top: 4px;
    }
    .sp-submit-btn:hover {
        opacity: 0.92;
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(34,197,94,0.42);
    }
    .sp-submit-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    @media (max-width: 620px) {
        .sponsor-modal-card { padding: 26px 18px 30px; }
        .sponsor-s-form { grid-template-columns: 1fr; }
        .sp-group.sp-full { grid-column: 1; }
        .sponsor-modal-title { font-size: 21px; }
        .sponsor-tier-row { gap: 6px; }
    }
    
    /* ── Partner Modal Overlay ─────────────────────────────────── */
    .partner-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 8, 20, 0.82);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
    }
    .partner-modal-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* ── Modal Card ────────────────────────────────────────────── */
    .partner-modal-card {
        background: linear-gradient(145deg, #0d1b2e 0%, #0a1525 100%);
        border: 1px solid rgba(0, 180, 240, 0.18);
        border-radius: 20px;
        padding: 40px 44px 44px;
        width: 100%;
        max-width: 760px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 168, 232, 0.08);
        transform: translateY(30px) scale(0.97);
        transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
        scrollbar-width: thin;
        scrollbar-color: rgba(0,168,232,0.3) transparent;
    }
    .partner-modal-overlay.active .partner-modal-card {
        transform: translateY(0) scale(1);
    }
    .partner-modal-card::-webkit-scrollbar { width: 5px; }
    .partner-modal-card::-webkit-scrollbar-thumb { background: rgba(0,168,232,0.35); border-radius: 8px; }

    /* ── Close Button ──────────────────────────────────────────── */
    .partner-modal-close {
        position: absolute;
        top: 16px;
        right: 18px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a0b4c8;
        cursor: pointer;
        transition: background 0.2s, color 0.2s, transform 0.2s;
        flex-shrink: 0;
    }
    .partner-modal-close:hover {
        background: rgba(220, 50, 50, 0.2);
        color: #ff6b6b;
        transform: rotate(90deg);
    }

    /* ── Header ─────────────────────────────────────────────────── */
    .partner-modal-header { margin-bottom: 28px; }
    .partner-modal-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: linear-gradient(135deg, rgba(0,168,232,0.15), rgba(0,200,255,0.08));
        border: 1px solid rgba(0,168,232,0.3);
        color: #00b4e8;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 5px 14px;
        border-radius: 50px;
        margin-bottom: 14px;
    }
    .partner-modal-title {
        font-size: 26px;
        font-weight: 800;
        color: #e8f4ff;
        margin: 0 0 8px;
        letter-spacing: -0.4px;
    }
    .partner-modal-subtitle {
        font-size: 14px;
        color: #7a96b0;
        margin: 0;
        line-height: 1.6;
    }

    /* ── Alert ──────────────────────────────────────────────────── */
    .partner-alert {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .partner-alert.success {
        background: rgba(16, 185, 129, 0.12);
        border: 1px solid rgba(16, 185, 129, 0.35);
        color: #34d399;
    }
    .partner-alert.error {
        background: rgba(239, 68, 68, 0.1);
        border: 1px solid rgba(239, 68, 68, 0.3);
        color: #f87171;
    }

    /* ── Form Grid ──────────────────────────────────────────────── */
    .partner-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px 20px;
    }
    .partner-form-group { display: flex; flex-direction: column; gap: 6px; }
    .partner-form-group.partner-full { grid-column: 1 / -1; }
    .partner-label {
        font-size: 13px;
        font-weight: 600;
        color: #94aec4;
        letter-spacing: 0.3px;
    }
    .partner-req { color: #f87171; margin-left: 2px; }
    .partner-optional { color: #5a7a92; font-weight: 400; font-size: 12px; }

    .partner-input {
        background: #0d1b2e;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        color: #e0edf7;
        font-size: 14px;
        padding: 11px 14px;
        outline: none;
        transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
        font-family: inherit;
        width: 100%;
        box-sizing: border-box;
    }
    .partner-input::placeholder { color: #4a6580; }
    .partner-input:focus {
        border-color: rgba(0,168,232,0.55);
        background: #0d1b2e;
        box-shadow: 0 0 0 3px rgba(0,168,232,0.12);
    }
    select.partner-input { appearance: none; cursor: pointer; }
    .partner-textarea { min-height: 110px; resize: vertical; }

    /* ── File Upload ────────────────────────────────────────────── */
    .partner-file-area {
        border: 2px dashed rgba(0,168,232,0.25);
        border-radius: 12px;
        background: rgba(0,168,232,0.03);
        padding: 22px;
        text-align: center;
        cursor: pointer;
        transition: border-color 0.25s, background 0.25s;
        color: #6b8aa0;
    }
    .partner-file-area:hover {
        border-color: rgba(0,168,232,0.5);
        background: rgba(0,168,232,0.07);
    }
    .partner-file-text { font-size: 14px; font-weight: 600; color: #94aec4; margin: 6px 0 2px; }
    .partner-file-hint { font-size: 12px; color: #4a6580; margin: 0 0 4px; }
    .partner-file-name { font-size: 12px; color: #00b4e8; margin: 0; }
    #p-profile-file { display: none; }

    /* ── Submit Button ──────────────────────────────────────────── */
    .partner-submit-btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #0084b8 0%, #00a8e8 60%, #00c8ff 100%);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        padding: 14px 28px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        letter-spacing: 0.3px;
        transition: opacity 0.25s, transform 0.2s, box-shadow 0.25s;
        box-shadow: 0 6px 24px rgba(0,168,232,0.35);
        margin-top: 4px;
    }
    .partner-submit-btn:hover {
        opacity: 0.92;
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(0,168,232,0.45);
    }
    .partner-submit-btn:disabled {
        opacity: 0.55;
        cursor: not-allowed;
        transform: none;
    }

    @media (max-width: 600px) {
        .partner-modal-card { padding: 28px 20px 32px; }
        .partner-form { grid-template-columns: 1fr; }
        .partner-form-group.partner-full { grid-column: 1; }
        .partner-modal-title { font-size: 21px; }
    }
    
    
    
  /* Gala Dinner Checkbox */
.dinner-group {
    margin: 15px 0;
}

.dinner-label {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    cursor: pointer;
    color: #000 !important;
    font-size: 16px !important;
}

.dinner-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.dinner-label span {
    color: #000 !important;
    font-size: 16px !important;
    display: inline !important;
    margin: 0;
    padding: 0;
}