:root {
    --bg: #1d1d1f;
    --text: #fff;
    --accent: #0071e3;
    --font-main: 'Poppins', sans-serif;
  }
  .hero {
  background: #000;
  color: #fff;
}
.burger span {
    background: #fff;
  }
.logo img {
    filter: brightness(0) invert(1);
}
body{
  background: #1d1d1f;
}

.hero::before {
  background:
    radial-gradient(circle at 20% 40%, rgba(168, 85, 247, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 60% 30%, rgba(6, 182, 212, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 40% 70%, rgba(34, 197, 94, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.95) 0%, #000000 100%);
  background-size: 250% 250%;
  animation: auroraShift 18s ease-in-out infinite;
  opacity: 1;
  filter: blur(50px) brightness(1.2) contrast(1.1);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(29, 29, 31, 0.2) 40%,
    rgba(29, 29, 31, 0.5) 70%,
    #1d1d1f 100%
  );
  pointer-events: none;
  z-index: 0;
}


  /* 🔒 Scoped styles for eylet profile section */
  .ep-section {
    background: #1d1d1f;
    color: #d5d5d5;
    padding: 80px 16px;
    border-radius: 24px;
    margin: 80px auto;
    max-width: 1400px;
  }

  .ep-container {
    background: #1d1d1f;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  .ep-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
  }

  .ep-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 32px;
    color: #ccc;
  }

  .ep-button {
    display: inline-block;
    background: #0071e3;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 48px;
    transition: background 0.3s ease;
  }

  .ep-button:hover {
    background: #005bb5;
  }

  /* 🖼️ Image layout */
  .ep-images {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }

  .ep-img {
    width: 240px;
    max-width: 90vw;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
  }

  .ep-img.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* 🔁 Desktop increase image size */
  @media (min-width: 769px) {
    .ep-img {
      width: 300px;
    }
  }

  /* 📱 Mobile adjustments */
  @media (max-width: 768px) {
    .ep-images {
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .ep-img {
      width: 80%;
      max-width: 300px;
    }

    .ep-hide-mobile {
      display: none !important;
    }
  }


    .efs-section {
      background: #1d1d1f;
      color: #d5d5d5;
      padding: 80px 16px;
/*      border-radius: 24px;*/
      margin: 80px auto;
    }

    .efs-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .efs-heading {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 40px;
    }

    .efs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }

    .efs-card {
      background: #2c2c2c;
      border-radius: 16px;
      padding: 24px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
      opacity: 0;
      transform: translateY(20px);
    }

    .efs-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Hover Overlay Base */
    .efs-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 0;
    }

    .efs-card:hover::after {
      opacity: 1;
    }

/* 🌟 Final iOS-style vibrant overlays — optimized for white text */
.efs-card:nth-child(1)::after  { background: rgba(2, 127, 255, 0.25); }   /* Bright Blue — #027FFF */
.efs-card:nth-child(2)::after  { background: rgba(255, 94, 58, 0.25); }   /* Vivid Peach-Red — #FF5E3A */
.efs-card:nth-child(3)::after  { background: rgba(52, 232, 158, 0.25); }  /* Aqua Green — #34E89E */
.efs-card:nth-child(4)::after  { background: rgba(255, 195, 0, 0.25); }   /* Golden Yellow — #FFC300 */
.efs-card:nth-child(5)::after  { background: rgba(191, 103, 255, 0.25); } /* Soft Purple — #BF67FF */
.efs-card:nth-child(6)::after  { background: rgba(255, 133, 133, 0.25); } /* Warm Coral — #FF8585 */
.efs-card:nth-child(7)::after  { background: rgba(0, 191, 255, 0.25); }   /* Sky Blue — #00BFFF */
.efs-card:nth-child(8)::after  { background: rgba(255, 80, 120, 0.25); }  /* Candy Pink — #FF5078 */
.efs-card:nth-child(9)::after  { background: rgba(144, 224, 67, 0.25); }  /* Apple Lime — #90E043 */
.efs-card:nth-child(10)::after { background: rgba(255, 170, 0, 0.25); }   /* Deep Orange-Yellow — #FFAA00 */
.efs-card:nth-child(11)::after { background: rgba(0, 230, 150, 0.25); }   /* Neon Mint — #00E696 */
.efs-card:nth-child(12)::after { background: rgba(112, 161, 255, 0.25); } /* iOS Lavender Blue — #70A1FF */

    .efs-card * {
      position: relative;
      z-index: 1;
    }

    .efs-card img {
      width: 56px;
      height: 56px;
      margin-bottom: 16px;
    }

    .efs-card h3 {
      font-size: 1.1rem;
      margin-bottom: 8px;
      font-weight: 600;
      color: #d5d5d5;
    }

    .efs-card p {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #ccc;
    }

    .tds-section {
      background: #1d1d1f;
      color: #d5d5d5;
      padding: 80px 16px;
      max-width: 100%;
      margin: 0 auto;
      font-family: system-ui, sans-serif;
    }

    .tds-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .tds-heading {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 24px;
      text-align: left;
    }

    .tds-table {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 48px;
      margin-bottom: 48px;
    }

    .tds-table p {
      margin: 0;
      font-size: 0.95rem;
      color: #ccc;
    }

    .tds-table strong {
      display: block;
      color: #fff;
      margin-bottom: 4px;
    }

    .tds-divider {
      border-top: 1px solid #444;
      margin: 40px 0;
    }

    .tds-text-block {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #ccc;
      margin-bottom: 32px;
    }

    .tds-faq h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .tds-faq p {
      font-size: 0.95rem;
      color: #ccc;
      margin-bottom: 24px;
    }

    /* ✅ Animation styles */
    .tds-block {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    .tds-block.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 768px) {
      .tds-table {
        grid-template-columns: 1fr;
      }
    }

    .evs-section {
      position: relative;
      width: 100%;
/*      height: 100vh;*/
      background: #000;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .evs-video {
      width: 80%;
      object-fit: cover;
      object-position: center;
      margin-bottom:50px;
    }

    .evs-controls {
      position: absolute;
      bottom: 0px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .evs-button {
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
      padding: 10px 18px;
      font-size: 14px;
      border: 1px solid #fff;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .evs-button:hover {
      background: rgba(255, 255, 255, 0.3);
    }

    @media (max-width: 768px) {
      .evs-section {
/*        height: 80vh;*/
      }

      .evs-button {
        font-size: 13px;
        padding: 8px 16px;
      }

      .evs-controls {
        bottom: 20px;
      }
    }

    @media (max-width: 480px) {
      .evs-section {
/*        height: 70vh;*/
      }
    }

   



.es-scroll-section {
/*  height: 300vh; */
  position: relative;
  background: #000;
}

.es-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
/*  height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.es-video {
  width: 80%;
/*  height: 100%;*/
  object-fit: cover;
}

@media (max-width: 768px) {
  .es-scroll-section {
/*    height: 300vh;*/
  }
  .es-wrapper {
/*    height: 100vh;*/
  }
  .es-video {
    width: 100%;
/*    height: 100%;*/
    object-fit: cover;
  }
}



   
  .eg-gallery { padding:60px 16px; background: #1d1d1f;}
  .eg-grid    { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:1200px; margin:0 auto; }
  .eg-thumb   { width:100%; border-radius:10px; aspect-ratio:2/2; object-fit:cover; cursor:pointer; transition:transform .3s }
  .eg-thumb:hover{ transform:scale(1.05); }
  .eg-lightbox{ position:fixed; inset:0; background:rgba(0,0,0,.85); display:none; align-items:center; justify-content:center; z-index:9999; flex-direction:column }
  .eg-lightbox.open{ display:flex; }
  .eg-lightbox img{ max-width:75vw; max-height:75vh; border-radius:10px; margin-bottom:10px; }
  .eg-btn{ position:absolute; background:#fff; color:#000; border:none; font-size:24px; 
/*    padding:10px 16px;*/
    width: 3rem;
    height: 3rem;
     border-radius:50%; cursor:pointer; }
  .eg-close{ top:80px; right:20px; } .eg-prev{ left:20px; top:50%; transform:translateY(-50%);} .eg-next{ right:20px; top:50%; transform:translateY(-50%);}
  @media(max-width:1024px){ .eg-grid{ grid-template-columns:repeat(2,1fr);} }
  @media(max-width:768px){ .eg-grid{ grid-template-columns:1fr; gap:12px;} .eg-btn{font-size:20px;} }
  /* Slider on mobile */
  @media(max-width: 768px) {
  /* Desktop: grid view */
  .eg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden; /* prevents overflow scrollbars */
  }

  /* Mobile: slider layout */
  @media(max-width: 768px) {
    .eg-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      gap: 0;
    }

    .eg-slide {
      flex: 0 0 100%;
      scroll-snap-align: center;
      position: relative;
    }

    .eg-thumb {
      width: 100%;
      border-radius: 0;
      aspect-ratio: 2/2;
      object-fit: cover;
    }

    .eg-dots {
      text-align: center;
      margin-top: 12px;
    }

    .eg-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #888;
      border-radius: 50%;
      margin: 0 4px;
      transition: background 0.3s;
      cursor: pointer;
    }

    .eg-dot.active {
      background: #fff;
    }
  }

