﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Hero Animation Keyframes */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Hero Animation Classes */
  .hero-badge {
    animation: fadeInUp 0.8s ease-out 0.2s both, heroBadgeFloat 3s ease-in-out infinite 2s;
  }
  
  @keyframes heroBadgeFloat {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  .hero-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  
  .hero-description {
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }
  
  .hero-actions {
    animation: fadeInUp 0.8s ease-out 0.8s both;
  }
  
  .hero-info {
    animation: fadeIn 1s ease-out 1s both;
  }
  
  .hero-info .info-item:first-child {
    animation: slideInLeft 0.6s ease-out 1.2s both;
  }
  
  .hero-info .info-item:last-child {
    animation: slideInRight 0.6s ease-out 1.2s both;
  }
  
  /* Button hover animations */
  .hero-actions .btn {
    transition: all 0.3s ease;
  }
  
  .hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }
  
  .hero-actions .btn-primary:hover {
    background-color: #9e8a5e;
    transform: translateY(-2px);
  }
  
  .hero-actions .btn-outline:hover {
/*     background-color: rgba(255, 255, 255, 0.1); */
    transform: translateY(-2px);
  }
  
  body {
    font-family: 'Cairo', 'IBM Plex Sans Arabic', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Font Classes */
  .font-cairo {
    font-family: 'Cairo', sans-serif;
  }
  
  .font-ibm {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
  }

  .fas,
  .fab,
  .far {
    display: inline-block;
    width: 1.1em;
    min-width: 1.1em;
    text-align: center;
  }
  
  /* Typography improvements with Cairo */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
  }
  
  .section-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
  }
  
  .hero-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
  }
  
  .brand-name {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
  }
  
  /* Button typography */
  .btn {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
  }
  
  /* Form typography */
  .form-label,
  .form-input,
  .form-select {
    font-family: 'Cairo', sans-serif;
  }
  
  /* Navigation typography */
  .nav-link {
    font-family: 'Cairo', sans-serif;
    font-weight: 500;
  }
  
  /* Video and media typography */
  .video-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
  }
  
  .video-description {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
  }
  
  /* Counter typography */
  .counter-label {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
  }
  
  .counter-description {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
  }
  
  /* Benefit typography */
  .benefit-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
  }
  
  .benefit-description {
    font-family: 'Cairo', sans-serif;
    font-weight: 400;
  }
  
  /* Container */
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .container {
      padding: 0 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  }
  
  /* Header */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    direction: ltr;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.95);
    box-shadow: 0 0.5rem 1.5rem rgba(15, 23, 42, 0.05);
  }
  
  .header-content {
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    direction: ltr;
  }
  
  @media (min-width: 1024px) {
    .header-content {
      height: 5rem;
    }
  }
  
  /* Brand */
  .brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    direction: ltr;
    min-width: 0;
  }
  
  .brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(25, 32, 128, 0.08);
    border: 1px solid rgba(25, 32, 128, 0.22);
    border-radius: 0.75rem;
  }
  
  .brand-icon i {
    font-size: 1.25rem;
    color: #192080;
  }
  
  .brand-text {
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  
  .brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #111827;
  }
  
  @media (min-width: 640px) {
    .brand-name {
      font-size: 1.25rem;
    }
  }
  
  .brand-subtitle {
    font-size: 0.75rem;
    color: #192080;
  }
  
  /* Desktop Navigation */
  .desktop-nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
  }
  
  @media (min-width: 1024px) {
    .desktop-nav {
      display: flex;
    }
  }
  
  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.2s ease;
  }
  
  .nav-link:hover {
    color: #111827;
    background-color: #f9fafb;
  }
  
  /* Header Actions */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    direction: ltr;
    flex-direction: row;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  
  .btn-primary {
    background-color: #011436;
    color: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  
  .btn-primary:hover {
    background-color: #00225f;
  }
  
  .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    background-color: transparent;
  }
  
  .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  .btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  @media (min-width: 640px) {
    .btn-large {
      padding: 0.75rem 1.75rem;
      font-size: 1rem;
    }
  }
  
  /* .btn-register {
    display: none;
  } */
  
  @media (min-width: 640px) {
    .btn-register {
      display: inline-flex;
    }
  }
  
  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  @media (min-width: 1024px) {
    .mobile-menu-btn {
      display: none;
    }
  }
  
  .mobile-menu-btn:hover {
    background-color: #f3f4f6;
  }
  
  .mobile-menu-btn i {
    font-size: 1.5rem;
    color: #1f2937;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: none;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
  }
  
  .mobile-menu.show {
    display: block;
  }
  
  .mobile-nav-content {
    display: grid;
    gap: 0.5rem;
    padding-bottom: 1rem;
  }
  
  .mobile-nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #1f2937;
    text-decoration: none;
    border-radius: 0.75rem;
    transition: background-color 0.2s ease;
  }
  
  .mobile-nav-link:hover {
    background-color: #f9fafb;
  }
  
  .btn-register-mobile {
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
  }
  
  .mobile-menu-divider {
    height: 1px;
    background-color: #e5e7eb;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    isolation: isolate;
    padding-top: 7rem;
    padding-bottom: 4rem;
    overflow: hidden;
    background: #111827;
    /* animation: heroBackgroundFade 1.5s ease-out; */
  }
  
  @keyframes heroBackgroundFade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @media (min-width: 1024px) {
    .hero {
      padding-top: 9rem;
      padding-bottom: 6rem;
    }
  }
  
  .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
  }

  .hero > .container {
    position: relative;
    z-index: 1;
  }
  
  .hero-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    /* animation: heroImageZoom 20s ease-in-out infinite alternate; */
  }

  .hero-video.mob {
    display: none;
  }
  
  @keyframes heroImageZoom {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.05);
    }
  }
  
  .hero-background:before {
    background: rgba(25, 15, 15, 0.49);
    inset: 0;
    z-index: 1;
    display: block;
    position: absolute;
    content: "";
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3));
  }
  
  .hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(60% 60% at 50% 10%, rgba(255, 255, 255, 0.06), transparent 60%);
  }
  
  .hero-content {
    text-align: center;
    color: white;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* padding: 0.375rem 0.75rem;
    background-color: rgb(58 58 58 / 80%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px; */
    font-size: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .hero-badge img {
    display: block;
    width: min(35.625rem, 100%);
    height: auto;
    max-width: 100%;
    margin: auto;
  }
  
  @media (min-width: 640px) {
    .hero-badge {
      font-size: 0.875rem;
    }
  }
  
  .hero-badge i {
    color: #fbbf24;
  }
  
  .badge-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.4);
  }
  
  .badge-free {
    color: #a7f3d0;
  }
  
  .hero-title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  
  @media (min-width: 640px) {
    .hero-title {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-title {
      font-size: 4rem;
    }
  }
  
  @media (min-width: 1280px) {
    .hero-title {
      font-size: 4.5rem;
    }
  }
  
  .hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
  }
  
  @media (min-width: 640px) {
    .hero-description {
      font-size: 1.22rem;
    }
  }
  
  @media (min-width: 1024px) {
    .hero-description {
      font-size: 1.45rem;
    }
  }
  
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  
  @media (min-width: 640px) {
    .hero-actions {
      flex-direction: row;
      gap: 1rem;
    }
  }
  
  .hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .info-item i {
    color: #fbbf24;
  }

  .hero-info .info-item a,
  .hero-info .info-item span {
    color: inherit;
  }

  .hero .hero-actions .btn-primary {
    background: #b29e73;
    border-color: #b29e73;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .hero .hero-actions .btn-primary:hover {
    background: #9e8a5e;
    border-color: #9e8a5e;
  }
  
  .info-separator {
    display: none;
    height: 1rem;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }
  
  @media (min-width: 640px) {
    .info-separator {
      display: inline-block;
    }
  }
  
  /* Section Styles */
  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .section-badge i {
    color: #047857;
  }
  
  .section-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #111827;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 640px) {
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media (min-width: 1024px) {
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  .section-description {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
  }
  
  @media (min-width: 640px) {
    .section-description {
      font-size: 1.125rem;
    }
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  /* About Section */
  .about {
    padding: 3rem 0;
    background-color: white;
  }
  
  @media (min-width: 1024px) {
    .about {
      padding: 5rem 0;
    }
  }

  /* Intro Feature Section */
  .intro-feature {
    position: relative;
    isolation: isolate;
    padding: 3rem 0 1rem;
    background-color: #eef6f2;
    background-position: center;
    background-size: cover;
  }

  .intro-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(238, 246, 242, 0.9);
  }

  .intro-feature > .container {
    position: relative;
    z-index: 1;
  }

  .intro-feature-shell {
    position: relative;
    overflow: hidden;
    padding: 2rem;
  }

  .intro-feature-heading {
    max-width: 36rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .intro-feature-kicker,
  .intro-card-label {
    display: block;
    color: #047857;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }

  .intro-feature-heading h2 {
    margin: 0;
    color: #172033;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.12;
  }

  .intro-feature-layout {
    direction: ltr;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
    align-items: center;
    gap: 2.25rem;
  }

  .intro-feature-media {
    position: relative;
    min-height: 25rem;
  }

  .intro-feature-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 25rem;
    object-fit: cover;
  }

  .intro-feature-copy {
    position: relative;
    z-index: 1;
  }

  .intro-feature-card {
    position: relative;
    z-index: 1;
    margin-left: 0;
    padding: 2.25rem;
    background: #effca5;
    color: #1f2937;
    box-shadow: 0 1.25rem 3rem rgba(31, 41, 55, 0.12);
    text-align: left;
  }

  #london-feature {
    background: #fff;
  }

  #london-feature::before {
    background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.72) 58%, rgba(255,255,255,0.95) 100%);
  }

  #london-feature .intro-feature-card {
    background: #f0f7ff;
  }

  #intro-feature .intro-feature-card {
    background: #effca5;
  }

  .intro-feature-card h3 {
    margin: 0 0 0.9rem;
    color: #172033;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
  }

  .intro-feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 1.15rem;
  }

  .intro-feature-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.58);
    color: #172033;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .intro-feature-meta i {
    color: #047857;
  }

  .intro-feature-card p {
    margin: 0 0 1.1rem;
    color: #374151;
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .intro-feature-card p:last-of-type {
    margin-bottom: 1.4rem;
  }

  .intro-feature-list {
    display: grid;
    gap: 0.45rem;
    margin: 0 0 1.15rem 1.25rem;
    padding: 0;
    color: #172033;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 600;
  }

  .intro-feature-list li::marker {
    color: #047857;
  }

  .intro-feature-button {
    margin-top: 0.2rem;
  }

  .intro-feature--reverse {
    padding-top: 4rem;
  }

  @media (min-width: 1024px) {
    .intro-feature {
      padding: 5rem 0 1.5rem;
    }

    .intro-feature-shell {
      padding: 3.25rem;
    }

    .intro-feature-heading h2 {
      font-size: 2.8rem;
    }
  }

  @media (max-width: 900px) {
    .intro-feature-shell {
      padding: 1.25rem;
    }

    .intro-feature-layout {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .intro-feature-media,
    .intro-feature-media img {
      min-height: 19rem;
    }

    .intro-feature-card {
      margin: 0;
      padding: 1.5rem;
    }
  }

  @media (max-width: 640px) {
    .intro-feature {
      padding-top: 2rem;
    }

    .intro-feature-shell {
      padding: 1rem;
    }

    .intro-feature-heading h2 {
      font-size: 1.6rem;
    }

    .intro-feature-media,
    .intro-feature-media img {
      min-height: 15.5rem;
    }

    .intro-feature-card {
      margin: 0;
      padding: 1.2rem;
    }

    .intro-feature-card h3 {
      font-size: 1.15rem;
    }

    .intro-feature-card p {
      font-size: 0.92rem;
      line-height: 1.75;
    }
  }

  /* Proven Reach Section */
  .proven-reach {
    padding: 4rem 0 4.5rem;
    background: #fbfbf9;
    color: #111827;
    overflow: hidden;
  }

  .proven-reach-shell {
    position: relative;
    padding: 0.5rem 0;
  }

  .proven-reach-label {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2.25rem;
    color: #111827;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .proven-reach-icon {
    width: 2.45rem;
    height: 2.45rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 24, 39, 0.28);
    border-radius: 50%;
    color: #111827;
  }

  .proven-reach-label > span:last-child {
    padding: 0.65rem 1.15rem;
    border: 1px solid rgba(17, 24, 39, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
  }

  .proven-reach-copy {
    max-width: 52rem;
  }

  .proven-reach-copy h2 {
    margin: 0 0 1rem;
    color: #050505;
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.08;
  }

  .proven-reach-copy p {
    margin: 0;
    color: #252525;
    font-size: clamp(1.05rem, 1.55vw, 1.55rem);
    line-height: 1.45;
    font-weight: 500;
  }

  .proven-reach-stats {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 3rem;
  }

  .proven-reach-stat {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    min-height: 6.2rem;
    padding: 1.15rem 1rem;
    border: 1px solid rgba(17, 24, 39, 0.1);
    background: #ffffff;
  }

  .proven-reach-stat:first-child {
    padding-left: 1rem;
  }

  .proven-reach-number {
    flex: 0 0 auto;
    color: #050505;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    font-variant-numeric: tabular-nums;
  }

  .proven-reach-text {
    min-width: 0;
    max-width: 7.8rem;
    color: #1f2937;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.15;
  }

  .proven-reach-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: 2.25rem;
  }

  .proven-reach-footer p {
    max-width: 48rem;
    margin: 0;
    color: #111827;
    font-size: clamp(0.98rem, 1.25vw, 1.2rem);
    line-height: 1.45;
    font-weight: 500;
  }

  @media (max-width: 1100px) {
    .proven-reach-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 760px) {
    .proven-reach {
      padding: 3rem 0 3.25rem;
    }

    .proven-reach-label {
      margin-bottom: 2rem;
    }

    .proven-reach-stats {
      grid-template-columns: 1fr;
      margin-top: 2.4rem;
    }

    .proven-reach-stat,
    .proven-reach-stat:nth-child(3n + 1) {
      min-height: auto;
      padding: 1rem;
    }

    .proven-reach-number {
      width: 6.5rem;
    }

    .proven-reach-text {
      max-width: none;
      font-size: 1rem;
    }

    .proven-reach-footer {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  /* International Editions Section */
  .international-editions {
    padding: 4.5rem 0 5rem;
    background: #ffffff;
    color: #111827;
    overflow: hidden;
  }

  .visit-carousel-slider:not(.slick-initialized),
  .logos-slider:not(.slick-initialized) {
    overflow: hidden;
  }

  .visit-carousel-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    min-height: 31.75rem;
  }

  .visit-carousel-slider:not(.slick-initialized) .visit-carousel-slide {
    padding: 0;
  }

  .visit-carousel-slider:not(.slick-initialized) .visit-carousel-slide:nth-child(n+4) {
    display: none;
  }

  .intro-feature-carousel {
    margin-top: 2.75rem;
  }

  .intro-feature-carousel .international-cities {
    margin-top: 0;
    padding-inline: 0;
  }

  .intro-feature-carousel .international-cities .slick-list {
    margin-inline: 0;
  }

  .logos-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.9rem;
    min-height: 6.25rem;
  }

  .logos-slider:not(.slick-initialized) .logo-item {
    margin: 0;
  }

  .logos-slider:not(.slick-initialized) .logo-item:nth-child(n+7) {
    display: none !important;
  }

  .international-editions-shell {
    text-align: center;
  }

  .international-editions-copy {
    max-width: 54rem;
    margin: 0 auto;
  }

  .international-editions-kicker {
    display: block;
    margin-bottom: 0.6rem;
    color: #00225f;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .international-editions-copy h2 {
    max-width: 48rem;
    margin: 0 auto 0.85rem;
    color: #050505;
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
  }

  .international-editions-copy p {
    max-width: 46rem;
    margin: 0 auto;
    color: #4b5563;
    font-size: clamp(1rem, 1.45vw, 1.25rem);
    font-weight: 500;
    line-height: 1.65;
  }

  .international-cities {
    position: relative;
    margin-top: 3.25rem;
    padding: 0 3.1rem 3rem;
    min-height: 12rem;
  }

  .international-cities:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.35rem;
    padding: 0 0 0.25rem;
  }

  .international-cities:not(.slick-initialized) .international-city:nth-child(n+5) {
    display: none;
  }

  .international-cities .slick-list {
    margin: 0 -0.75rem;
    padding: 0.25rem 0.15rem 1rem;
    overflow: hidden;
    min-height: 12rem;
  }

  .international-cities .slick-track {
    display: flex;
    align-items: stretch;
    min-height: 12rem;
  }

  .international-cities .slick-slide {
    height: auto;
    margin: 0 0.75rem;
    min-height: 12rem;
  }

  .international-cities .slick-slide > div {
    height: 100%;
    padding: 0 0.75rem;
    min-height: 12rem;
  }

  .international-city {
    display: flex !important;
    height: 100%;
    margin: 0;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    transition: none;
    min-height: 12rem;
  }

  .international-city-frame {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
    min-height: 12rem;
  }

  .international-city img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
    transition: transform 0.32s ease, filter 0.32s ease;
    min-height: 12rem;
  }

  .international-city.image-lightbox-trigger {
    cursor: zoom-in;
  }

  .international-city.image-lightbox-trigger:focus-visible {
    outline: 3px solid #06142f;
    outline-offset: 4px;
  }

  .international-city:hover,
  .international-city:focus-within {
    transform: none;
    box-shadow: none;
    filter: none;
  }

  .international-city:hover img,
  .international-city:focus-within img {
    transform: none;
  }

  .international-cities .slick-prev,
  .international-cities .slick-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(25, 32, 128, 0.18);
    border-radius: 50%;
    background: var(--nile-ivory, #fff);
    box-shadow: 0 0.9rem 1.8rem rgba(25, 32, 128, 0.12);
    transform: translateY(-50%);
  }

  .international-cities .slick-prev {
    left: 0;
    right: auto;
  }

  .international-cities .slick-next {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .international-cities .slick-prev {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .international-cities .slick-next {
    left: 0;
    right: auto;
  }

  .international-cities .slick-prev::before,
  .international-cities .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--nile-royal-blue, #06142f);
    opacity: 1;
  }

  .international-cities .slick-prev::before {
    content: '\f053';
  }

  .international-cities .slick-next::before {
    content: '\f054';
  }

  [dir="rtl"] .international-cities .slick-prev::before {
    content: '\f054';
  }

  [dir="rtl"] .international-cities .slick-next::before {
    content: '\f053';
  }

  .international-cities .slick-dots {
    bottom: 0;
    right: 0;
  }

  .international-cities .slick-dots li button::before {
    display: none;
  }

  .international-cities .slick-dots li button {
    width: 0.7rem;
    height: 0.7rem;
    border: 1px solid rgba(25, 32, 128, 0.34);
    border-radius: 50%;
    background: transparent;
  }

  .international-cities .slick-dots li.slick-active button {
    background: var(--nile-gold, #be9857);
    border-color: var(--nile-gold, #be9857);
  }

  @media (max-width: 1100px) {
    .international-cities {
      padding-inline: 2.75rem;
    }

    .international-cities:not(.slick-initialized) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .visit-carousel-slider:not(.slick-initialized) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      min-height: 26.75rem;
    }

    .visit-carousel-slider:not(.slick-initialized) .visit-carousel-slide:nth-child(n+3) {
      display: none;
    }

    .logos-slider:not(.slick-initialized) {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .logos-slider:not(.slick-initialized) .logo-item:nth-child(n+5) {
      display: none !important;
    }
  }

  @media (max-width: 640px) {
    .international-editions {
      padding: 3.25rem 0 3.75rem;
    }

    .intro-feature-carousel {
      margin-top: 1.75rem;
    }

    .international-cities {
      padding: 0 2.35rem 2.75rem;
      margin-top: 2.4rem;
      min-height: clamp(18rem, 82vw, 24rem);
    }

    .intro-feature-carousel .international-cities {
      min-height: clamp(18rem, 82vw, 24rem);
    }

    .international-cities:not(.slick-initialized) {
      grid-template-columns: 1fr;
      gap: 1rem;
      min-height: clamp(18rem, 82vw, 24rem);
    }

    .international-cities:not(.slick-initialized) .international-city:nth-child(n+2) {
      display: none;
    }

    .international-cities .slick-list {
      margin: 0 -0.45rem;
      min-height: clamp(18rem, 82vw, 24rem);
    }

    .intro-feature-carousel .international-cities .slick-list {
      margin-inline: 0;
    }

    .international-cities .slick-track,
    .international-cities .slick-slide,
    .international-cities .slick-slide > div {
      min-height: clamp(18rem, 82vw, 24rem);
    }

    .international-cities .slick-slide {
      margin: 0 0.45rem;
    }

    .international-city {
      padding: 0;
      border-radius: 0;
      min-height: clamp(18rem, 82vw, 24rem);
    }

    .international-city-frame {
      border-radius: 0;
      min-height: clamp(18rem, 82vw, 24rem);
    }

    .international-city img {
      min-height: clamp(18rem, 82vw, 24rem);
    }

    .visit-carousel-slider:not(.slick-initialized) {
      grid-template-columns: 1fr;
      min-height: 24.5rem;
    }

    .visit-carousel-slider:not(.slick-initialized) .visit-carousel-slide:nth-child(n+2) {
      display: none;
    }

    .logos-slider:not(.slick-initialized) {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      min-height: 5.8rem;
    }

    .logos-slider:not(.slick-initialized) .logo-item:nth-child(n+3) {
      display: none !important;
    }
  }

  /* Visit Carousel Section */
  .visit-carousel-section {
    padding: 4rem 0;
    background: #f7efe3;
    overflow: hidden;
  }

  .visit-carousel-header {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1fr);
    gap: 2rem;
    align-items: start;
    margin-bottom: 2.25rem;
    color: #172033;
  }

  .visit-carousel-copy h2 {
    max-width: 28rem;
    margin: 0;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
  }

  .visit-carousel-text {
    max-width: 42rem;
  }

  .visit-carousel-text h3 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #06142f;
  }

  .visit-carousel-text p {
    margin: 0 0 0.85rem;
    color: #374151;
    font-size: 1rem;
    line-height: 1.75;
  }

  .visit-carousel-text p:last-child {
    margin-bottom: 0;
  }

  .visit-carousel-slider {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 3rem 2.75rem;
  }

  .visit-carousel-slider .slick-list {
    overflow: hidden;
  }

  .visit-carousel-slider .slick-slide > div {
    height: 100%;
  }

  .visit-carousel-slide {
    padding: 0 0.75rem;
  }

  .visit-carousel-card {
    height: 29rem;
    overflow: hidden;
    border-radius: 1.25rem;
    background: transparent;
    box-shadow: none;
  }

  .visit-lightbox-trigger {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
  }

  .visit-carousel-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
  }

  .visit-lightbox-trigger:hover img,
  .visit-lightbox-trigger:focus-visible img {
    transform: scale(1.04);
    filter: saturate(1.08);
  }

  .visit-lightbox-trigger:focus-visible {
    outline: 3px solid #06142f;
    outline-offset: 4px;
  }

  .visit-lightbox-icon {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 2.6rem;
    height: 2.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #06142f;
    box-shadow: 0 0.75rem 1.5rem rgba(6, 20, 47, 0.18);
    opacity: 0;
    transform: translateY(0.35rem);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .visit-lightbox-trigger:hover .visit-lightbox-icon,
  .visit-lightbox-trigger:focus-visible .visit-lightbox-icon {
    opacity: 1;
    transform: translateY(0);
  }

  .visit-carousel-slider .slick-prev,
  .visit-carousel-slider .slick-next {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 50%;
    background: #fff;
    box-shadow: none;
    transform: translateY(-50%);
  }

  .visit-carousel-slider .slick-prev {
    left: 0;
    right: auto;
  }

  .visit-carousel-slider .slick-next {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .visit-carousel-slider .slick-prev {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .visit-carousel-slider .slick-next {
    left: 0;
    right: auto;
  }

  .visit-carousel-slider .slick-prev::before,
  .visit-carousel-slider .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #06142f;
    font-size: 0.95rem;
    opacity: 1;
  }

  .visit-carousel-slider .slick-prev::before {
    content: '\f053';
  }

  .visit-carousel-slider .slick-next::before {
    content: '\f054';
  }

  [dir="rtl"] .visit-carousel-slider .slick-prev::before {
    content: '\f054';
  }

  [dir="rtl"] .visit-carousel-slider .slick-next::before {
    content: '\f053';
  }

  .visit-carousel-slider .slick-dots {
    bottom: 0;
    right: 0;
  }

  .visit-carousel-slider .slick-dots li button::before {
    display: none;
  }

  .visit-carousel-slider .slick-dots li button {
    width: 0.7rem;
    height: 0.7rem;
    border: 1px solid rgba(6, 20, 47, 0.28);
    border-radius: 50%;
    background: transparent;
  }

  .visit-carousel-slider .slick-dots li.slick-active button {
    background: #06142f;
    border-color: #06142f;
  }

  .visit-carousel-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 46rem;
    margin: 1.5rem auto 0;
    text-align: center;
  }

  .visit-carousel-cta p {
    margin: 0;
    color: #172033;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .visit-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
  }

  .visit-lightbox.show {
    display: flex;
  }

  .visit-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.86);
    backdrop-filter: blur(10px);
  }

  .visit-lightbox-dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(70rem, 100%);
    height: min(48rem, 86vh);
  }

  .visit-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.75rem;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.35);
  }

  .visit-lightbox-close,
  .visit-lightbox-nav {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #06142f;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  }

  .visit-lightbox-close:hover,
  .visit-lightbox-nav:hover {
    background: #ffffff;
    transform: translateY(-1px);
  }

  .visit-lightbox-close:focus-visible,
  .visit-lightbox-nav:focus-visible {
    outline: 3px solid #effca5;
    outline-offset: 3px;
  }

  .visit-lightbox-close {
    top: -1rem;
    right: -1rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  .visit-lightbox-nav {
    top: 50%;
    width: 3rem;
    height: 3rem;
    transform: translateY(-50%);
  }

  .visit-lightbox-nav:hover {
    transform: translateY(calc(-50% - 1px));
  }

  .visit-lightbox-nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }

  .visit-lightbox-prev {
    left: -1.25rem;
  }

  .visit-lightbox-next {
    right: -1.25rem;
  }

  .visit-lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: -2.35rem;
    transform: translateX(-50%);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #06142f;
    font-size: 0.85rem;
    font-weight: 700;
  }

  @media (max-width: 900px) {
    .visit-carousel-section {
      padding: 3rem 0;
    }

    .visit-carousel-header {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    .visit-carousel-copy h2 {
      font-size: 2rem;
    }

    .visit-carousel-card {
      height: 24rem;
    }
  }

  @media (max-width: 640px) {
    .visit-carousel-slider {
      padding: 0 2.5rem 2.5rem;
    }

    .visit-carousel-card {
      height: 22rem;
    }

    .visit-lightbox {
      padding: 1rem;
    }

    .visit-lightbox-dialog {
      height: 78vh;
    }

    .visit-lightbox-close {
      top: 0.5rem;
      right: 0.5rem;
    }

    .visit-lightbox-prev {
      left: 0.4rem;
    }

    .visit-lightbox-next {
      right: 0.4rem;
    }

    .visit-lightbox-counter {
      bottom: 0.65rem;
    }
  }
  
  /* About Register Button */
  .about-register-btn {
    text-align: center;
    margin-top: 2.5rem;
  }
  
  @media (min-width: 1024px) {
    .about-register-btn {
      margin-top: 3rem;
    }
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
  }
  
  @media (min-width: 1024px) {
    .about-content {
      grid-template-columns: 1fr;
      gap: 3.5rem;
    }
  }

  
  .counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .counter-item {
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    transition: box-shadow 0.2s ease;
  }
  
  .counter-item:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  }
  
  .counter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }
  
  .counter-header i {
    font-size: 1.5rem;
    color: #047857;
  }
  
  .counter-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #b45309;
  }
  
  .counter-value {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #111827;
    margin-bottom: 0.25rem;
  }
  
  .counter-description {
    font-size: 0.875rem;
    color: #4b5563;
  }
  
  .about-image {
    text-align: center;
  }
  
  .image-container {
    position: relative;
    /* border-radius: 1.5rem; */
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
  }
  
  .image-container img {
    width: 100%;
    height: 20rem;
    overflow: hidden;
    display: block;
    height: 500px;
  }
  
  @media (min-width: 640px) {
    .image-container img {
      height: 26.25rem;
    }
  }
  
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top right, rgba(6, 78, 59, 0.2), transparent, transparent);
  }
  
  .image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
  
  .badge-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
  }
  
  .badge-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
  }
  
  .badge-left i {
    color: #047857;
  }
  
  .badge-right {
    display: none;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #047857;
  }
  
  @media (min-width: 640px) {
    .badge-right {
      display: inline-flex;
    }
  }
  
  .badge-right i {
    color: #011436;
  }
  
  .image-caption {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1rem;
  }
  
  /* Developers Section */
  .developers {
    padding: 3rem 0;
    background-color: #f7f7f7;
  }

  .exhibitors-showcase {
    padding: 5rem 0 5.5rem;
    background: #752138;
    color: #fff;
    overflow: hidden;
  }

  .exhibitors-showcase .developers-section {
    margin: 0;
  }

  .exhibitors-showcase .developers-header {
    max-width: 42rem;
    margin-bottom: 2.5rem;
    gap: 1.1rem;
    color: #fff;
  }

  .exhibitors-showcase .section-title {
    margin: 0;
    color: #fff;
    font-size: 2.45rem;
    line-height: 1.1;
    font-weight: 700;
  }

  .exhibitors-showcase .developers-note {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 600;
  }

  .exhibitors-showcase .logos-slider {
    margin: 0;
    padding: 0 4rem;
  }

  .exhibitors-showcase .logos-slider .slick-list {
    overflow: hidden;
  }

  .exhibitors-showcase .logos-slider .slick-slide {
    padding: 0 0.45rem;
  }

  .exhibitors-showcase .logos-slider .slick-slide > div {
    height: 100%;
  }

  .exhibitors-showcase .logos-slider .logo-item {
    height: 6.25rem;
    padding: 1.25rem 1.35rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.9rem;
    box-shadow: none;
    transform: none !important;
  }

  .exhibitors-showcase .logos-slider .logo-item:hover {
    transform: none !important;
    box-shadow: none;
  }

  .exhibitors-showcase .logos-slider .logo-item img {
    width: 100%;
    max-width: 11rem;
    height: 3.6rem;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.78;
  }

  .exhibitors-showcase .logos-slider .slick-current .logo-item,
  .exhibitors-showcase .logos-slider .logo-item.active {
    transform: none !important;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.2);
  }

  .exhibitors-showcase .logos-slider .slick-prev,
  .exhibitors-showcase .logos-slider .slick-next {
    width: 3rem;
    height: 3rem;
    background: #fff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.16);
  }

  .exhibitors-showcase .logos-slider .slick-prev:hover,
  .exhibitors-showcase .logos-slider .slick-next:hover {
    background: #fff;
  }

  .exhibitors-showcase .logos-slider .slick-prev {
    left: 0;
    right: auto;
  }

  .exhibitors-showcase .logos-slider .slick-next {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .exhibitors-showcase .logos-slider .slick-prev {
    right: 0;
    left: auto;
  }

  [dir="rtl"] .exhibitors-showcase .logos-slider .slick-next {
    left: 0;
    right: auto;
  }

  .exhibitors-showcase .logos-slider .slick-prev::before,
  .exhibitors-showcase .logos-slider .slick-next::before {
    color: #111827;
    font-size: 1rem;
    opacity: 1;
  }

  .exhibitors-showcase .logos-slider .slick-prev::before {
    content: '\f053';
  }

  .exhibitors-showcase .logos-slider .slick-next::before {
    content: '\f054';
  }

  [dir="rtl"] .exhibitors-showcase .logos-slider .slick-prev::before {
    content: '\f054';
  }

  [dir="rtl"] .exhibitors-showcase .logos-slider .slick-next::before {
    content: '\f053';
  }

  .exhibitors-showcase .logos-slider .slick-dots {
    display: none !important;
  }
  
  @media (min-width: 1024px) {
    .developers {
      padding: 5rem 0;
    }
  }

  @media (max-width: 900px) {
    .exhibitors-showcase {
      padding: 4rem 0;
    }

    .exhibitors-showcase .logos-slider {
      padding: 0 3.25rem;
    }

    .exhibitors-showcase .section-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 640px) {
    .exhibitors-showcase .logos-slider {
      padding: 0 2.75rem;
    }

    .exhibitors-showcase .logos-slider .logo-item {
      height: 5.8rem;
    }
  }
  
  /* Developers Register Button */
  .developers-register-btn {
    text-align: center;
    margin-top: 1.5rem;
  }
  
  @media (min-width: 1024px) {
    .developers-register-btn {
      margin-top: 2rem;
    }
  }
  
  .developers-header {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .developers-section {
    margin-bottom: 3rem;
  }
  
  .developers-section:last-child {
    margin-bottom: 0;
  }
  
  .developers-section-header {
      display: flex
  ;
      /* align-items: center; */
      justify-content: space-between;
      margin-bottom: 1rem;
      flex-direction: column;
  }
  
  .developers-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #111827;
    margin-bottom: 1rem;
  }
  
  @media (min-width: 640px) {
    .developers-title {
      font-size: 1.25rem;
    }
  }
  
  .developers-note {
    font-size: 1rem;
    color: #6b7280;
  }
  
  /* Slick Slider Styles */
  .logos-slider {
    margin: 1rem 0;
    position: relative;
    padding: 0 50px;
  }
  
  @media (max-width: 768px) {
    .logos-slider {
      padding: 0 20px;
    }
  }
  
  .logos-slider .slick-slide {
    padding: 0 0.5rem;
  }
  
  .logos-slider .slick-slide > div {
    height: 100%;
  }
  
  .logos-slider .logo-item {
    height: 100px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
  }
  
  .logos-slider .logo-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
  }
  
  /* Slick Navigation Arrows */
  .logos-slider .slick-prev,
  .logos-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .logos-slider .slick-prev:hover,
  .logos-slider .slick-next:hover {
    background-color: #047857;
    border-color: #047857;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .logos-slider .slick-prev:hover::before,
  .logos-slider .slick-next:hover::before {
    color: white;
  }
  
  .logos-slider .slick-prev {
    left: -20px;
    right: auto;
  }
  
  .logos-slider .slick-next {
    right: -20px;
    left: auto;
  }

  [dir="rtl"] .logos-slider .slick-prev {
    right: -20px;
    left: auto;
  }

  [dir="rtl"] .logos-slider .slick-next {
    left: -20px;
    right: auto;
  }
  
  .logos-slider .slick-prev::before,
  .logos-slider .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #6b7280;
    transition: color 0.3s ease;
  }
  
  .logos-slider .slick-prev::before {
    content: '\f053'; /* fa-chevron-left */
  }
  
  .logos-slider .slick-next::before {
    content: '\f054'; /* fa-chevron-right */
  }

  [dir="rtl"] .logos-slider .slick-prev::before {
    content: '\f054'; /* fa-chevron-right */
  }

  [dir="rtl"] .logos-slider .slick-next::before {
    content: '\f053'; /* fa-chevron-left */
  }
  
  /* Slick Dots */
  .logos-slider .slick-dots {
    position: static;
    margin-top: 1rem;
    text-align: center;
  }
  
  .logos-slider .slick-dots li {
    display: inline-block;
    margin: 0 4px;
  }
  
  .logos-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .logos-slider .slick-dots li.slick-active button {
    background-color: #047857;
    transform: scale(1.2);
  }
  
  .logos-slider .slick-dots li button::before {
    display: none;
  }
  
  /* Active slide styling */
  .logos-slider .slick-current .logo-item {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    border-color: #047857;
  }
  
  .logos-slider .logo-item.active {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
    border-color: #047857;
  }
  
  /* Smooth transitions for slider items */
  .logos-slider .logo-item {
    transition: all 0.3s ease;
  }
  
  /* Responsive adjustments for sliders */
  @media (max-width: 768px) {
    .logos-slider .slick-prev,
    .logos-slider .slick-next {
      display: none !important;
    }
    
    .logos-slider .logo-item {
      margin: 0 0.25rem;
    }
    
    .logos-slider .slick-dots {
      margin-top: 0.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .logos-slider .logo-item {
      height: 80px;
      margin: 0 0.125rem;
    }
    
    .logos-slider .logo-item img {
      max-height: 50px;
    }
  }
  
  /* Fallback grid layout when slick is not loaded */
  .logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  @media (min-width: 475px) {
    .logos-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (min-width: 640px) {
    .logos-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  @media (min-width: 768px) {
    .logos-grid {
      grid-template-columns: repeat(5, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .logos-grid {
      grid-template-columns: repeat(6, 1fr);
    }
  }
  
  .logo-item {
    padding: 1.25rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  
  .logo-item:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
  }
  
  .logo-item img {
    opacity: 0.7;
    transition: opacity 0.2s ease;
  }
  
  .logo-item:hover img {
    opacity: 1;
  }
  
  /* Why Attend Section */
  .why-attend {
    padding: 4rem 0;
    background-color: white;
  }
  
  @media (min-width: 1024px) {
    .why-attend {
      padding: 6rem 0;
    }
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  @media (min-width: 640px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .benefit-item {
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    transition: box-shadow 0.2s ease;
  }
  
  .benefit-item:hover {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .benefit-icon i {
    font-size: 1.25rem;
    color: #047857;
  }
  
  .benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #111827;
    margin-bottom: 0.375rem;
  }
  
  .benefit-description {
    font-size: 0.875rem;
    color: #4b5563;
  }
  
  /* Scroll to Form Button Enhancements */
  .scroll-to-form {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .scroll-to-form::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;
  }
  
  .scroll-to-form:hover::before {
    left: 100%;
  }
  
  .scroll-to-form:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.3);
  }
  
  /* Button container styling */
  .about-register-btn,
  .developers-register-btn {
    position: relative;
  }
  
  .about-register-btn::after,
  .developers-register-btn::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #047857, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .about-register-btn:hover::after,
  .developers-register-btn:hover::after {
    opacity: 1;
  }

  /* Registration Section */
  .registration {
    padding: 3rem 0;
    background-color: white;
  }
  
  @media (min-width: 1024px) {
    .registration {
      padding: 5rem 0;
    }
  }
  
  .registration-form {
    max-width: 64rem;
    margin: 0 auto;
    padding: 1.25rem;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  }
  
  @media (min-width: 640px) {
    .registration-form {
      padding: 2rem;
    }
  }
  
  @media (min-width: 1024px) {
    .registration-form {
      padding: 2.5rem;
    }
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  @media (min-width: 640px) {
    .form-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group.full-width {
    grid-column: 1 / -1;
  }
  
  .form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
  }
  
  /* Required field styling */
  .form-group:has(input[required]) .form-label,
  .form-group:has(select[required]) .form-label {
    color: #dc2626;
  }
  
  .form-group:has(input[required]) .form-label::after,
  .form-group:has(select[required]) .form-label::after {
    content: ' *';
    color: #dc2626;
    font-weight: bold;
  }
  
  /* Form validation styling */
  .form-input:invalid,
  .form-select:invalid {
    border-color: #dc2626;
  }
  
  .form-input:valid,
  .form-select:valid {
    border-color: #10b981;
  }
  
  .form-input:focus:invalid,
  .form-select:focus:invalid {
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  }
  
  .form-input:focus:valid,
  .form-select:focus:valid {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  }
  
  /* Error states */
  .form-input.error,
  .form-select.error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  }
  
  .form-status.error {
    color: #dc2626;
    font-weight: 500;
  }
  
  .error-message {
    color: #dc2626;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: block;
  }
  
  .form-input,
  .form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    color: #111827;
    background-color: white;
    transition: all 0.2s ease;
    text-align: right;
    direction: rtl;
  }
  [dir="ltr"] .form-input,
  [dir="ltr"] .form-select {
    text-align: left;
    direction: ltr;
  }
  
  .form-input:focus,
  .form-select:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
  }
  
  .form-input::placeholder {
    color: #9ca3af;
  }
  
  .phone-input {
    display: flex;
    gap: 0.5rem;
  }
  
  .phone-select {
    position: relative;
  }
  
  .phone-select select {
    appearance: none;
    padding-right: 2.5rem;
    padding-left: 1rem;
  }
  
  .phone-select i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #6b7280;
    pointer-events: none;
  }
  
  .checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
  }
  
  .checkbox-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .checkbox-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: white;
    transition: all 0.2s ease;
  }
  
  .checkbox-input:checked + .checkbox-custom {
    background-color: #047857;
    border-color: #047857;
  }
  
  .checkbox-input:checked + .checkbox-custom::after {
    content: 'âœ“';
    color: white;
    font-size: 0.875rem;
    font-weight: bold;
  }
  
  .checkbox-text {
    font-size: 0.875rem;
    color: #374151;
  }
  
  .form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  @media (min-width: 640px) {
    .form-actions {
      flex-direction: row;
    }
  }
  
  .form-status {
    font-size: 0.875rem;
    color: #4b5563;
  }
  
  .form-status.success {
    color: #047857;
  }
  
  /* Footer */
  .footer {
    border-top: 1px solid #e5e7eb;
    background-color: white;
  }
  
  .footer-content {
    display: flex;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  .footer-main {
    width: 100%;
    /* text-align: center; */
    display: flex
  ;
    flex-direction: column;
    /* align-items: center; */
  }
  @media (min-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
    }
  }
  
  .footer-main {
    grid-column: 1 / -1;
  }
  
  @media (min-width: 768px) {
    .footer-main {
      grid-column: 1;
    }
  }
  
  .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .footer-brand .brand-icon {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .footer-brand .brand-name {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #111827;
  }
  
  .footer-brand .brand-subtitle {
    font-size: 0.75rem;
    color: #047857;
  }
  
  .footer-description {
    font-size: 0.875rem;
    color: #4b5563;
    max-width: 32rem;
    margin-bottom: 1rem;
  }
  
  .footer-info {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #6b7280;
  }
  
  .footer-info i {
    color: #011436;
  }
  
  .info-separator {
    margin: 0 0.5rem;
  }
  
  /* Footer Social Media */
  .footer-social {
    margin-top: 1.5rem;
  }
  
  /* Language Switcher Container */
  .language-switcher-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Single Language Button */
  .btn-lang-single {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    min-width: 120px;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
	  font-family: 'Cairo';
  }
  
  .btn-lang-single:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  }
  
  .btn-lang-single:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
  }
  
  .btn-lang-single i {
    font-size: 14px;
    opacity: 0.9;
  }
  
  .btn-lang-single .lang-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  
  /* Loading state */
  .btn-lang-single.loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  .btn-lang-single.loading .lang-text {
    animation: pulse 1s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  
  /* RTL Support */

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .btn-lang-single {
      padding: 8px 14px;
      font-size: 13px;
      min-width: 100px;
    }
    
    .btn-lang-single .lang-text {
      font-size: 13px;
    }
    
    .btn-lang-single i {
      font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .btn-lang-single {
      padding: 6px 12px;
      font-size: 12px;
      min-width: 90px;
    }
    
    .btn-lang-single .lang-text {
      font-size: 12px;
    }
  }
  
  .fallback-lang-switcher {
    display: none;
  }
  
  /* Polylang Language Switcher Styles */
  .polylang-switcher {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .polylang-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.5rem;
  }
  
  .polylang-switcher li {
    margin: 0;
    padding: 0;
  }
  
  .polylang-switcher a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    min-width: 120px;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .polylang-switcher a:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    color: white;
  }
  
  .polylang-switcher .current-lang a {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    cursor: not-allowed;
  }
  
  .polylang-switcher .current-lang a:hover {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    transform: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  }
  
  
  /* Language switcher buttons */
  .btn-lang-switch {
    min-width: 60px;
    text-align: center;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    background: transparent;
    color: #000;
    text-decoration: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .btn-lang-switch:hover {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #111827;
  }
  

  
  [dir="rtl"] .header-actions {
    flex-direction: row;
  }
  
  [dir="rtl"] .btn-lang-switch {
    margin-right: 0 !important;
    margin-left: 0.75rem !important;
  }
  
  .social-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
  }
  
  .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }
  
  @media (min-width: 640px) {
    .social-links {
      justify-content: flex-start;
    }
  }
  
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .social-link i {
    font-size: 1.125rem;
    color: white;
    transition: transform 0.3s ease;
  }
  
  /* Instagram */
  .social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  }
  
  .social-link.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
  }
  
  /* Facebook */
  .social-link.facebook {
    background-color: #1877f2;
  }
  
  .social-link.facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
  }
  
  /* TikTok */
  .social-link.tiktok {
    background-color: #000000;
  }
  
  .social-link.tiktok:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }
  
  /* LinkedIn */
  .social-link.linkedin {
    background-color: #0077b5;
  }
  
  .social-link.linkedin:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
  }
  
  /* Snapchat */
  .social-link.snapchat {
    background-color: #fffc00;
  }
  
  .social-link.snapchat i {
    color: #000000;
  }
  
  .social-link.snapchat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 252, 0, 0.4);
  }
  
  /* Hover effects for all social links */
  .social-link:hover i {
    transform: scale(1.1);
  }
  
  .social-link:active {
    transform: translateY(0) scale(0.95);
  }
  
  .footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
  }
  
  .contact-list,
  .links-list {
    list-style: none;
    font-size: 0.875rem;
    color: #374151;
  }
  
  .contact-list li,
  .links-list li {
    margin-bottom: 0.5rem;
  }
  
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .contact-item i {
    color: #047857;
  }
  
  .contact-item a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .contact-item a:hover {
    color: #047857;
  }
  
  .links-list a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .links-list a:hover {
    color: #047857;
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
  }
  
  @media (min-width: 640px) {
    .footer-bottom {
      flex-direction: row;
    }
  }
  
  .footer-copyright {
    font-size: 0.75rem;
    color: #6b7280;
  }
  
  .footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
  }
  
  .legal-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .legal-link:hover {
    color: #374151;
  }
  
  /* Modal */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: none;
  }
  
  .modal.show {
    display: flex;
  }
  
  .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
  }
  
  .modal-container {
    position: relative;
    max-width: 36rem;
    margin: 0 auto;
    margin-top: 1rem;
    padding: 0 1rem;
  }
  
  @media (min-width: 640px) {
    .modal-container {
      margin-top: 8rem;
      padding: 0;
    }
  }
  
  .modal-content {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  
  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
  }
  
  @media (min-width: 640px) {
    .modal-header {
      padding: 1.5rem;
    }
  }
  
  .modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #111827;
  }
  
  .modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: none;
    background: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  
  .modal-close:hover {
    background-color: #f3f4f6;
  }
  
  .modal-close i {
    font-size: 1.25rem;
    color: #374151;
  }
  
  .modal-form {
    padding: 1.25rem 1.5rem;
  }
  
  @media (min-width: 640px) {
    .modal-form {
      padding: 1.5rem;
    }
  }
  
  .modal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }
  
  @media (min-width: 640px) {
    .modal-actions {
      flex-direction: row;
    }
  }
  
  .btn-secondary {
    background-color: white;
    color: #1f2937;
    border: 1px solid #e5e7eb;
  }
  
  .btn-secondary:hover {
    background-color: #f9fafb;
  }
  
  /* Utility Classes */
  .hidden {
    display: none !important;
  }
  
  .show {
    display: flex !important;
  }
  div#register-modal {
    align-items: center;
    justify-content: center;
}
.modal-container {
  width: 100%;
}
  /* Loading States */
  .loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
  }
  
  .loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f4f6;
    border-top: 2px solid #047857;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Focus States for Accessibility */
  .btn:focus,
  .form-input:focus,
  .form-select:focus,
  .checkbox-input:focus + .checkbox-custom {
    outline: 2px solid #047857;
    outline-offset: 2px;
  }
  
  /* Hover Effects */
  .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .logo-item:hover,
  .benefit-item:hover,
  .media-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  /* Smooth Transitions */
  * {
    transition: all 0.2s ease;
  }
  
  /* Reduced Motion Support */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    
    .loading::after {
      animation: none;
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fade-in {
    animation: fadeIn 0.6s ease-out;
  }
  
  /* Responsive Design Improvements */
  @media (max-width: 640px) {
    .hero {
      min-height: 35rem;
      padding-top: 6rem;
      padding-bottom: 3rem;
    }

    .hero-video.pc {
      display: none;
    }

    .hero-video.mob {
      display: block;
    }

    .hero-video {
      object-fit: cover;
      object-position: center center;
    }

    .hero-content {
      max-width: none;
      padding: 0;
      text-align: center;
    }

    .hero-badge {
      margin-bottom: 1rem;
    }

    .hero-badge img {
      width: min(19rem, 100%);
    }

    .hero-title {
      font-size: 1.55rem;
      margin-bottom: 1rem;
    }

    .hero-description {
      max-width: 21rem;
      font-size: 0.95rem;
      margin: 0 auto 1.5rem;
    }

    .hero-info {
      flex-direction: column;
      gap: 0.65rem;
      font-size: 0.9rem;
    }

    .hero-info .info-separator {
      display: none;
    }
    
    .section-title {
      font-size: 1.25rem;
    }
    
    .counters {
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0.75rem;
    }
    
    .logos-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .media-grid {
      grid-template-columns: 1fr;
    }
    
    .media-left,
    .media-right {
      grid-template-rows: auto;
    }
    
    .hero-actions {
      flex-direction: column;
      width: 100%;
    }
    
    .hero-actions .btn {
      width: 100%;
      justify-content: center;
    }
    
    .form-actions {
      flex-direction: column;
      width: 100%;
    }
    
    .form-actions .btn {
      width: 100%;
    }
    
    .modal-actions {
      flex-direction: column;
      width: 100%;
    }
    
    .modal-actions .btn {
      width: 100%;
    }
  }
  
  /* Print Styles */
  @media print {
    .header,
    .hero-background,
    .modal {
      display: none !important;
    }
    
    .hero {
      padding-top: 2rem;
      background: white !important;
      color: black !important;
    }
    
    .hero-content {
      color: black !important;
    }
  }
  
  
  /* new css */
  div#register-modal .form-input, .form-select {
    padding: 10px;
    font-size: 16px !important;
  }
  
  div#register-modal .form-label {
    font-size: 13px;
  }
  
  div#register-modal .modal-header {
    padding: 0.75rem;
  }
  
  div#register-modal .modal-header h3.modal-title {
    font-size: 1rem;
  }
  
  div#register-modal .modal-actions {
    flex-direction: row;
  }
  
  .flx-thx {
    display: flex
  ;
  cursor: pointer;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: linear-gradient(rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.58)), url("London MV Landing Page.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    position: fixed;
    inset: 0;
    z-index: 9999999999;
  }
  
  .flx-thx {
    flex-direction: column;
    gap: 20px;
    padding: 0 10px;
  }
  .flx-thx div {
    line-height: 1.5em;
  }

  .thank-you-brand {
    width: min(32rem, 100%);
    margin: 0 auto;
  }

  .thank-you-brand img {
    display: block;
    width: 100%;
    height: auto;
  }

  .flx-thx p {
    max-width: 42rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    font-weight: 500;
  }

  .flx-thx .btn {
    font-size: 1rem;
  }

  .flx-thx span {
    line-height: 1.5em;
    font-size: 20px;
  }
  .flx-thx span.close {
    position: fixed;
    right: 20px;
    top: 20px;
    font-size: 100px;
    line-height: 1em;
  }
  .flx-thx * {
    text-align: center;
  }
  
  .flx-thx.active {
    display: flex;
  }
  
  @media (max-width: 640px) {
    .brand-name{
      font-size: 1rem;
    }
    .header-actions {
      gap: .5rem;
  }
  button#open-hero-modal i.fas.fa-edit {
    display: none;
  }
  .header-content span.brand-icon {
    display: none;
}
.header-actions button{
  font-size: 0.75rem;
}
.image-container img {
  height: 200px;
}

/* Style for slider dots - show only 5 */
.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  transition: all 0.3s ease;
  font-size: 0;
  text-indent: -9999px;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background: #007cba;
  transform: scale(1.2);
}

.slick-dots li button:hover {
  background: #007cba;
  transform: scale(1.1);
}
  }

  .info-item a {
    text-decoration: none;
    color: #fff;
}

.developers-section {
  overflow: hidden;
}
div#register-modal .form-group {
  position: relative;
}
div#register-modal label.form-label {
  position: absolute;
  top: -10px;
  background: #fff;
  padding: 0 10px;
}
.slick-dotted.slick-slider {
  margin-bottom: 30px !important;
}

/* Thank You Page Styles */


.thank-you-container {
  text-align: center;
  max-width: 600px;
  width: 100%;
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.thank-you-content {
  margin-top: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.thank-you-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.thank-you-actions {
  margin-top: 2rem;
}

.thank-you-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.thank-you-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* RTL Support for Thank You Page */
[dir="rtl"] .thank-you-container {
  text-align: center;
}

[dir="rtl"] .thank-you-actions .btn {
  flex-direction: row-reverse;
}
.flx-thx h1 {
    font-size: 55px;
    text-shadow: 1px 1px 10px black;
}
select.form-select {
    height: 54px;
    min-height: 54px;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .flx-thx {
    padding: 1rem;
  }

  .thank-you-brand {
    width: min(18rem, 100%);
  }
  
  .thank-you-container {
    padding: 2rem 1.5rem;
  }
  
  .thank-you-title {
    font-size: 2rem;
  }
  
  .thank-you-description {
    font-size: 1rem;
  }
  
  .thank-you-actions .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
.logos-slider .slick-prev {
  left: 10px!important;
  right: unset!important;
}
.logos-slider .slick-next {
  right: 10px!important;
  left: unset!important;
}

[dir="rtl"] .logos-slider .slick-prev {
  right: 10px!important;
  left: unset!important;
}

[dir="rtl"] .logos-slider .slick-next {
  left: 10px!important;
  right: unset!important;
}

.logos-slider .slick-prev, .logos-slider .slick-next {
    top: 40%!important;
    transform: translateY(-70%)!important;
    display: block !important;
}
.exhibitors-showcase .logos-slider .slick-prev {
  left: 0 !important;
  right: auto !important;
}

.exhibitors-showcase .logos-slider .slick-next {
  right: 0 !important;
  left: auto !important;
}

[dir="rtl"] .exhibitors-showcase .logos-slider .slick-prev {
  right: 0 !important;
  left: auto !important;
}

[dir="rtl"] .exhibitors-showcase .logos-slider .slick-next {
  left: 0 !important;
  right: auto !important;
}

.exhibitors-showcase .logos-slider .slick-prev,
.exhibitors-showcase .logos-slider .slick-next {
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: flex !important;
}

/* Nile Property Expo palette refresh */
:root {
  --nile-royal-blue: #192080;
  --nile-royal-blue-dark: #10165f;
  --nile-ivory: #ffffff;
  --nile-ecru: #eeedeb;
  --nile-gold: #be9857;
  --nile-ink: #163d42;
  --nile-muted: #5e686a;
  --nile-border: rgba(22, 61, 66, 0.16);
  --nile-blue-soft: rgba(25, 32, 128, 0.08);
  --nile-gold-soft: rgba(190, 152, 87, 0.16);
  --nile-shadow: 0 1.1rem 2.7rem rgba(25, 32, 128, 0.12);
  --nile-card-radius: 1.25rem;
  --nile-card-radius-sm: 1rem;
}

body {
  background: var(--nile-ivory);
  color: var(--nile-ink);
}

.header {
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom-color: rgba(22, 61, 66, 0.12);
  box-shadow: 0 0.65rem 1.9rem rgba(25, 32, 128, 0.06);
}

.brand-name,
.nav-link,
.mobile-nav-link,
.section-title,
.footer-brand .brand-name {
  color: var(--nile-royal-blue);
}

.brand-icon,
.footer-brand .brand-icon {
  background: var(--nile-blue-soft);
  border-color: rgba(25, 32, 128, 0.22);
}

.brand-icon i,
.brand-subtitle,
.footer-brand .brand-subtitle,
.footer-info i {
  color: var(--nile-royal-blue);
}

.nav-link:hover,
.mobile-nav-link:hover,
.intro-feature-kicker,
.intro-card-label,
.intro-feature-meta i,
.intro-feature-list li::marker {
  color: var(--nile-gold);
}

.btn,
.btn-lang-single {
  letter-spacing: 0;
}

.btn-primary,
.btn-lang-single,
.btn-lang-switch,
.btn-secondary:hover,
.form-actions .btn,
.modal-actions .btn,
.thank-you-actions .btn {
  background: var(--nile-royal-blue);
  border-color: var(--nile-royal-blue);
  color: var(--nile-ivory);
  box-shadow: 0 0.8rem 1.65rem rgba(25, 32, 128, 0.18);
}

.btn-primary:hover,
.hero-actions .btn-primary:hover,
.btn-lang-single:hover,
.btn-lang-switch:hover,
.form-actions .btn:hover,
.modal-actions .btn:hover,
.thank-you-actions .btn:hover {
  background: var(--nile-royal-blue-dark);
  border-color: var(--nile-royal-blue-dark);
  box-shadow: 0 1rem 2rem rgba(25, 32, 128, 0.24);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--nile-ivory);
}

.btn-outline:hover {
  border-color: var(--nile-gold);
  color: var(--nile-gold);
}

.hero {
  background: #111827;
}

.hero-background::before {
  background: rgba(25, 15, 15, 0.49);
}

.hero-content,
.hero-title {
  color: var(--nile-ivory);
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
}

.hero-badge {
  background: transparent;
  border: 0;
  color: var(--nile-ivory);
}

.hero-badge i,
.hero-info .info-item i {
  color: var(--nile-gold);
}

.intro-feature,
.visit-carousel-section {
  background: var(--nile-ecru);
}

.intro-feature::before {
  background: rgba(238, 237, 235, 0.9);
}

#london-feature,
.proven-reach,
.footer {
  background: var(--nile-ivory);
}

#london-feature::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(238,237,235,0.58) 62%, rgba(255,255,255,0.95) 100%);
}

.intro-feature-heading h2,
.intro-feature-card h3,
.visit-carousel-copy h2,
.visit-carousel-text h3,
.international-editions-copy h2,
.proven-reach-copy h2,
.proven-reach-number,
.footer-title {
  color: var(--nile-royal-blue);
}

.intro-feature-card,
#london-feature .intro-feature-card,
#intro-feature .intro-feature-card {
  background: var(--nile-ivory);
  border: 1px solid var(--nile-border);
  box-shadow: var(--nile-shadow);
}

.intro-feature-meta span {
  background: var(--nile-gold-soft);
  color: var(--nile-ink);
}

.intro-feature-card p,
.visit-carousel-text p,
.visit-carousel-cta p,
.international-editions-copy p,
.proven-reach-copy p,
.proven-reach-footer p,
.footer-description,
.footer-copyright,
.footer-legal {
  color: var(--nile-muted);
}

.visit-carousel-card {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.visit-carousel-slider .slick-prev,
.visit-carousel-slider .slick-next {
  background: var(--nile-ivory);
  border: 1px solid rgba(25, 32, 128, 0.18);
  box-shadow: none;
}

.exhibitors-showcase .logos-slider .slick-prev,
.exhibitors-showcase .logos-slider .slick-next {
  background: var(--nile-ivory);
  border: 1px solid var(--nile-border);
  box-shadow: 0 0.9rem 1.8rem rgba(25, 32, 128, 0.14);
}

.visit-carousel-slider .slick-prev::before,
.visit-carousel-slider .slick-next::before,
.exhibitors-showcase .logos-slider .slick-prev::before,
.exhibitors-showcase .logos-slider .slick-next::before {
  color: var(--nile-royal-blue);
}

.visit-carousel-slider .slick-dots li button {
  border-color: rgba(25, 32, 128, 0.34);
}

.visit-carousel-slider .slick-dots li.slick-active button {
  background: var(--nile-gold);
  border-color: var(--nile-gold);
}

.exhibitors-showcase {
  background: var(--nile-royal-blue);
  color: var(--nile-ivory);
}

.exhibitors-showcase .developers-note {
  color: rgba(255, 255, 255, 0.82);
}

.exhibitors-showcase .logos-slider .logo-item {
  background: var(--nile-ivory);
  border-color: rgba(190, 152, 87, 0.24);
}

.exhibitors-showcase .logos-slider .logo-item:hover,
.exhibitors-showcase .logos-slider .slick-current .logo-item,
.exhibitors-showcase .logos-slider .logo-item.active {
  border-color: var(--nile-gold);
}

.proven-reach {
  border-top: 1px solid var(--nile-border);
  border-bottom: 1px solid var(--nile-border);
}

.proven-reach-label {
  color: var(--nile-royal-blue);
}

.proven-reach-icon,
.proven-reach-label > span:last-child {
  border-color: rgba(25, 32, 128, 0.22);
  background: var(--nile-blue-soft);
  color: var(--nile-royal-blue);
}

.proven-reach-stat {
  background: var(--nile-ivory);
  border-color: rgba(22, 61, 66, 0.12);
  box-shadow: 0 0.8rem 1.8rem rgba(25, 32, 128, 0.06);
}

.proven-reach-text,
.international-editions-kicker {
  color: var(--nile-ink);
}

.international-city img {
  border: 0;
  box-shadow: none;
}

.register-section,
#register {
  background: linear-gradient(135deg, var(--nile-royal-blue) 0%, var(--nile-royal-blue-dark) 100%);
}

#register .section-title,
#register .section-description {
  color: var(--nile-ivory);
}

#register .registration-form {
  border-color: rgba(190, 152, 87, 0.28);
  box-shadow: 0 1.1rem 2.7rem rgba(0, 0, 0, 0.16);
}

.form-input:focus,
.form-select:focus,
div#register-modal .form-input:focus,
div#register-modal .form-select:focus {
  border-color: var(--nile-gold);
  box-shadow: 0 0 0 3px rgba(190, 152, 87, 0.16);
}

.footer {
  border-top-color: rgba(22, 61, 66, 0.12);
}

/* Consistent card radius */
.intro-feature-card,
#london-feature .intro-feature-card,
#intro-feature .intro-feature-card,
.intro-feature-media,
.intro-feature-media img,
.visit-carousel-card,
.international-city,
.international-city-frame,
.international-city img,
.proven-reach-stat,
.counter-item,
.benefit-item,
.image-container,
.image-container img,
.logo-item,
.exhibitors-showcase .logos-slider .logo-item,
.registration-form,
#register .registration-form,
.modal-content,
.thank-you-container {
  border-radius: var(--nile-card-radius) !important;
}

.international-city,
.international-city-frame,
.intro-feature-media,
.image-container,
.visit-carousel-card {
  overflow: hidden;
}

@media (max-width: 640px) {
  .intro-feature-card,
  #london-feature .intro-feature-card,
  #intro-feature .intro-feature-card,
  .intro-feature-media,
  .intro-feature-media img,
  .visit-carousel-card,
  .international-city,
  .international-city-frame,
  .international-city img,
  .proven-reach-stat,
  .counter-item,
  .benefit-item,
  .image-container,
  .image-container img,
  .logo-item,
  .exhibitors-showcase .logos-slider .logo-item,
  .registration-form,
  #register .registration-form,
  .modal-content,
  .thank-you-container {
    border-radius: var(--nile-card-radius-sm) !important;
  }
}

