@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;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */




.sot1{display: none}

.sot {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, rgb(55, 55, 165), rgb(236, 107, 176));
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }

  .container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 60px;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease forwards;

  
        
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .text-content {
    flex: 1;
    margin-left: 40px;
    animation: slideIn 1.2s ease forwards;
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  p {
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(236, 107, 176, 0.5);
  }

  .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(236, 107, 176, 0.8);
  }

  .image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  .image img {
    width: 300px;
    filter: drop-shadow(0 0 15px rgba(236, 107, 176, 0.5));
  }

  @media (max-width: 900px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
    .text-content {
      margin-left: 0;
    }
    .image img {
      width: 220px;
      margin-bottom: 30px;
    }
  }




   .sm{
    display: none;
   }
    

    section {
      text-align: center;
      padding: 80px 10%;
    }

    h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
      
    }

    h1 span {
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientMove 3s ease-in-out infinite alternate;
    }

    @keyframes gradientMove {
      from { background-position: 0%; }
      to { background-position: 100%; }
    }

    p.subtitle {
      font-size: 1rem;
      color: #444;
      margin-bottom: 60px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      justify-content: center;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      padding: 35px 25px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      border-top: 4px solid transparent;
      animation: fadeInUp 1.2s ease forwards;
      opacity: 0;
    }

    .card:nth-child(1) { animation-delay: 0.2s; }
    .card:nth-child(2) { animation-delay: 0.4s; }
    .card:nth-child(3) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .card:hover {
      transform: translateY(-10px);
      border-top: 4px solid rgb(236,107,176);
      box-shadow: 0 12px 30px rgba(55,55,165,0.15);
    }

    .icon {
      font-size: 40px;
      margin-bottom: 20px;
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .card p {
      font-size: 0.95rem;
      color: #333;
      line-height: 1.6;
    }

    .highlight {
      font-weight: 600;
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    

  

}





































@media (min-width: 766px) and (max-width: 1024px){

    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;

    }

    
    /* +++++++++++++++++++++++++++++++++++++++++ Banner ++++++++++++++++++++++++++++++++++++++++++++ */

.sd{
    display: none;
   }

.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;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.sot{display: none}

.sot1 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, rgb(55, 55, 165), rgb(236, 107, 176));
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }

  .container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 60px;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease forwards;

  
        
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .text-content {
    flex: 1;
    margin-left: 40px;
    animation: slideIn 1.2s ease forwards;
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  p {
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(236, 107, 176, 0.5);
  }

  .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(236, 107, 176, 0.8);
  }

  .image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  .image img {
    width: 300px;
    filter: drop-shadow(0 0 15px rgba(236, 107, 176, 0.5));
  }

  @media (max-width: 900px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
    .text-content {
      margin-left: 0;
    }
    .image img {
      width: 220px;
      margin-bottom: 30px;
    }
  }


  .sd{
    display: none;
   }

     section {
      text-align: center;
      padding: 80px 10%;
    }

    h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
      
    }

    h1 span {
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientMove 3s ease-in-out infinite alternate;
    }

    @keyframes gradientMove {
      from { background-position: 0%; }
      to { background-position: 100%; }
    }

    p.subtitle {
      font-size: 1rem;
      color: #444;
      margin-bottom: 60px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      justify-content: center;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      padding: 35px 25px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      border-top: 4px solid transparent;
      animation: fadeInUp 1.2s ease forwards;
      opacity: 0;
    }

    .card:nth-child(1) { animation-delay: 0.2s; }
    .card:nth-child(2) { animation-delay: 0.4s; }
    .card:nth-child(3) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .card:hover {
      transform: translateY(-10px);
      border-top: 4px solid rgb(236,107,176);
      box-shadow: 0 12px 30px rgba(55,55,165,0.15);
    }

    .icon {
      font-size: 40px;
      margin-bottom: 20px;
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .card p {
      font-size: 0.95rem;
      color: #333;
      line-height: 1.6;
    }

    .highlight {
      font-weight: 600;
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
      
}




























































    
@media (min-width: 320px) and (max-width: 765px) {
    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
  
}

.sd{
    display: none;
   }

/* ++++++++++++++++++++++++++++++++++++++++ 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;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.sot{display: none}

.sot1 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, rgb(55, 55, 165), rgb(236, 107, 176));
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
  }

  .container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 60px;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
    animation: fadeIn 1.5s ease forwards;

  
        
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .text-content {
    flex: 1;
    margin-left: 40px;
    animation: slideIn 1.2s ease forwards;
  }

  @keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
  }

  h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  p {
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(236, 107, 176, 0.5);
  }

  .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(236, 107, 176, 0.8);
  }

  .image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  .image img {
    width: 300px;
    filter: drop-shadow(0 0 15px rgba(236, 107, 176, 0.5));
  }

  @media (max-width: 900px) {
    .container {
      flex-direction: column;
      text-align: center;
    }
    .text-content {
      margin-left: 0;
    }
    .image img {
      width: 220px;
      margin-bottom: 30px;
    }
  }




    section {
      text-align: center;
      padding: 80px 10%;
    }

    h1 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
      
    }

    h1 span {
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientMove 3s ease-in-out infinite alternate;
    }

    @keyframes gradientMove {
      from { background-position: 0%; }
      to { background-position: 100%; }
    }

    p.subtitle {
      font-size: 1rem;
      color: #444;
      margin-bottom: 60px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 35px;
      justify-content: center;
    }

    .card {
      background: #fff;
      border-radius: 16px;
      padding: 35px 25px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      border-top: 4px solid transparent;
      animation: fadeInUp 1.2s ease forwards;
      opacity: 0;
    }

    .card:nth-child(1) { animation-delay: 0.2s; }
    .card:nth-child(2) { animation-delay: 0.4s; }
    .card:nth-child(3) { animation-delay: 0.6s; }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    .card:hover {
      transform: translateY(-10px);
      border-top: 4px solid rgb(236,107,176);
      box-shadow: 0 12px 30px rgba(55,55,165,0.15);
    }

    .icon {
      font-size: 40px;
      margin-bottom: 20px;
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .card p {
      font-size: 0.95rem;
      color: #333;
      line-height: 1.6;
    }

    .highlight {
      font-weight: 600;
      background: linear-gradient(90deg, rgb(236,107,176), rgb(55,55,165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  
}