/* XXL devices (very large screens, 1400px and up) */
@media (min-width: 1400px) {
}

/* Extra large devices (large desktops, 1200px to 1399.98px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* Large devices (desktops, 992px to 1199.98px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
     .section-padding {
    padding: 70px 0;
    overflow-x: hidden !important;
  }

  .hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(8, 8, 8, 0.453) 0%,
      rgba(8, 8, 8, 0.464) 40%,
      rgba(8, 8, 8, 0.445) 50%
    );
    z-index: 2;
    pointer-events: none;
  }

  .about-images {
    position: relative;
   
    
  }

  .screens-navigation {
    margin-top: 1rem;
    text-align: center;
  }

  .download-section {
    position: relative;
    padding: 70px 0;
    background: var(--gradient);
    color: white;
    overflow: hidden;
  }

  

  .contact-section {
    position: relative;
    padding: 70px 0;
    background: white;
    overflow: hidden;
  }



  .navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0px 0px;
    padding:  0 10px 0 0 !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-brand img {
    height: 50px;
}


  
}

/* Medium devices (tablets, 768px to 991.98px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 50px 0;
    overflow-x: hidden !important;
  }

  .hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(8, 8, 8, 0.453) 0%,
      rgba(8, 8, 8, 0.464) 40%,
      rgba(8, 8, 8, 0.445) 50%
    );
    z-index: 2;
    pointer-events: none;
  }

  .about-images {
    position: relative;
    height: 450px;
    margin-bottom: 30px;
  }

  .screens-navigation {
    margin-top: 1rem;
    text-align: center;
  }

  .download-section {
    position: relative;
    padding: 50px 0;
    background: var(--gradient);
    color: white;
    overflow: hidden;
  }

  .download-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
  }

  .contact-section {
    position: relative;
    padding: 50px 0;
    background: white;
    overflow: hidden;
  }

  .contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: auto !important;
    margin-bottom: 30px;
  }

  .footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
  }
}

/* Small devices (phones, 576px to 767.98px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 40px 0;
    overflow-x: hidden !important;
  }
  .app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .app-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 9px 10px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(8, 8, 8, 0.453) 0%,
      rgba(8, 8, 8, 0.464) 40%,
      rgba(8, 8, 8, 0.445) 50%
    );
    z-index: 2;
    pointer-events: none;
  }

  .about-images {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
  }

  .about-section .feature-item {
    display: flex;
    margin-bottom: 15px;
  }

  .about-section .feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
    flex-shrink: 0;
  }

  .mb-5 {
    margin-bottom: 1rem !important;
  }
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .feature-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(95, 37, 158, 0.1);
  }

  .app-fe .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--primary-light)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 0.5rem;
    color: white;
    font-size: 1.5rem;
  }

  .choose-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
  }

  .choose-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
  }

  .step-card {
    padding: 10px;

    margin-bottom: 20px;
  }

  .step-number {
    margin: 0 auto 5px;
  }

  .step-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }

  .screen-slide img {
    border-radius: 25px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease;
    height: 450px;
  }
  .screens-navigation {
    margin-top: 1rem;
    text-align: center;
  }

  .download-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
  }

  .download-section {
    position: relative;
    padding: 40px 0;
    background: var(--gradient);
    color: white;
    overflow: hidden;
  }

  .contact-section {
    position: relative;
    padding: 40px 0;
    background: white;
    overflow: hidden;
  }

  .contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content !important;
    margin-bottom: 20px;
  }

  .contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
  }

  .footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0 1rem;
  }

  .my-4 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }






   .hero-section {
    min-height: 50vh;
    max-height: 70vh;
    position: relative;
    display: flex
;
    align-items: center;
    background: var(--dark-bg);
    overflow: hidden;
}
.inner-banner .inner-title h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.rabito-container {
    max-width: 95%;
    margin: 20px auto;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.rabito-heading {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #5c2499;
}

}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 50vh;
    max-height: 70vh;
    position: relative;
    display: flex
;
    align-items: center;
    background: var(--dark-bg);
    overflow: hidden;
}
.inner-banner .inner-title h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
}

.rabito-container {
    max-width: 95%;
    margin: 20px auto;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.rabito-heading {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #5c2499;
}




  .section-padding {
    padding: 30px 0;
    overflow-x: hidden !important;
  }
  .app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    flex-direction: row;
  }
  .app-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 9px 10px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(8, 8, 8, 0.453) 0%,
      rgba(8, 8, 8, 0.464) 40%,
      rgba(8, 8, 8, 0.445) 50%
    );
    z-index: 2;
    pointer-events: none;
  }

  .about-images {
    position: relative;
    height: 300px;
    margin-bottom: 20px;
  }

  .about-section .feature-item {
    display: flex;
    margin-bottom: 15px;
  }

  .about-section .feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 10px;
    flex-shrink: 0;
  }

  .mb-5 {
    margin-bottom: 1rem !important;
  }
  .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .feature-card {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(95, 37, 158, 0.1);
  }

  .app-fe .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(
      135deg,
      var(--primary-color),
      var(--primary-light)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto 0.5rem;
    color: white;
    font-size: 1.5rem;
  }

  .choose-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
  }

  .choose-icon {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
  }

  .step-card {
    padding: 10px;

    margin-bottom: 20px;
  }

  .step-number {
    margin: 0 auto 5px;
  }

  .step-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: all 0.3s ease;
  }

  .screen-slide img {
    border-radius: 25px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease;
    height: 450px;
  }
  .screens-navigation {
    margin-top: 1rem;
    text-align: center;
  }

  .download-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
  }

  .download-section {
    position: relative;
    padding: 30px 0;
    background: var(--gradient);
    color: white;
    overflow: hidden;
  }

  .contact-section {
    position: relative;
    padding: 30px 0;
    background: white;
    overflow: hidden;
  }

  .contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: fit-content !important;
    margin-bottom: 20px;
  }

  .contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
  }

  .footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0 1rem;
  }

  .my-4 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
}
