


.fitzone-wrapperX {
      margin: 0;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      background:url(../img/3b5b68e3-978e-4ff4-b922-0a8576d5f5e2.jpg) no-repeat center/cover  ;
      font-family: "Cairo", sans-serif;
      color: #fff;
      overflow: hidden;
    }

    
    .gameZoneX {
      text-align: center;
      background: rgba(25, 25, 25, 0.85);
      padding: 50px 70px;
      border-radius: 15px;
      box-shadow: 0 0 25px rgba(0, 255, 180, 0.3);
      animation: neonPulse 3s infinite alternate;
    }

    @keyframes neonPulse {
      0% { box-shadow: 0 0 15px rgba(0, 255, 200, 0.8); }
      100% { box-shadow: 0 0 35px rgb(182, 76, 38); }
    }

    .gameTitleX {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #00ffd0;
      text-shadow: 0 0 10px #00ffd0, 0 0 20px #00ffd0;
    }

    .gameDescX {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #cfcfcf;
    }

    .btnBoxX {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .btnX {
      background: transparent;
      border: 2px solid #00ffd0;
      color: #00ffd0;
      padding: 12px 28px;
      border-radius: 8px;
      font-size: 1em;
      cursor: pointer;
      transition: all 0.3s ease;
      text-shadow: 0 0 8px #00ffd0;
    }

    .btnX:hover {
      background: #00ffd0;
      color: #000;
      box-shadow: 0 0 15px #00ffd0, 0 0 30px #00ffd0;
      transform: scale(1.05);
    }

    
    .smokeX {
      position: absolute;
      pointer-events: none;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(0,255,200,0.2) 0%, transparent 80%);
      border-radius: 50%;
      animation: floatSmoke 6s infinite ease-in-out alternate;
      filter: blur(60px);
    }

    .smokeX:nth-child(1) { top: 15%; left: 20%; animation-delay: 0s; }
    .smokeX:nth-child(2) { top: 60%; right: 25%; animation-delay: 2s; }
    .smokeX:nth-child(3) { bottom: 15%; left: 40%; animation-delay: 4s; }

    @keyframes floatSmoke {
      0% { transform: translateY(0) scale(1); opacity: 0.5; }
      100% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
    }


 body, html {
  scroll-behavior: smooth;
  background-color: black;
      margin: 0;
      padding: 0;
      height: 100%;
      
    }

    /*-----------------------------------------------Navbar-----------------------------------------------------------------------------------*/
    .navbar {
    background-color: transparent;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      padding: 15px 30px;
      
    }

    

    .navbar.scrolled {
      background-color:black;
      color: white;
    }

    .logo {
      text-decoration: none;
      color: white;
      font-weight: bold;
      width: 80px;
      height: auto;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .navbar-brand i {
      color: gray;
      font-size: 22px;
    }

    .nav-link {
      color: white !important;
      font-weight: 500;
      padding: 8px 15px;
      border-radius: 20px;
      transition: 0.3s;
      

    }

   

    .nav-link:hover {
      background-color: #00ffd0;
      color: black !important;
    }

    .nav-link.active {
      
      background-color: #fff !important;
      color: black !important;
    }

    .social-icons a {
      color: white;
      margin-left: 12px;
      font-size: 18px;
      transition: 0.3s;
    }

    .social-icons a:hover {
      color: #00ffd0;
    }




.navbar-collapse.show {
  background-color: white !important;  
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  padding: 10px 0;
  transition: background-color 0.3s ease;
}


.navbar-collapse.show .nav-link {
  color: black !important;
}

.navbar-collapse.collapsing,
.navbar-collapse.show {
  background-color: white !important;
  transition: background-color 0.2s ease;
  border-radius: 10px;
}


.navbar-collapse.collapsing .nav-link,
.navbar-collapse.show .nav-link {
  color: black !important;
}






@media (min-width: 992px) {
  .navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
  }

  
  .navbar.scrolled {
    background-color: black !important;
  }

  .nav-link {
    color: white !important;
  }
}




    /*--------------------------------------------hero-section------------------------------------------------------------------------------*/
   

    .heroo {
      background: url(../img/istockphoto-2208288684-612x612.jpg) no-repeat center center/cover;
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      color: white;
    }

    .heroo h1 {
      font-size: 48px;
      font-weight: 800;
      color:white;
       text-shadow: 2px 2px 5px #00ffd0;
    }
    .hero {
      background: url(../img/istockphoto-1223133121-612x612.jpg) no-repeat center center/cover;
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      color: white;
    }

    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
      margin-left: 60px;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      color:white;
       text-shadow: 2px 2px 5px #00ffd0;
    }

    .hero p {
      font-weight: 300;
      font-size: 16px;
      margin-top: 15px;
    }

.get-started-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(to right, #569a8d, #fff);
      color: white;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: bold;
      margin-top: 30px;
      border: none;
      text-decoration: none;
    }


.arrow-ico {
      background-color: #fff;
      color: #00ffd0;
      padding: 6px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 32px;
      }

      .hero-content {
        margin-left: 30px;
      }

      .social-icons {
        display: none !important;
      }
    }

    /*------------------------------------------------------about-section---------------------------------------------------------------------------*/


  
   .about-section {
  width: 100%;
  min-height: 100vh;

  padding: 60px 20px;
  color: #fff;
}

.section-heading {
  font-size: 42px;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 5px #00ffd0;
}

.about-section img {
  max-width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.stats h4 {
  font-size: 32px;
  color: white;
  text-shadow: 2px 2px 5px #00ffd0;
  font-weight: bold;
}

.stats p {
  margin-top: 5px;
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .about-section {
    text-align: center;
  }

  .stats .col-4 {
    margin-bottom: 20px;
  }
}


    /*-------------------------------------------------card---------------------------------------------------------------------------------------*/

             .packages-section {
      min-height: 100vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      
      padding: 40px 20px;
      gap: 40px;
      flex-wrap: nowrap;
      flex-direction: row;
      position: relative;
      overflow: hidden;
    }

    .section-title {
      position: relative;
      margin-top: 40px;
      margin-bottom: 30px;
      width: 100%;
      text-align: center;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      text-shadow: 2px 2px 5px #00ffd0;
    }

    .package-card {
      position: relative;
      width: 300px;
      min-height: 500px;
      background-size: cover;
      background-position: center;
      color: #fff;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.6);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;
      transition: transform 0.4s ease;
      transform: scale(1);
    }

    .package-card:hover {
      transform: scale(1.05);
    }

    .most-seller {
      position: absolute;
      top: 15px;
      right: -35px;
      background-color: gold;
      color: #000;
      padding: 5px 50px;
      transform: rotate(45deg);
      font-weight: bold;
      font-size: 14px;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
    }

    .package-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      text-shadow: 1px 1px 3px #000;
    }

    .price {
      font-size: 22px;
      margin: 10px 0;
    }

    .price del {
      color: #aaa;
      margin-right: 10px;
    }

    .price span {
      color: #00ff99;
      font-weight: bold;
    }

    .duration {
      font-size: 16px;
      color: #fff;
      margin: 10px 0 20px;
      position: relative;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }

    .duration::after {
      content: "";
      display: block;
      height: 2px;
      background: #fff;
      width: 100%;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.8s ease;
    }

    .package-card:hover .duration::after {
      transform: scaleX(1);
    }

    .features-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      text-align: left;
    }

    .features-list li {
      position: relative;
      padding-left: 30px;
      margin-bottom: 12px;
      font-size: 15px;
    }

    .features-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #0f0;
      font-weight: bold;
    }

    .subscribe-btn {
      background-color: #ad042c;
      color: #fff;
      border: none;
      padding: 12px 25px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
      text-decoration: none;
      width: fit-content;
      margin: 0 auto;
    }

    .subscribe-btn:hover {
      background-color: gray;
    }

    @media (max-width: 1024px) {
      .packages-section {
        flex-wrap: wrap;
        padding-top: 80px;
      }

      .section-title {
        position: static;
        margin-bottom: 20px;
      }
    }


    /*-----------------------------------------------------transformation------------------------------------------------------------------------------*/


    .transformation-section {
  min-height: 100vh;

  color: white;
  
  padding: 40px 20px;
  text-align: center;
}


.transformation-section h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 5px #00ffd0;
}

.transformation-section .sub-text {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 40px;
}


.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.image-box {
 
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 10px;
}

.before-after {
  position: relative;
  height: 100%;
}

.before-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after .after {
  position: absolute;
  top: 100%;
  left: 0;
  transition: top 0.5s ease-in-out;
  z-index: 2;
}

.image-box:hover .after {
  top: 0;
}


.label {
  position: absolute;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  z-index: 3;
  border-radius: 5px;
  transition: opacity 0.4s ease;
}

.before-label {
background-color: #569a8d;
  top: 10px;
  left: 10px;
  opacity: 1;
}

.after-label {
  background-color: #9C0C2D;
  bottom: 10px;
  right: 10px;
  opacity: 0;
}

.image-box:hover .before-label {
  opacity: 0;
}

.image-box:hover .after-label {
  opacity: 1;
}


@media (max-width: 992px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }
}



/*-----------------------------------------------------------------------------------------------------------------------------*/



.nutrition-full-section {
  display: flex;
  align-items: center;
  justify-content: center; 
  flex-wrap: wrap;
  padding: 60px 80px; 
  min-height: 100vh;

  color: white;
  box-sizing: border-box;
}

.nutrition-text-side {
  flex: 1;
  max-width: 600px;
  padding: 20px;
}

.nutrition-heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
  text-shadow: 2px 2px 5px #00ffd0;
}

.nutrition-subtext {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 20px;
}

.nutrition-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.nutrition-feature-item {
  font-size: 16px;
  margin-bottom: 10px;
}

.nutrition-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: linear-gradient(45deg, #000, #fff);
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.nutrition-start-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #fff, #000);
}

.arrow-icon {
  background: transparent;
  font-size: 18px;
  transform: rotate(20deg); 
  transition: transform 0.3s ease;
}

.nutrition-start-btn:hover .arrow-icon {
  transform: rotate(45deg); 
}

.nutrition-certificate-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 600px;
}



.nutrition-certificate-img {
  width: 100%;
  max-width: 460px; 
  border: 4px solid #fff;
  box-shadow: 0 0 20px #00ffd0;
  border-radius: 8px;
}


@media (max-width: 768px) {
  .nutrition-full-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .nutrition-certificate-side {
    margin-top: 30px;
  }

  .nutrition-arrow {
    margin: 0 auto 10px auto;
  }

  .nutrition-certificate-img {
    max-width: 90vw;
  }
}













/*----------------------------------------------------------------------------------------------------------------------------------------*/

.faq-wrapper-final {
  color: white;
 
  position: relative;
  max-width: 800px;
  margin: 100px auto 50px;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.faq-heading {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  padding: 12px 30px;
  font-size: 30px;
  font-weight: bold;
  border-radius: 8px;
  color: #fff;
   text-shadow: 2px 2px 5px #00ffd0;
  box-shadow: 0 0 8px rgba(255, 165, 0, 0.2);
  white-space: nowrap;
  z-index: 2;
  text-align: center;
}


.faq-background-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px 30px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}


.faq-item {
  background: #;
  border-left: 4px solid #9c0c2d;
  padding: 15px 20px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.faq-toggle {
  color: #9C0C2D;
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 600px) {
  .faq-heading {
    font-size: 16px;
    padding: 10px 20px;
  }
}



/*----------------------------------------------------------------------------------------------------*/



.cta-section {
  padding: 80px 0;
  background-color: #000;
  color: white;
}

.cta-container {
  width: 90%;
  margin: auto;
}



.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  min-width: 280px;
}

.cta-title {
  color: #fff;
    text-shadow: 2px 2px 4px #00ffd0;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-subtitle {
  color: #9C0C2D;
  text-shadow: 2px 2px 4px #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 18px;
  margin-bottom: 25px;
}


    
.cta-image {
  flex: 1;
  min-width: 100px;
  text-align: center;
}



.cta-image img {
 max-height: 400px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}







@media (max-width: 992px) {
  .cta-row {
    flex-direction: column;
    text-align: center;
  }

  .cta-image {
    order: 1;
    margin-bottom: 30px;
  }

  .cta-text {
    order: 2;
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 22px;
  }

  .cta-desc {
    font-size: 16px;
  }

  .cta-image img {
    max-height: 350px;
    width: 100%;
    max-width: 400px;
  }
}

/* الموبايل (من 600px وأقل) */
@media (max-width: 600px) {
  .cta-section {
    padding: 60px 20px;
  }

  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 20px;
  }

  .cta-desc {
    font-size: 15px;
  }

  .cta-text {
    text-align: center;
  }

  .cta-image img {
    max-height: 300px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}










/*------------------------------------------------------------------------------------------------*/


.site-footer {
  background-color: #ccc7c7;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-name {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.footer-social a {
  color: #9C0C2D;
  font-size: 20px;
  text-decoration: none;
  margin: 0 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: white;
}

.footer-copy {
  font-size: 13px;
  margin-top: 15px;
  color: black;
  transition: 0.3s;
}


















/*---------------------------------------------------------------------------------------------------------*/

.payment-sections-container {
    display: flex;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-section {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 380px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    
    border: 4px solid #66bb6a; 
}


.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 70%; 
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0; 
    filter: blur(1px); 
    z-index: 0;
    pointer-events: none; 
}

.instapay-section::before {
    background-image: url(../img/unnamed.webp); 
}

.vodafone-cash-section::before {
    background-image: url(../img/etisalat_logo.svg); 
}




.section-header {
    display: flex;
    flex-direction: column; 
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    gap: 10px; 
}

.payment-logo {
    width: 50px; 
    height: 50px; 
    object-fit: contain; 
    filter: brightness(1.2);
}

.section-header p {
    font-size: 1.8em;
    font-weight: bold;
    color: #eee;
    margin: 0;
}

.steps-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.step {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
    backdrop-filter: blur(2px);
}

.step-title {
    font-size: 1.2em;
    font-weight: bold;
    color: #ffe082;
    margin-top: 0;
    margin-bottom: 5px;
}

.step-description {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

.payment-number {
    background-color: #000;
    color: #39ff14;
    font-size: 1.5em;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 10px;
    display: inline-block;
    letter-spacing: 1px;
}

.vodafone-cash-section .section-header p {
    color: #e50000;
}

.vodafone-cash-section .payment-number {
    color: #e50000;
}


.vodafone-cash-section {
    border: 4px solid #e50000; 
}


.whatsapp-button {
    background-color: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.whatsapp-button:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.whatsapp-button i {
    font-size: 1.3em;
}

@media (max-width: 900px) {
    .payment-sections-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .payment-section {
        width: 90%;
        padding: 20px;
    }
    .background-number {
        font-size: 5em;
    }
    .section-header p {
        font-size: 1.5em;
    }
    .payment-number {
        font-size: 1.2em;
        padding: 8px 15px;
    }
    .whatsapp-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}













