body {
    font-family: 'Inter', sans-serif;
    background-color: #1a1a2e;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
  }
  header {
    background: radial-gradient( #7dadf7 , #285ab1);
    color: white;
    text-align: center;
    padding: 5rem 1rem;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
  }
  .header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
  }
  header .container {
    position: relative;
    z-index: 1;
  }
  h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
  }
  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    margin: 0 0.5rem;
  }
  .btn-primary {
    background-color: #e94560;
    color: white;
  }
  .btn-primary:hover {
    background-color: #c03950;
    transform: translateY(-2px);
  }
  .btn.disabled,
  .btn[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
  }

  .btn-locked {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #444;
    color: #fff;
  }
  
  .btn-secondary {
    background-color: #275880;
    color: white;
  }
  .btn-secondary:hover {
    background-color: #162d5e;
    transform: translateY(-2px);
  }
  section {
    padding: 5rem 1rem;
  }
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e94560;
    text-align: center;
    margin-bottom: 2rem;
  }
  .card {
    background-color: #0f3460;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
  .feature-box {
    background-color: #2a2a40;
    padding: 1.5rem;
    border-radius: 0.5rem;
    width: 280px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }
  .carousel-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
  }
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
  }
  .carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 0.5rem;
    z-index: 10;
  }
  .carousel-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .carousel-nav-btn.prev {
    left: 10px;
  }
  .carousel-nav-btn.next {
    right: 10px;
  }
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .dot {
    width: 12px;
    height: 12px;
    background-color: #533483;
    border-radius: 50%;
    cursor: pointer;
  }
  .dot.active {
    background-color: #e94560;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    background-color: #533483;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
  }
  .social-icon:hover {
    background-color: #e94560;
    transform: translateY(-2px);
  }
  .social-icon svg {
    fill: white;
    width: 24px;
    height: 24px;
  }
  .mailing-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: #0f3460;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
  }
  .mailing-form input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #444;
    background-color: #1a1a2e;
    color: white;
    margin-bottom: 1rem;
  }
  .footer {
    background-color: #0a0a0f;
    text-align: center;
    padding: 2rem 1rem;
    color: #888;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }

  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    animation: zoom 0.6s;
  }
  
  @keyframes zoom {
    from { transform: scale(0); }
    to { transform: scale(1); }
  }
  
  #caption {
    text-align: center;
    color: #ccc;
    margin-top: 10px;
  }
  
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    cursor: pointer;
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
  }
  
  #media {
    background-color: #0e021a; /* Or any hex, RGB, or named color you like */
  }

  .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.2;
    pointer-events: none;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100vw;               /* This makes it responsive to device width */
    width: 177.78vw;             /* 16:9 aspect ratio (100vw * 16 / 9) */
    min-height: 100vh;           /* Ensures it covers full height too */
  }
  
  .hero-header {
    min-height: 300px;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem; /* consistent vertical spacing */
    margin-bottom: 0;
  }

  header .container {
    position: relative;
    z-index: 1;
  }
  
  .press-layout {
    display: flex;
    align-items: flex-start; /* Crucial: aligns children at the top */
    gap: 3rem;
    margin-top: 0; /* Remove any extra space */
  }
  
  .factsheet {
  background-color: #111;
  padding: 1.5rem;
  border-radius: 8px;
  color: #fff;
  width: 250px;
}

.factsheet h2 {
  color: #c57aff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.fact-pair {
  margin-bottom: 1.2rem;
}

.fact-label {
  font-weight: 600;
  color: #c57aff; /* Label color */
  margin-bottom: 0.2rem;
}

.fact-value {
  color: #ffffff; /* Value color */
}

.factsheet,
  .press-content {
    margin-top: 0;   /* Reset default margin */
    padding-top: 0;  /* Reset any padding */
  }

  .press-layout {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
    margin-top: 2rem;
  }
  
  .factsheet {
    flex: 0 0 250px;
    background-color: #111;
    color: rgb(150, 78, 184);
    padding: 1.5rem;
    border-radius: 8px;
  }
  
  .press-content h2:first-of-type {
    margin-top: 0;   /* Ensure “Elevator Pitch” isn’t pushed down */
  }
  
  .factsheet h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .factsheet ul {
    list-style: none;
    padding: 0;
  }
  
  .factsheet li {
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  
  .press-content {
    flex: 1;
  }

  .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 1rem; /* spacing between images */
    max-width: 800px;
    margin: 1rem auto;
    margin-top: 1rem;
    padding-top: 0;
  }
  
  .image-grid img {
    width: 100%;
    border-radius: 2px;
    object-fit: cover;
    aspect-ratio: 16 / 9; /* keeps them consistent */
  }

  .press-content h2 {
    margin-top: 2rem;
    margin-bottom: 0.4rem;
  }
  
  .press-content p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
  }

  .logocontainer {
    display: flex;
    flex-direction: column; /* Stacks the children vertically */
    justify-content: center; /* Centers items vertically in the container */
    align-items: center; /* Centers items horizontally in the container */
    text-align: center; /* Centers text within the container */
  }
  .logo {
    max-width: 80%; /* Adjust this to your preferred width */
    height: auto;
  }

  .button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  main {
    margin: 0;
    padding: 0;
  }
