  body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #000000;
      /* solid black */
      color: #ffffff;
      /* white text */
  }

  .overview-section {
      display: flex;
      flex-wrap: wrap;
      background-color: #000;
      padding: 40px;
      border-radius: 12px;
      max-width: 1200px;
      margin: 40px auto;
      gap: 30px;
      box-shadow: 0 0 30px rgba(255, 255, 0, 0.2);
      /* soft yellow glow */
  }

  .overview-left {
      flex: 1 1 45%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 20px;
  }

  .overview-image {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
      /* yellow glow */
      border: 2px solid #ffcc00;
  }

  .overview-right {
      flex: 1 1 50%;
      background-color: #1a1a1a;
      padding: 30px;
      border-radius: 12px;
      border: 1px solid #5100ff;
      box-shadow: inset 0 0 8px rgba(255, 255, 0, 0.2);
  }

  .overview-right h2 {
      font-size: 2.5rem;
      color: #ffffff;
      /* yellow heading */
      margin-bottom: 20px;
      font-weight: bold;
      text-transform: uppercase;
      border-bottom: 2px solid #5100ff;
      display: inline-block;
      padding-bottom: 5px;
  }

  .overview-right p {
      font-size: 1rem;
      margin-bottom: 18px;
      line-height: 1.7;
      color: #f1f1f1;
  }

  @media (max-width: 768px) {
      .overview-section {
          flex-direction: column;
          padding: 20px;
      }

      .overview-right h2 {
          font-size: 2rem;
          text-align: center;
      }
  }

  .sponsor-section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
  }

  .sponsor-section h2 {
      font-size: 2.2rem;
      color: #ffd700;
      margin-bottom: 40px;
  }

  .sponsor-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
  }

  .sponsor-card {
      background-color: #111;
      padding: 20px;
      border-left: 5px solid #ffd700;
      border-radius: 12px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sponsor-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px #ffd70088;
  }

  .sponsor-card h3 {
      color: #ffd700;
      margin-top: 10px;
      font-size: 1.2rem;
  }

  .sponsor-card ul {
      list-style-type: disc;
      margin-left: 20px;
      margin-top: 10px;
  }

  .circle {
      width: 40px;
      height: 40px;
      background-color: #ffd700;
      color: #000;
      font-weight: bold;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
  }

  h2,
  h3 {
      color: #ffd700;
  }

  ul {
      padding-left: 20px;
  }

  section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
  }

  /* Top Sponsorship Section */
  .benefits-section {
      display: flex;
      flex-wrap: wrap;
      background-color: #111;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 50px;
  }

  .benefits-left,
  .benefits-right {
      flex: 1;
      padding: 20px;
      min-width: 300px;
  }

  .benefits-left ul li {
      margin-bottom: 10px;
      line-height: 1.5;
  }

  .speech-bubble {
      background-color: #fff;
      color: #000;
      border-radius: 10px;
      padding: 20px;
      position: relative;
  }

  .speech-bubble h3 {
      background-color: #ffd700;
      padding: 5px 10px;
      border-radius: 5px;
      display: inline-block;
      margin-bottom: 10px;
      color: black;
  }

  .speech-bubble::after {
      content: '';
      position: absolute;
      right: 100%;
      top: 30%;
      border-width: 20px;
      border-style: solid;
      border-color: transparent white transparent transparent;
  }

  /* Event Section */
  .event-section {
      background-color: #222;
      padding: 40px 20px;
      border-radius: 10px;
  }

  .event-heading {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.8rem;
      line-height: 1.4;
  }

  .event-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
  }

  .event-column {
      flex: 1;
      min-width: 280px;
      background-color: #111;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 8px #333;
  }

  .center {
      text-align: center;
  }

  .container {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
  }

  .block {
      margin-bottom: 60px;
  }

  .title {
      font-size: 1.8em;
      color: #ffd700;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
  }

  .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
  }

  .item {
      background-color: #111;
      border: 1px solid #333;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 0 10px #222;
      line-height: 1.5;
      position: relative;
  }

  .item span {
      display: inline-block;
      background: #ffd700;
      color: #000;
      font-weight: bold;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      text-align: center;
      line-height: 28px;
      margin-right: 10px;
  }

  .item small {
      display: block;
      color: #bbb;
      font-size: 0.9em;
      margin-top: 5px;
  }

  .modal-content {
      border-radius: 15px;
      background-color: #f9f9f9;
      color: #000;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }

  .modal-header {
      border-bottom: 1px solid #ddd;
      background-color: #fffbe6;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
  }

  .modal-title {
      font-weight: bold;
      color: #333;
  }

  .modal-body {
      padding: 20px 25px;
  }

  .form-label {
      font-weight: 600;
      margin-bottom: 6px;
      color: #333;
  }

  .form-control {
      border-radius: 10px;
      padding: 10px 14px;
      font-size: 1rem;
      border: 1px solid #ccc;
      transition: border-color 0.3s, box-shadow 0.3s;
  }

  .form-control:focus {
      border-color: #ffc107;
      box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
  }

  .modal-footer {
      background-color: #fff;
      border-top: 1px solid #ddd;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
  }

  .btn-warning {
      font-weight: bold;
      padding: 8px 20px;
      border-radius: 8px;
  }

  h1,
  h2,
  h5 {
      color: #ffffff;
  }

  p,
  a,
  label,
  input,
  textarea {
      color: #ffffff;
  }

  .bg-secondary {
      background-color: #1e1e1e !important;
  }

  .btn-primary {
      background-color: #007bff;
      border: none;
  }

  .btn-primary:hover {
      background-color: #0056b3;
  }

  .rounded {
      border-radius: 1rem;
  }


  .sponsor-card-custom {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sponsor-card-custom:hover {
      transform: translateY(-6px);
      box-shadow: 0 0.5rem 1.2rem rgba(0, 123, 255, 0.15);
  }

  .icon-circle {
      width: 60px;
      height: 60px;
      font-size: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3);
  }

  .featured-event-section h3 {
      color: #ffc107;
      font-weight: 600;
  }

  .featured-event-section h4 {
      color: #fff;
      font-size: 1.2rem;
  }

  .featured-event-section ul {
      padding-left: 1.2rem;
      list-style-type: disc;
  }

  .nav-link.hover-effect {
      transition: background-color 0.3s ease, color 0.3s ease;
  }

  .nav-link.hover-effect:hover {
      background-color: #ffffff1a;
      /* subtle white overlay on dark bg */
      color: #ffc107 !important;
      /* optional hover color like yellow */
  }

  .nav-link .bi {
      transition: transform 0.3s ease;
  }

  .nav-link:hover .bi {
      transform: translateX(4px);
      /* arrow slides slightly on hover */
  }

  #Arabic {
      display: none;
      /* hide Arabic content initially */
  }

  /* Style buttons like nav links with subtle hover */
  .lang-btn {
      background: transparent;
      border: 1.5px solid transparent;
      border-radius: 8px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.3s, border-color 0.3s;
      font-size: 1rem;
  }

  .lang-btn:hover {
      background-color: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.3);
  }

  /* Optional: spacing on the nav-item container for buttons */
  .nav-item.d-flex {
      gap: 0.5rem;
  }


  @media (min-width: 576px) {
      .uniform-btn {
          min-width: 240px;
          /* Same width for all on larger screens */
      }

      .buttons-link {
          margin-left: 200px;
      }

  }