html{overflow-x: hidden;}
  @font-face {
    font-family: 'BDO Grotesk';
    src: url('fonts/BDOGrotesk-Light.woff2') format('woff2'),
         url('fonts/BDOGrotesk-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'BDO Grotesk';
    src: url('fonts/BDOGrotesk-Regular.woff2') format('woff2'),
         url('fonts/BDOGrotesk-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'BDO Grotesk';
    src: url('fonts/BDOGrotesk-Medium.woff2') format('woff2'),
         url('fonts/BDOGrotesk-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'BDO Grotesk';
    src: url('fonts/BDOGrotesk-SemiBold.woff2') format('woff2'),
         url('fonts/BDOGrotesk-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'BDO Grotesk';
    src: url('fonts/BDOGrotesk-Bold.woff2') format('woff2'),
         url('fonts/BDOGrotesk-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'BDO Grotesk';
    src: url('fonts/BDOGrotesk-ExtraBold.woff2') format('woff2'),
         url('fonts/BDOGrotesk-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --purple-deep: #1A0A3B;
    --purple-dark: #2B0F6B;
    --purple-main: #5B2BDB;
    --purple-bright: #7B3FE4;
    --purple-light: #EDE8FF;
    --purple-lavender: #F0EAFF;
    --teal: #00D4AA;
    --teal-light: #C8F5EE;
    --mint-bg: #D4F5EE;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --text-dark: #111111;
    --text-mid: #444444;
    --text-light: #777777;
    --border: #E0E0E0;
    --font-head: 'BDO Grotesk', sans-serif;
    --font-body: 'BDO Grotesk', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--text-dark); background: var(--white); overflow-x: hidden; }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 60px; width: 100%; }

  /* ── NAV ── */
  .menu-toggle{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,4,30,0.96);
    backdrop-filter: blur(12px);
    height: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 60px;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon svg { width: 20px; height: 20px; fill: white; }
  .nav-logo-text { display: flex; flex-direction: column; }
  .nav-logo-text span:first-child { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: white; letter-spacing: 0.5px; }
  .nav-logo-text span:last-child {     margin-top: 4px;font-size: 10px; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; }
  .nav-date { font-size: 11px; color: rgba(255,255,255,0.5); white-space: nowrap; }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color 0.2s; }
  .nav-links a:hover { color: white; }
  .nav-cta { display: flex; gap: 10px; }
  .btn-outline-white {
    border: 1.5px solid rgba(255,255,255,0.5); color: white; background: transparent;
    padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
    font-family: var(--font-body);
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); }
  .btn-solid-purple {
        background: linear-gradient(93.83deg, #1A1423 -13.77%, #6320EE 41.93%, #6CDDBE 97.62%); color: white;     border: 1px solid #E6E6E6;
    padding: 9px 22px; border-radius: 50px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
    font-family: var(--font-body);    line-height: 22px;
  }
  a.btn-solid-white {
    border: 1px solid #E6E6E6;
    box-shadow: 0px 0px 0px 2px #FFFFFF1F;
    background: #ECECEC;
    line-height: 22px;
    letter-spacing: -0.12px;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: var(--font-body);
    color: #171717;
}
a.btn-solid-white:hover{color:#fff; background: var(--purple-main);}
  .btn-solid-purple:hover { background: #ECECEC;color: #171717; }

  /* ── HERO ── */
  .hero {
    position: relative; min-height: 100vh;
    background: linear-gradient(180deg, #0D0520 0%, #1a0a3b 40%, #0e1a2e 100%);
    display: flex; flex-direction: column;
    overflow: hidden;border-radius: 0 0 50px 50px;
  }
  .hero-bg {
     position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(
            180deg,
            rgba(11, 11, 11, 0) 2.93%,
            rgba(12, 12, 12, 0.5) 51%,
            #0B0B0B 100%
        ),
        url(../assets/hero.png);
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
  }
  .hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(10,4,30,0.3) 0%, rgba(10,4,30,0.5) 50%, rgba(10,4,30,0.92) 85%, rgba(10,4,30,1) 100%);
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto; padding: 160px 60px 60px;
    flex: 1; width: 100%;
  }
  .hero-title { max-width: 560px; }
  .hero-date-tag {
    font-size: 15px; font-weight: 600; color:#fff;
    margin-bottom: 18px; letter-spacing: 0.3px;
  }
  .hero-title {
    font-family: var(--font-head); font-size: 64px; font-weight: 800;
    color: white; line-height: 1.1; margin-bottom: 36px;
  }
  .hero-title .highlight { color: #A78BFA; }
  .hero-buttons { display: flex; gap: 14px; margin-bottom: 48px; }
  .btn-white-solid {
    background: white; color: var(--text-dark); border: none;
    padding: 13px 28px; border-radius: 50px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; text-decoration: none; font-family: var(--font-body);
  }
  .btn-white-solid:hover { background: #f0f0f0; }
  .btn-purple-outline {
    background: transparent; color: white; border: 2px solid white;
    padding: 11px 26px; border-radius: 50px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; text-decoration: none; font-family: var(--font-body);
  }
  .btn-purple-outline:hover { background: rgba(255,255,255,0.1); }
  .hero-colocated { margin-bottom: 10px; }
  .hero-colocated p { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
  .colocated-logos { display: flex; gap: 14px; }
  .colocated-badge {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px; padding: 8px 14px;
    display: flex; align-items: center; gap: 8px;
  }
    .stats-bar img {
    border-radius: 0 0 50px 50px;width: 100%;
}
  .colocated-badge .badge-icon {
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 11px;
  }
  .colocated-badge span { font-size: 11px; font-weight: 600; color: white; line-height: 1.2; }
  .hero-tagline { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 16px; }

  /* Stats bar */
  .stats-bar {
    position: relative; z-index: 2;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;    justify-content: center;
  }
  .stat-item {
    flex: 1; padding: 22px 0; text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
  }
  .stat-item:last-child { border-right: none; }
  .stat-number { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: white; }
  .stat-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }

  /* ── SECTION UTILS ── */
  .section { padding: 80px 0; }
  .section-sm { padding: 60px 0; }
  .section-title { font-family: var(--font-head); font-size: 36px; font-weight: 800; text-align: center; margin-bottom: 36px; }
  .section-subtitle { font-size: 14px; color: var(--purple-main); font-weight: 600; text-align: center; margin-bottom: 8px; letter-spacing: 0.3px; }
  .section-desc { font-size: 15px; color: var(--text-mid); text-align: center; max-width: 600px; margin: 0 auto 40px; }

  /* ── CXO SECTION ── */
  .cxo-section {
        background: var(--purple-lavender);
    border-radius: 100px;
    margin: 0 auto;
    padding: 50px 60px 40px;
    border: 1px solid #6320EE80;
  }
  .cxo-section .section-title { margin-bottom: 36px; }
  .logo-ticker-wrap { overflow: hidden; position: relative; }
  .logo-ticker-wrap::before, .logo-ticker-wrap::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  }
  .logo-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--purple-lavender), transparent); }
  .logo-ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--purple-lavender), transparent); }
  .logo-ticker { display: flex; gap: 56px; animation: ticker 100s linear infinite; width: max-content; align-items: center; }
  .logo-ticker-row { margin-bottom: 24px; }
  .logo-ticker-row:last-child { margin-bottom: 0; }
  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .logo-ticker-2 { animation-direction: reverse; animation-duration:100s; }
  .ticker-logo-img {
      height: auto;
    width: 95px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.75;
    filter: grayscale(20%);
    transition: opacity 0.25s, filter 0.25s;
    flex-shrink: 0;
  }
  .ticker-logo-img:hover { opacity: 1; filter: grayscale(0%); }

  /* ── THEMES ── */
  .themes-section {    padding: 30px 0;
    background: #f7f0ff;
    margin-bottom: 20px; }
  .themes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
  .theme-card {
    border-radius: 18px; padding: 28px; position: relative; overflow: hidden;
    min-height: 320px; display: flex; flex-direction: column;
  }
  .theme-card-dark { background: #1A1A2E; color: white; }
  .theme-card-purple { background: linear-gradient(135deg, #4A0FC4, #7B3FE4); color: white; }
  .theme-card-blue { background: #0D1B3E; color: white; }
  .theme-card-teal { background: #0D2A2A; color: white; }
  .theme-icon {
    width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 18px;
  }
  .theme-card h3 { font-family: var(--font-head); font-size: 17px; font-weight: 700; margin-bottom: 10px; }
  .theme-card p { font-size: 12.5px; opacity: 0.75; line-height: 1.55; margin-bottom: 16px; }
  .theme-tag { display: inline-block; background: rgba(255,255,255,0.15); border-radius: 20px; padding: 4px 12px; font-size: 11px; font-weight: 600; margin: 3px 3px 3px 0; }
  .theme-collapse { font-size: 11.5px; opacity: 0.6; margin-bottom: 12px; cursor: pointer; }
  .theme-list { font-size: 11.5px; opacity: 0.75; padding-left: 14px; margin-bottom: 14px; line-height: 1.8; }
  .theme-key-label { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; opacity: 0.6; text-transform: uppercase; margin-bottom: 8px; }
  .themes-cta { text-align: center; }
  .btn-purple-solid {
        background: linear-gradient(93.83deg, #1A1423 -13.77%, #6320EE 41.93%, #6CDDBE 97.62%);
    color: white;
    border: 1px solid #E6E6E6;
    padding: 14px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: var(--font-body);
    line-height: 22px;
  }
  .btn-purple-solid:hover { background: var(--purple-bright); transform: translateY(-1px); }

  /* ── WELCOME TABS ── */
  .welcome-section { padding: 30px; border: 1px solid #6320EE; border-radius: 100px; margin: 0 auto 20px;  }
  .tabs { display: flex; gap: 40px; justify-content: center; margin-bottom: 40px; border-bottom: 2px solid var(--border); padding-bottom: 0; }
  .tab {
    font-family: var(--font-head); font-size: 16px; font-weight: 700;
    color: var(--text-light); cursor: pointer; padding-bottom: 14px;
    border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s;
  }
  .tab.active { color: var(--purple-main); border-bottom-color: var(--purple-main); }
  .attendee-grid { display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px; }
  .attendee-img-card { border-radius: 16px; overflow: hidden; position: relative; }
  .attendee-img-card img { width: 100%; height: 301px; object-fit: cover; display: block; }
  .attendee-img-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 16px; color: white;
  }
  .attendee-img-caption h4 { font-family: var(--font-head); font-size: 20px; font-weight: 700; }
  .attendee-img-caption p { font-size: 14px; opacity: 0.8; margin-top: 2px; }
  .welcome-cta { text-align: center; margin-top: 32px; }

  /* ── INNOVATION SECTION ── */
  .innovation-section {
    background: linear-gradient(135deg, #1A0A3B 0%, #2D1065 50%, #1A0A3B 100%);
    padding: 80px 0; position: relative; overflow: hidden;
  }
  .innovation-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .innovation-section .section-title { color: white; }
  .innovation-section .section-desc { color: rgba(255,255,255,0.65); }
  .session-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
  .session-card {
        background: linear-gradient(180deg, #FFFFFF 78.77%, #6320EE 130.35%); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 24px; backdrop-filter: blur(8px);
    transition: all 0.2s;
  }
  .session-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
  .session-tag { font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #A78BFA; margin-bottom: 12px; }
  .session-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: #0F0F0F; line-height: 1.4; margin-bottom: 10px; }
  .session-card .speaker-info { font-size: 16px; color:#818181; margin-bottom: 16px; }
  .session-see { font-size: 12px; font-weight: 600; color: #A78BFA; text-decoration: none; float: right; }
  .innovation-cta { text-align: center;position: relative; }
  .btn-white-outline {
    background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5);
    padding: 13px 32px; border-radius: 50px; font-size: 14px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; text-decoration: none; font-family: var(--font-body);
  }
  .session-card:hover h3 {color:#fff;}
  .btn-white-outline:hover { background: rgba(255,255,255,0.1); }

  /* ── GALLERY ── */
  section.gallery-section img {
    width: 1160px;
}
  .gallery-section { padding: 60px 0; background: linear-gradient(180deg, #F7F0FF, white); }
  .gallery-grid {
    display: grid;
    grid-template-columns: 140px 1fr 1fr 160px 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    max-width: 1000px; margin: 0 auto;
  }
  .gallery-item { border-radius: 14px; overflow: hidden; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .gallery-item.tall { grid-row: 1 / 3; }
  .gallery-item.video-card {
    background: #1A0A3B; display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 20px; position: relative;
  }
  .play-btn {
    width: 52px; height: 52px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; margin-bottom: 12px; transition: all 0.2s;
  }
  .play-btn:hover { background: rgba(255,255,255,0.1); }
  .play-btn svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
  .video-card h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: white; text-align: center; }

  /* ── SPEAKERS ── */

  .speaker-grid.abu-dhabi {
  grid-template-columns: repeat(7, 1fr);
    margin: 40px auto;
    max-width: 1040px;
}
  .speakers-section {    text-align:center; background: linear-gradient(180deg, white, var(--purple-lavender) 30%, white);
    padding: 30px;
    border: 1px solid #6320EE;
    border-radius: 100px;
    margin: 0 auto 20px; }
  .speakers-carousel { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 32px; }
  .speaker-card {
    text-align: center; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--border); padding-bottom: 16px;
    background: white; transition: all 0.2s;
  }
  .speaker-card:hover { box-shadow: 0 8px 30px rgba(91,43,219,0.15); transform: translateY(-2px); }
  .speaker-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
  .speaker-card h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; padding: 12px 12px 4px; }
  .speaker-card p { font-size: 11.5px; color: var(--text-mid); padding: 0 12px; line-height: 1.4; }
  .speakers-cta { text-align: center; }

  /* Full speaker grid */
  .speaker-grid { display: grid; grid-template-columns: repeat(10, 1fr); gap: 10px; margin: 40px 0; }
  .speaker-mini {background: linear-gradient(0deg, rgba(243, 244, 246, 0.51), rgba(243, 244, 246, 0.51)), linear-gradient(180deg, #FFFFFF 78.77%, #6320EE 130.35%);
    text-align: center; border-radius: 12px; border: 1px solid var(--border);
    padding: 12px 6px; transition: all 0.2s;
  }
  .speakers-section .container {
    max-width: 100%;
    padding: 0;
}
  .speaker-mini:hover { border-color: var(--purple-main); box-shadow: 0 4px 16px rgba(91,43,219,0.1); }
  .speaker-mini img { width: 113px;
    height: 132px;    box-shadow: 0px 0px 8px #31e0b329; border-radius:5px;
    object-fit: cover;
    margin: 0 auto 8px;
    display: block; }
  .speaker-mini h5 { font-size: 12px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; }
  .speaker-mini p { font-size: 11px; color: var(--text-light); line-height: 1.3; }

  /* ── TICKETS ── */
  .tickets-section {
    background:linear-gradient(180deg, #6320EE 0%, #1A1423 60.1%);
    padding: 54px 10px;
  }
  .tickets-section .section-title { color: white; }
  .tickets-section .section-subtitle { color: var(--teal); }
  .tickets-grid { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 16px; margin-top: 48px; }
  .ticket-card {
    background: #1118274D; border:0.67px solid #355aff73;
    border-radius: 20px; padding: 32px; color: white; position: relative;
    transition: all 0.2s;
  }
  .ticket-card:hover { transform: translateY(-3px); }
  .ticket-card.featured {
    background: #381E6D3B; border-color: var(--purple-bright);
    box-shadow: 0 0 40px rgba(123,63,228,0.3);
  }
  .ticket-badge {
    position: absolute; top: -1px; right: 24px;
    background: var(--teal); color: #0a2a2a; font-size: 10px; font-weight: 800;
    padding: 6px 14px; border-radius: 0 0 10px 10px; letter-spacing: 1px;
  }
  .ticket-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.6; margin-bottom: 10px; }
  .ticket-name { font-family: var(--font-head); font-size: 26px; font-weight: 800; margin-bottom: 6px; }
  .ticket-tagline { font-size: 13px; opacity: 0.65; margin-bottom: 20px; }
  .ticket-price-old { font-size: 14px; opacity: 0.5; text-decoration: line-through; margin-bottom: 2px; }
  .ticket-price { font-family: var(--font-head); font-size: 40px; font-weight: 800; margin-bottom: 24px; }
  .ticket-features { list-style: none; margin-bottom: 24px; }
  .ticket-features li { font-size: 13px; opacity: 0.8; padding: 5px 0; padding-left: 22px; position: relative; }
  .ticket-features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }
  .ticket-schedule { font-size: 10.5px; opacity: 0.5; margin-bottom: 20px; }
  .ticket-schedule div { display: flex; justify-content: space-between; padding: 4px 0; }
  .btn-ticket-outline {
    width: 100%; padding: 14px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.35);
    background: transparent; color: white; font-size: 14px; font-weight: 700;
    cursor: pointer; font-family: var(--font-body); transition: all 0.2s; text-align: center; display: block; text-decoration: none;
  }
  .btn-ticket-outline:hover { background: rgba(255,255,255,0.1); }
  .btn-ticket-vip {
    width: 100%; padding: 14px; border-radius: 50px;
    background: linear-gradient(135deg, var(--purple-main), var(--teal));
    color: white; font-size: 14px; font-weight: 700;
    border: none; cursor: pointer; font-family: var(--font-body); transition: all 0.2s; display: block; text-decoration: none; text-align: center;
  }
  .btn-ticket-vip:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ── WHERE INNOVATION ── */
  .where-section {     padding: 40px 10px;
    background: linear-gradient(135deg, #C8F5EE 0%, #E8F5F0 50%, #D4EEF5 100%);
    border-radius: 100px;
    margin-top: 20px; }
  .where-section .section-title { text-align: left; margin-bottom: 32px; font-size: 42px; }
  .where-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .where-card { border-radius: 18px; overflow: hidden; }
  .where-card-img { height: 180px; overflow: hidden; position: relative; }
  .where-card-img img { width: 100%; height: 100%; object-fit: cover;border-radius: 20px; }
  .where-card-body {    border-radius: 20px;
    padding: 18px;
    border: 1px solid transparent;
    background: 
        linear-gradient(180deg, #FFFFFF 82.69%, #C5A9FF 100%) padding-box,
        linear-gradient(93.35deg, #6CDDBE 0.17%, #6320EE 99.83%) border-box;
    margin-top: 15px; }
  .where-card-body h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
  .where-card-body p { font-size: 12.5px; color: var(--text-mid); line-height: 1.5; }

  /* ── EVENT ESSENTIALS ── */
  .essentials-section {
      margin: 20px auto 20px;
    border-radius: 100px;
    padding: 40px 10px 40px;
    max-width: 100%;
    background: #F8F8F8;
    border: 1px solid #6320EE;
  }
  .essentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;max-width: 1220px;
    margin: auto; }
  .essential-img { border-radius: 14px; overflow: hidden; height: 200px; }
  .essential-img img { width: 100%; height: 100%; object-fit: cover; }
  .essential-card {
    border-radius: 14px; padding: 22px; color: white; 
    display: flex; flex-direction: column; justify-content: space-between;
  }
  .essential-card.purple { background: var(--purple-main); }
  .essential-card.dark { background: #1A1A2E; }
  .essential-card h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; margin-bottom: 6px; }
  .essential-card p { font-size: 11.5px; opacity: 0.75; margin-bottom: 16px; }
  .btn-download {
    background: white; color: var(--text-dark); border: none;
    padding: 9px 16px; border-radius: 50px; font-size: 12px; font-weight: 700;
    cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
    text-decoration: none; width: fit-content; font-family: var(--font-body);
    transition: all 0.2s;
  }
  .btn-download:hover { background: #f0f0f0; }

  /* ── TESTIMONIALS ── */
  .testimonials-section {padding: 40px 0;
    background: linear-gradient(93.35deg, #6CDDBE 0.17%, #F3FCFA 99.83%); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
  .testimonial-card {
   border-radius: 16px;
    padding: 28px;
    transition: all 0.2s;
    border: 1px solid #6320EE;
    background: #fff;
  }
  .testimonial-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }
  .testimonial-org { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }
  .testimonial-quote { font-family: var(--font-head); font-size: 16px; font-weight: 700; margin-bottom: 14px; color: var(--text-dark); }
  .testimonial-text { font-size: 13px; color: var(--text-mid); line-height: 1.65; }
  .testimonial-author {
        border: 1px solid #6320EE;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
  }
  .testimonial-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
  .testimonial-author h5 { font-size: 13px; font-weight: 700; }
  .testimonial-author p { font-size: 11.5px; color: var(--text-light); }

  /* ── GET INVOLVED ── */
  .involved-section { padding: 40px 0; background: var(--purple-lavender); }
  .involved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .involved-card { border-radius: 18px; overflow: hidden; }
  .involved-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
  .involved-btn {
    display: block; width: 100%; padding: 15px; text-align: center;
    border: 2px solid var(--purple-main); border-radius: 50px; margin-top: 14px;
    font-size: 14px; font-weight: 700; color: var(--text-dark);
    text-decoration: none; transition: all 0.2s; font-family: var(--font-body);
    background: white;
  }
  .involved-btn:hover { background: var(--purple-main); color: white; }
  .involved-btn .arrow { margin-left: 6px; }

  /* ── ONE TICKET ── */
  .one-ticket-section {
    background: linear-gradient(135deg, #3B0F9E, #5B2BDB, #2B0F6B);
    padding: 60px 0;
    border-radius: 100px;
  }
  section.sponsors-section .container {
    padding: 0;
    max-width: 1220px;
}section.sponsors-section .container img {
    width: 100%;
}
  .one-ticket-inner { display: flex; align-items: center; gap: 60px; }
  .one-ticket-content { flex: 1; }
  .one-ticket-content h2 { font-family: var(--font-head); font-size: 42px; font-weight: 800; color: white; margin-bottom: 20px; }
  .one-ticket-content p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 14px; }
  .one-ticket-graphic { flex-shrink: 0; width: 400px; }
  .one-ticket-graphic img {
    width: 390px;
}
  .ticket-graphic {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.25); border-radius: 16px; padding: 28px;
    text-align: center; backdrop-filter: blur(8px);
  }
  .ticket-graphic-admit { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: rgba(255,255,255,0.8); margin-bottom: 8px; }
  .ticket-graphic-date { font-size: 13px; color: rgba(255,255,255,0.5); }

  /* ── SPONSORS ── */
  .sponsors-section { padding: 40px 0; background: white; text-align:center;}
  .sponsors-box {
    border: 1.5px solid #C0A0F0; border-radius: 20px; padding: 40px;
    margin-bottom: 20px;
  }
  .sponsors-logos { display: flex; flex-wrap: wrap; gap: 20px 30px; align-items: center; justify-content: center; }
  .sponsor-logo {
    font-family: var(--font-head); font-size: 12.5px; font-weight: 700;
    color: var(--text-dark); opacity: 0.7; white-space: nowrap; transition: opacity 0.2s;
  }
  .sponsor-logo:hover { opacity: 1; }
  .sponsors-cta { text-align: center; margin-top: 40px; }
.sponsors-section img{margin-bottom:20px;}
  /* ── FOOTER ── */
  .footer-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.footer-middle {
    display: flex;
    justify-content: space-between;    padding-bottom: 20px;
}
.footer-left img{
    display: block;
    max-width: 160px;
    height: auto;
}
  .footer-top a {
    color: #fff;
}
  footer {
    background: #0D0520; color: white; padding: 48px 0 32px;
    border-radius: 32px 32px 0 0;
  }
  .footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 60px; }
  .footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-logo-block { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
  .footer-logo-icon {
    width: 44px; height: 44px; background: var(--purple-main);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
  }
  .footer-logo-text span:first-child { display: block; font-family: var(--font-head); font-weight: 700; font-size: 15px; color: white; }
  .footer-logo-text span:last-child { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 1px; text-transform: uppercase; }
  .app-buttons { display: flex; gap: 12px; margin-top: 8px; }
  .app-btn {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px; padding: 9px 16px;
    display: flex; align-items: center; gap: 8px; text-decoration: none;
    transition: all 0.2s;
  }
  .app-btn:hover { background: rgba(255,255,255,0.15); }
  .app-btn-text span:first-child { display: block; font-size: 9px; color: rgba(255,255,255,0.5); }
  .app-btn-text span:last-child { display: block; font-size: 12.5px; font-weight: 700; color: white; }
  .footer-nav-links { display: flex; gap: 24px; font-size: 14px; color: rgba(255,255,255,0.7); }
  .footer-nav-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
  .footer-nav-links a:hover { color: white; }
  .footer-emails { display: flex; gap: 24px; margin-bottom: 32px; }
  .footer-emails a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
  .footer-emails a:hover { color: white; }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  }
  .footer-legal { display: flex; gap: 20px; }
  .footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
  .footer-legal a:hover { color: white; }
  .footer-copyright { font-size: 12px; color: rgba(255,255,255,0.3); }
  .footer-copyright-bar { text-align: center; font-size: 12px; color:#fff; padding-top: 21px; }
  .footer-social { display: flex; gap: 16px; }
  .social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px;
    transition: all 0.2s;
  }
  .social-icon:hover { background: rgba(255,255,255,0.1); color: white; }
  .footer-organizer { font-size: 12px; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 6px; }

  /* ── SCROLL ANIMATIONS ── */
  .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }


  /*Main page*/
.main-home .hero{border-radius:0;}
.main-title {
    font-family: var(--font-head);
    font-size: 60px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 36px;
}
.main-bg::after{
   
    background: linear-gradient(to bottom, rgba(10, 4, 30, 0.3) 0%, rgba(10, 4, 30, 0.5) 50%, rgb(0 0 0 / 92%) 85%, rgba(10, 4, 30, 1) 100%) !important;
}
.main-home nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    height: 64px;
    border-bottom: 0;
}

.main-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
  max-width:1400px;
  margin:0 auto;
}

.main-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 275px;
    text-align: center;
    width: 524px;
    object-fit: cover;
    vertical-align: middle;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-image: url(../assets/riyadh-home.webp); border:2px solid rgba(255,255,255,0.18);
  transition:0.4s ease;
   box-shadow:
    0 0 12px rgba(255,255,255,0.10),
    0 0 25px rgba(138,43,226,0.18);
}

.main-card.abu{ background-image: url(../assets/abu-dhabi-home.webp); }

.main-card.abu:hover::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.103);   /* dark overlay */
    z-index: 1;
}
.main-card:hover{
  transform:translateY(-8px);
  border:2px solid rgba(255,255,255,0.45);

  /* Hover Glow */
  box-shadow:
    0 0 18px rgba(255,255,255,0.30),
    0 0 35px rgba(138,43,226,0.45),
    0 0 60px rgba(0,191,255,0.35);
}
.card-text{
  position: absolute;
  bottom: 20px;   /* bottom spacing */
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 23px;
    font-weight: 500;
    line-height: 16px;

}
.main-card.abu .card-text{ 
    z-index: 2;}

/*Status bar*/
.statsmain{  background:#000;
    border-bottom-left-radius:55px;
    border-bottom-right-radius:55px;position: relative;}
.stats-bar{
      margin: 0 auto;
    padding:38px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;max-width: 1400px;
    width: 100%;
    
}

.stat-box{
    display:flex;
    align-items:center;
    gap:18px;
    color:#fff;
}

.number{
    font-size:32px;
    font-weight:800;
    line-height:1;
    letter-spacing:-2px;
}

.label{
    font-size:18px;
    font-weight:500;
    text-transform:uppercase;
    line-height:1.1;
}

/* Tablet */
@media(max-width:991px){

.stats-bar{
    justify-content:center;
    border-radius:35px;
    padding:30px 25px;grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        display: grid;
}

.number{
    font-size:20px;
}

.label{
    font-size:14px;
}

}

/* Mobile */
@media(max-width:576px){

.stats-bar{
    flex-direction:column;
    align-items:flex-start;
    gap:22px;
    border-radius:25px;
}

.stat-box{
    gap:12px;
}



}

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .themes-grid { grid-template-columns: repeat(2, 1fr); }
    .speaker-grid { grid-template-columns: repeat(6, 1fr); }
    .tickets-grid { grid-template-columns: 1fr; max-width: 420px; margin: 48px auto 0; }
  }
  @media(max-width:767px){section.gallery-section img {
    width: 100%;
}}
@media(max-width:991px){

  .menu-toggle{
    display:block;
  }
 .nav-links{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#111;   /* menu background */
    padding:20px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    border-top:1px solid rgba(255,255,255,0.08);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    width:100%;
    display:block;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,0.08);
    color:#fff;
    font-size:16px;
  }

  .nav-links a:last-child{
    border-bottom:none;
  }
.nav-inner {padding:0 20px;    max-width: 100%;}
 }
 section.one-ticket-section {
    margin-top: 20px;
}
@media (max-width: 600px) {
.sponsors-section {
    padding: 40px 20px;}
.cxo-section, .welcome-section, .speakers-section , .where-section, .essentials-section, .one-ticket-section{ border-radius: 40px;}
.speakers-section {
    padding: 30px 20px;}
.essentials-section{padding:40px 20px;}
.attendee-grid {
    grid-template-columns: 1fr;}
.hero {
       min-height: auto;}
 .main-home .hero {
        min-height: 100vh;
    }
    .card-text {
    
    line-height: 27px;
}
    .themes-grid {
        grid-template-columns: repeat(1, 1fr);
    }
.footer-inner {
    padding: 0 20px;
}
section.sponsors-section .container, .footer-inner {
    max-width: 100%;
}
.essentials-grid {    
    grid-template-columns: repeat(2, 1fr);}
.session-cards, .where-cards, .testimonials-grid, .one-ticket-inner, .footer-top, .footer-middle, .involved-grid{
    display: block;}
.session-card, .where-card,.involved-card, .session-card {margin-bottom: 20px;}
.testimonial-card {margin-top: 30px;}
    .speaker-grid,   .speaker-grid.abu-dhabi {
         grid-template-columns: repeat(2, 1fr);
    }.nav-cta{display:none;}
	.hero-title {
    font-size: 40px;}
	.hero-content {   
    padding: 160px 20px 60px;}
	.section-title ,.one-ticket-content h2{
  
    font-size: 28px !important;}
	.cxo-section {
        padding: 20px 40px;}
		.container{padding-right:20px;; padding-left:20px;}
		.attendee-grid{padding:0;}
		.welcome-section {
    padding: 30px 20px;}
	.innovation-section{padding:40px 0;}
    .essential-card {
       padding: 15px;}
       a.btn-solid-white {
        padding: 8px 10px;}
        .main-title {  
    font-size: 35px !important;}
    .main-cards {display: block;}
    .main-card {
    width: 100%;
    height: 200px;margin-bottom: 20px;
}

}
