/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-left: #030102;
    --bg-right: #d94f9a;
    --magenta: #eb008b;
    --violet: #c04890;
    --white: #ffffff;
    --muted: #ffffff;
    --ink: #030102;
    --radius: 18px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(3, 1, 2, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(235, 0, 139, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(3, 1, 2, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo .logo {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(235, 0, 139, 0.3));
}

.nav-logo .logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(235, 0, 139, 0.5));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #eb008b, #d94f9a, #c667a8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.brand-year {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.nav-icon {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
    background: rgba(235, 0, 139, 0.1);
    border: 1px solid rgba(235, 0, 139, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 0, 139, 0.2);
}

.nav-link:hover .nav-icon {
    opacity: 1;
    transform: scale(1.1);
    color: #eb008b;
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(235, 0, 139, 0.2), rgba(217, 79, 154, 0.1));
    border: 1px solid rgba(235, 0, 139, 0.4);
    color: #fff;
}

.nav-link.active .nav-icon {
    color: #eb008b;
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #eb008b, #d94f9a);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.register-btn {
    background: linear-gradient(135deg, #eb008b, #d94f9a);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(235, 0, 139, 0.3);
}

.register-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 0, 139, 0.5);
    background: linear-gradient(135deg, #d94f9a, #c667a8);
}

.register-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.register-btn:hover i {
    transform: scale(1.1) rotate(360deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(235, 0, 139, 0.1);
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #eb008b, #d94f9a);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section - FinEdge Style Banner */
.hero {
    min-height: 50vh;
    background: transparent;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    background: transparent;
}

.fin-banner {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 40px;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: 
        radial-gradient(1200px 520px at 0% 0%, rgba(235, 0, 139, 0.3), transparent 60%),
        linear-gradient(135deg, #000000 0%, #030102 20%, #c04890 50%, #d94f9a 100%);
}

.fin-row {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 0.9fr;
    gap: 22px;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left block — Title */
.fin-left {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.finedge-logo-container {
    margin-bottom: 12px;
}

.finedge-main-logo {
    height: auto;
    width: 100%;
    max-width: 280px;
    max-height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(235, 0, 139, 0.3));
    transition: transform 0.3s ease;
}

.finedge-main-logo:hover {
    transform: scale(1.02);
}

.fin-title-top {
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 800;
    letter-spacing: 0.06em;
}

.fin-title {
    margin: 6px 0 6px;
    line-height: 1.05;
    font-weight: 900;
    font-size: clamp(26px, 3.8vw, 42px);
}

.fin-title .fin {
    color: var(--magenta);
}

.fin-title .year-2025 {
    color: var(--violet);
    font-weight: 300;
}

.fin-sub {
    color: #ffffff;
    font-weight: 500;
    font-size: clamp(12px, 1.4vw, 15px);
    opacity: 0.9;
    text-align: center;
}

/* Center block — Big headline + CTA */
.fin-center {
    text-align: left;
    padding: 18px 8px;
}

.fin-head {
    font-weight: 800;
    font-size: clamp(18px, 2.6vw, 30px);
    line-height: 1.25;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.fin-head .k2 {
    color: var(--magenta);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.fin-cta {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: 0.02em;
    font-size: clamp(13px, 1.6vw, 18px);
    color: #ffffff;
    background: linear-gradient(90deg, #ee3488, #933293);
    box-shadow: 
        0 10px 24px rgba(235, 0, 139, 0.35),
        inset 0 0 0 3px rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transform: translateZ(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    filter: saturate(1.1);
}

.fin-tag {
    width: 100%;
    margin-top: 8px;
    color: #ffffff;
    opacity: 0.95;
    font-size: clamp(11px, 1.2vw, 14px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Right block — Date & EventBy */
.fin-right {
    justify-self: end;
    display: grid;
    gap: 10px;
    align-items: center;
}

.eventby {
    justify-self: end;
    /* background: #ffffff; */
    color: var(--ink);
    border: none;
    border-radius: 16px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    min-width: 100px;
    width: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.eventby .tag {
    background: var(--magenta);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    text-transform: capitalize;
}

.eventby-logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: center;
}

.eventby-logos img {
    height:80px;
    width: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.95);
    /* padding: 0.8rem; */
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.date-card {
    background: linear-gradient(180deg, rgba(235, 0, 139, 0.15), rgba(192, 72, 144, 0.1));
    border: 1px solid rgba(235, 0, 139, 0.3);
    border-radius: 12px;
    padding: 12px 14px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    color: #fff;
}

.date-line {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.date-month-year {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    line-height: 1;
}

.date-big {
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.date-big sup {
    font-size: 0.2em;
    font-weight: 400;
    color: #fff;
    text-shadow: 0 0 8px rgba(235, 0, 139, 0.4);
    letter-spacing: 0.05em;
    margin-left: 1px;
    vertical-align: top;
    position: relative;
    top: -0.5em;
}

.date-mo {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.date-yr {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    opacity: 0.8;
}

.venue {
    background: rgba(192, 72, 144, 0.1);
    border: 1px solid rgba(192, 72, 144, 0.3);
    color: #fff;
    font-size: clamp(8px, 1vw, 12px);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
    margin-top: 6px;
}

/* FinEdge Banner Responsive */
@media (max-width: 1024px) {
    .fin-row {
        grid-template-columns: 1.1fr 1.2fr;
    }
    
    .fin-right {
        justify-self: stretch;
    }
    
    .eventby {
        justify-content: space-between;
    }
}

@media (max-width: 780px) {
    .fin-banner {
        padding: 18px;
        border-radius: 14px;
    }
    
    .fin-row {
        grid-template-columns: 1fr;
    }
    
    .fin-left {
        order: 1;
    }
    
    .fin-center {
        order: 2;
    }
    
    .fin-right {
        order: 3;
        justify-self: stretch;
    }
    
    .date-card {
        text-align: center;
    }
    
    .venue {
        text-align: center;
    }
    
    .eventby {
        align-self: start;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: -1;
    background: transparent;
}

.network-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, #eb008b 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #d94f9a 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 1.5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #475569;
}

.about-text strong {
    color: #eb008b;
    font-weight: 700;
}

/* Objectives Section */
.objectives {
    padding: 1.5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.objectives .container {
    position: relative;
    z-index: 2;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 1rem;
}

.objective-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.objective-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eb008b, #c04890);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.objective-icon i {
    font-size: 2rem;
    color: #fff;
}

.objective-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.objective-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Focus Verticals Section */
.focus-verticals {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.focus-verticals .container {
    position: relative;
    z-index: 2;
}

.focus-verticals .section-title {
    color: #fff;
}

.focus-verticals .section-subtitle {
    color: #94a3b8;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.vertical-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vertical-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eb008b, #c04890);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.vertical-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.vertical-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vertical-subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Why Attend Section */
.why-attend {
    padding: 1.5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.why-attend .container {
    position: relative;
    z-index: 2;
}

/* Simple Quote Design */
.simple-quote {
    background: #fff;
    padding: 2.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin: 2.5rem auto;
    /* max-width: 800px; */
    font-size: 1.4rem;
    font-style: italic;
    color: #334155;
    border-left: 5px solid #eb008b;
    text-align: center;
    line-height: 1.6;
    position: relative;
    transition: all 0.3s ease;
}

.simple-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-left-color: #d94f9a;
}

.simple-quote cite {
    display: block;
    text-align: center;
    margin-top: 1.2rem;
    font-weight: 600;
    color: #eb008b;
    font-style: normal;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-quote {
        padding: 2rem;
        font-size: 1.2rem;
        margin: 2rem auto;
    }
    
    .simple-quote cite {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .simple-quote {
        padding: 1.5rem;
        font-size: 1.1rem;
        margin: 1.5rem auto;
    }
}

.quote {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 600px;
    font-size: 1.2rem;
    font-style: italic;
    color: #475569;
    border-left: 4px solid #eb008b;
}

.quote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: 600;
    color: #eb008b;
}

.strategic-hub {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3rem 0;
    color: #1e293b;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.reason-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eb008b, #c04890);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reason-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.reason-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.reason-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Who Should Attend Section */
.who-attend {
    padding: 1.5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.who-attend .container {
    position: relative;
    z-index: 2;
}

.attendee-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.attendee-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.attendee-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eb008b, #c04890);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.attendee-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.attendee-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.attendee-card p {
    color: #64748b;
    line-height: 1.6;
}

/* What to Expect Section */
.what-expect {
    padding: 4rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.what-expect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    z-index: 1;
}

.what-expect .container {
    position: relative;
    z-index: 2;
}

.expect-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.expect-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(235, 0, 139, 0.1);
    min-height: 280px;
}

.expect-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eb008b, #c04890);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expect-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.expect-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.expect-card p {
    color: #64748b;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Mobile responsiveness for expect section */
@media (max-width: 1024px) {
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .what-expect {
        padding: 3rem 0;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expect-card {
        padding: 2rem 1.5rem;
        min-height: 260px;
    }
}

/* Speakers and Agenda Sections */
.speakers, .agenda {
    padding: 1.5rem 0;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.speakers .container, .agenda .container {
    position: relative;
    z-index: 2;
}

.speakers .section-subtitle,
.agenda .section-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 500;
}

/* Speakers CTA Styles */
.speakers-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #eb008b, #c04890);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(235, 0, 139, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pdf-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(235, 0, 139, 0.4);
    filter: saturate(1.1);
}

.pdf-download-btn i {
    font-size: 1.3rem;
    color: #ffffff;
}

.announcement-text {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.speaker-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.speaker-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #cbd5e1;
}

.speaker-info {
    padding: 1.5rem;
    text-align: center;
}

.speaker-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.speaker-title {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.speaker-company {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Registration CTA Section */
.registration-cta {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.registration-cta .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.register-btn-large {
    background: linear-gradient(90deg, #eb008b, #c04890);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(235, 0, 139, 0.3);
}

.register-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4);
}

/* Contact Section */
.contact {
    padding: 1.5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eb008b, #c04890);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: #fff;
}

.contact-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.contact-card p {
    color: #eb008b;
    line-height: 1.8;
}

.contact-card a {
    color: #eb008b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #c04890;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #030102;
    color: #94a3b8;
    padding: 0.75rem 0 0.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-main-logo {
    height: 120px;
    width: auto;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-main-logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-tagline {
    color: #eb008b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.footer-copy {
    margin: 0.75rem 0 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.footer-credit {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logos-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.footer-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-logo-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.footer-logo-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(235, 0, 139, 0.2);
}

.footer-logo {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .reasons-grid,
    .attendee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header {
        padding: 0;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo-text {
        display: none;
    }
    
    .nav-logo .logo {
        height: 35px;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(3, 1, 2, 0.98), rgba(15, 5, 10, 0.98));
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 120px 20px 40px;
        gap: 0;
        justify-content: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 8px 0;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }
    
    .nav-link {
        padding: 20px 30px;
        margin: 0 20px;
        border-radius: 15px;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover {
        background: rgba(235, 0, 139, 0.2);
        border: 1px solid rgba(235, 0, 139, 0.4);
        transform: translateY(-3px) scale(1.02);
    }
    
    .nav-icon {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .nav-link span {
        display: block;
        margin-top: 5px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Add a mobile register button in menu */
    .nav-menu::after {
        content: '';
        display: block;
        margin-top: 40px;
        padding: 15px 30px;
        background: linear-gradient(135deg, #eb008b, #d94f9a);
        color: white;
        border-radius: 25px;
        font-weight: 600;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    /* Body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .register-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo .logo {
        height: 30px;
    }
    
    .hamburger .bar {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu {
        padding: 100px 15px 30px;
    }
    
    .nav-link {
        padding: 18px 25px;
        margin: 0 10px;
        font-size: 1rem;
    }

    
    .banner-strip {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .left-brand {
        order: 1;
        justify-content: center;
    }
    
    .finedge-branding {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .finedge-logo {
        height: 50px;
    }
    
    .finedge-title {
        font-size: 1.5rem;
    }
    
    .center-content {
        order: 2;
    }
    
    .main-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .right-info {
        order: 3;
    }
    
    .organizers {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .org-logo {
        height: 35px;
    }
    
    .date-large {
        font-size: 2rem;
    }
    
    .register-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pdf-download-btn {
        padding: 14px 24px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .announcement-text {
        font-size: 1rem;
    }
    
    .objectives-grid,
    .verticals-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .attendee-grid,
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-left {
        min-width: unset;
    }
    
    .footer-main-logo {
        height: 90px;
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }
    
    .footer-logos {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .objectives-grid,
    .verticals-grid,
    .reasons-grid,
    .attendee-grid,
    .expect-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .finedge-logo {
        height: 55px;
        max-width: 200px;
    }
    
    .footer-main-logo {
        height: 80px;
        filter: brightness(0) invert(1);
        opacity: 0.95;
    }
    
    .footer-logo {
        height: 60px;
        filter: brightness(0) invert(1);
        opacity: 0.9;
    }
    
    .footer-logo-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .pdf-download-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .pdf-download-btn i {
        font-size: 1.1rem;
    }
    
    .objective-card,
    .reason-card,
    .attendee-card,
    .expect-card,
    .contact-card {
        padding: 1.5rem;
    }
}

/* Special Accent Elements */
.accent-gradient {
    background: linear-gradient(90deg, #ee3488, #933293);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accent-bg {
    background: linear-gradient(135deg, #eb008b, #933293);
}

.accent-border {
    border-image: linear-gradient(90deg, #eb008b, #933293) 1;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}