@media (min-width: 1025px) and (max-width: 1900px) {
.body{
    height: 100%;
    width: 75%;
    position: relative;
    left: 24%;
    top: 85px;
  
}



/* ++++++++++++++++++++++++++++++++++++++++++ Banner  +++++++++++++++++++++++++++++++++++++++++++ */
 

.mbanner{
    width: 77%;
    height: 25rem;
    position: relative;
    left: 22.8%;
    top: 52px;
    background-image: linear-gradient(to bottom right, #ec6bb0, #3b82f6);
    padding-bottom: 1rem;
   }

.banner-container {
            position: relative;
             top: 10px;
            overflow: hidden;
            height: 23rem; 
            width: 100%;
            
        }

   .banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%); /* start off-screen right */
  opacity: 0;
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out;
  border-radius: 12px;
}

.banner-slide.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 10;
}

.banner-slide.outgoing-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 5;
}

.banner-slide.outgoing-right {
  transform: translateX(100%);
  opacity: 0;
  z-index: 5;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


 

  section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 60px;
  }

  /* Left Side */
  .left {
    flex: 1 1 400px;
  }

  .left h4 {
    color: rgb(236,107,176);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease;
  }

  .left h4::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
  }

  .left h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease-in-out infinite alternate;
  }

  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .btn-primary {
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(55,55,165,0.3);
  }

  .btn-secondary {
    border: 2px solid rgba(55,55,165,0.3);
    background: white;
    color: rgb(55,55,165);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn-secondary:hover {
    border-color: rgb(236,107,176);
    color: rgb(236,107,176);
    transform: scale(1.05);
  }

  /* Right Side */
  .right {
    flex: 1 1 400px;
    animation: fadeInRight 1.2s ease;
  }

  .right h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgb(55,55,165);
    margin-bottom: 15px;
  }

  .right p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* Payment Icons */
  .icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(55,55,165,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.4s ease;
    animation: float 4s ease-in-out infinite;
  }

  .icon:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 15px rgba(236,107,176,0.25);
    border-color: rgb(236,107,176);
  }

  .icon img {
    width: 38px;
    height: auto;
    object-fit: contain;
  }

  /* Animations */
  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  @media (max-width: 900px) {
    section { flex-direction: column; text-align: center; }
    .buttons { justify-content: center; }
  }



}


@media (min-width: 766px) and (max-width: 1024px){

    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;

    }

    
    /* +++++++++++++++++++++++++++++++++++++++++ Banner ++++++++++++++++++++++++++++++++++++++++++++ */


.mbanner{
    width: 100%;
    height: 22rem;
    position: relative;
    top: 52px;
    background-image: linear-gradient(to bottom right, #ec6bb0, #3b82f6);
    padding-bottom: 1rem;
   }

.banner-container {
            position: relative;
             top: 10px;
            overflow: hidden;
            height: 20rem; 
            width: 100%;
            
        }

   .banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%); /* start off-screen right */
  opacity: 0;
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out;
  border-radius: 12px;
}

.banner-slide.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 10;
}

.banner-slide.outgoing-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 5;
}

.banner-slide.outgoing-right {
  transform: translateX(100%);
  opacity: 0;
  z-index: 5;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

      



  section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 60px;
  }


  .left h4 {
    color: rgb(236,107,176);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease;
  }

  .left h4::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
  }

  .left h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease-in-out infinite alternate;
  }

  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .btn-primary {
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(55,55,165,0.3);
  }

  .btn-secondary {
    border: 2px solid rgba(55,55,165,0.3);
    background: white;
    color: rgb(55,55,165);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn-secondary:hover {
    border-color: rgb(236,107,176);
    color: rgb(236,107,176);
    transform: scale(1.05);
  }

  /* Right Side */
  .right {
    flex: 1 1 400px;
    animation: fadeInRight 1.2s ease;
  }

  .right h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgb(55,55,165);
    margin-bottom: 15px;
  }

  .right p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* Payment Icons */
  .icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(55,55,165,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.4s ease;
    animation: float 4s ease-in-out infinite;
  }

  .icon:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 15px rgba(236,107,176,0.25);
    border-color: rgb(236,107,176);
  }

  .icon img {
    width: 38px;
    height: auto;
    object-fit: contain;
  }

  /* Animations */
  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  @media (max-width: 900px) {
    section { flex-direction: column; text-align: center; }
    .buttons { justify-content: center; }
  }

}


    
@media (min-width: 320px) and (max-width: 765px) {
    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
  
}


/* ++++++++++++++++++++++++++++++++++++++++ Banner +++++++++++++++++++++++++++++++++++++++++++++ */
.mbanner{
    width: 100%;
    height: 13rem;
    position: relative;
    top: 52px;
    background-image: linear-gradient(to bottom right, #ec6bb0, #3b82f6);
    padding-bottom: 1rem;
   }

.banner-container {
            position: relative;
             top: 10px;
            overflow: hidden;
            height: 11rem; 
            width: 100%;
            
        }

   .banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(100%); /* start off-screen right */
  opacity: 0;
  transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out;
}

.banner-slide.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 10;
}

.banner-slide.outgoing-left {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 5;
}

.banner-slide.outgoing-right {
  transform: translateX(100%);
  opacity: 0;
  z-index: 5;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */



  section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 60px;
  }

  /* Left Side */
 

  .left h4 {
    color: rgb(236,107,176);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 1s ease;
  }

  .left h4::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
  }

  .left h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease-in-out infinite alternate;
  }

  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .btn-primary {
    background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(55,55,165,0.3);
  }

  .btn-secondary {
    border: 2px solid rgba(55,55,165,0.3);
    background: white;
    color: rgb(55,55,165);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .btn-secondary:hover {
    border-color: rgb(236,107,176);
    color: rgb(236,107,176);
    transform: scale(1.05);
  }

  /* Right Side */
  .right {
    flex: 1 1 400px;
    animation: fadeInRight 1.2s ease;
  }

  .right h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: rgb(55,55,165);
    margin-bottom: 15px;
  }

  .right p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* Payment Icons */
  .icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(55,55,165,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.4s ease;
    animation: float 4s ease-in-out infinite;
  }

  .icon:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 15px rgba(236,107,176,0.25);
    border-color: rgb(236,107,176);
  }

  .icon img {
    width: 38px;
    height: auto;
    object-fit: contain;
  }

  /* Animations */
  @keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
  }

  @media (max-width: 900px) {
    section { flex-direction: column; text-align: center; }
    .buttons { justify-content: center; }
  }

  
}