@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;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


        /* Configure Inter Font */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

        :root {
            /* Define new gradient colors */
            --primary-pink: #ec6bb0; /* rgb(236, 107, 176) */
            --primary-purple: #3737a5; /* rgb(55, 55, 165) */
            --light-bg: #f5f8fc;
        }

        /* Custom subtle background pattern */
       

        .section-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title {
            color: #333;
            font-size: 1.5rem; /* text-2xl */
            font-weight: 700; /* font-bold */
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0 1.5rem;
        }

        /* Apply the new gradient color to the dividers */
        .divider {
            height: 2px;
            width: 50px;
            background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
        }
        
        /* Animation for the feature cards */
        .feature-card {
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform, box-shadow; /* Optimization */
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02); /* Lift and subtle scale */
            /* Update shadow color to match the new pink/magenta */
            box-shadow: 0 10px 25px -5px rgba(236, 107, 176, 0.3), 0 8px 10px -6px rgba(236, 107, 176, 0.1); 
        }

        /* SVG icon styling - now uses the primary pink color */
        .card-icon {
            fill: none;
            stroke: var(--primary-pink);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            width: 48px;
            height: 48px;
        }

        /* Responsive grid layout */
        .card-grid {
            display: grid;
            gap: 1.5rem; /* Space between cards */
            /* Default: 1 column for small screens */
            grid-template-columns: repeat(1, minmax(0, 1fr)); 
        }

        @media (min-width: 640px) { /* sm breakpoint */
            .card-grid {
                /* 3 columns on small screens, adapting to 5 items well */
                grid-template-columns: repeat(3, minmax(0, 1fr)); 
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .card-grid {
                /* 5 columns on large screens to match the image */
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }
  
      














        /* Background gradient animation */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .features-section {
      padding: 80px 10%;
      text-align: center;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 50px;
      animation: fadeIn 1.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .feature-card {
      background-color: rgba(0, 0, 0, 0);
      border-radius: 16px;
      padding: 35px 25px;
      text-align: left;
      position: relative;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
      overflow: hidden;
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.03);
      background-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .icon-box {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      color: white;
      font-size: 22px;
      box-shadow: 0 0 15px rgba(255,255,255,0.2);
      animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .feature-title {
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
      text-transform: uppercase;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .feature-desc {
      font-size: 0.9rem;
      line-height: 1.5rem;
      color: rgb(234, 77, 140);
    }





    
    /* Animated gradient background */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .partners-section {
      text-align: center;
      padding: 10px 0;
      position: relative;
      overflow: hidden;
    }

    .partners-title {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 40px;
      text-transform: uppercase;
      font-style: italic;
    }

    .scroll-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 2rem;
    }

    .partners-container {
      display: flex;
      gap: 40px;
      animation: scrollLeft 10s linear infinite;
    }

    .partner-card {
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 25px 35px;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      min-width: 160px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .partner-card img {
      width: 110px;
      height: auto;
      object-fit: contain;
      filter: brightness(0.9);
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    .partner-card:hover {
      transform: translateY(-10px) scale(1.05);
      background-color: rgba(255,255,255,0.15);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .partner-card:hover img {
      filter: brightness(1.1);
      transform: scale(1.1);
    }

    /* Continuous right-to-left scroll animation */
    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-230%); }
    }

    /* Duplicate content for seamless loop */
    .partners-container::after {
      content: "";
      display: flex;
    }













  
   

    /* Animated gradient background */
    @keyframes bgMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    section {
      padding: 10px 10%;
      text-align: center;
    }

    h2 {
      font-size: 1.8rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 10px;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: textGlow 3s ease-in-out infinite alternate;
    }

    @keyframes textGlow {
      from { text-shadow: 0 0 8px rgba(236, 107, 176, 0.5); }
      to { text-shadow: 0 0 15px rgba(55, 55, 165, 0.8); }
    }

    p.subtitle {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.95rem;
      max-width: 650px;
      line-height: 1.6;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
      justify-content: center;
      animation: fadeIn 1.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .feature-card {
      
      border-radius: 16px;
      padding: 35px 25px;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.03);
      background-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .feature-icon {
      font-size: 38px;
      display: inline-block;
      margin-bottom: 15px;
      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(-5px); }
    }

    .feature-title {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .feature-desc {
      font-size: 0.9rem;
      
      line-height: 1.6;
    }



}


@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;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

        /* Configure Inter Font */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

        :root {
            /* Define new gradient colors */
            --primary-pink: #ec6bb0; /* rgb(236, 107, 176) */
            --primary-purple: #3737a5; /* rgb(55, 55, 165) */
            --light-bg: #f5f8fc;
        }

        /* Custom subtle background pattern */
       

        .section-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title {
            color: #333;
            font-size: 1.5rem; /* text-2xl */
            font-weight: 700; /* font-bold */
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0 1.5rem;
        }

        /* Apply the new gradient color to the dividers */
        .divider {
            height: 2px;
            width: 50px;
            background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
        }
        
        /* Animation for the feature cards */
        .feature-card {
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform, box-shadow; /* Optimization */
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02); /* Lift and subtle scale */
            /* Update shadow color to match the new pink/magenta */
            box-shadow: 0 10px 25px -5px rgba(236, 107, 176, 0.3), 0 8px 10px -6px rgba(236, 107, 176, 0.1); 
        }

        /* SVG icon styling - now uses the primary pink color */
        .card-icon {
            fill: none;
            stroke: var(--primary-pink);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            width: 48px;
            height: 48px;
        }

        /* Responsive grid layout */
        .card-grid {
            display: grid;
            gap: 1.5rem; /* Space between cards */
            /* Default: 1 column for small screens */
            grid-template-columns: repeat(1, minmax(0, 1fr)); 
        }

        @media (min-width: 640px) { /* sm breakpoint */
            .card-grid {
                /* 3 columns on small screens, adapting to 5 items well */
                grid-template-columns: repeat(3, minmax(0, 1fr)); 
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .card-grid {
                /* 5 columns on large screens to match the image */
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }
















        



        /* Background gradient animation */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .features-section {
      padding: 80px 10%;
      text-align: center;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 50px;
      animation: fadeIn 1.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .feature-card {
      background-color: rgba(0, 0, 0, 0);
      border-radius: 16px;
      padding: 35px 25px;
      text-align: left;
      position: relative;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
      overflow: hidden;
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.03);
      background-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .icon-box {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      color: white;
      font-size: 22px;
      box-shadow: 0 0 15px rgba(255,255,255,0.2);
      animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .feature-title {
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
      text-transform: uppercase;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .feature-desc {
      font-size: 0.9rem;
      line-height: 1.5rem;
      color: rgb(234, 77, 140);
    }





    
    /* Animated gradient background */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .partners-section {
      text-align: center;
      padding: 10px 0;
      position: relative;
      overflow: hidden;
    }

    .partners-title {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 40px;
      text-transform: uppercase;
      font-style: italic;
    }

    .scroll-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 2rem;
    }

    .partners-container {
      display: flex;
      gap: 40px;
      animation: scrollLeft 10s linear infinite;
    }

    .partner-card {
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 25px 35px;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      min-width: 160px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .partner-card img {
      width: 110px;
      height: auto;
      object-fit: contain;
      filter: brightness(0.9);
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    .partner-card:hover {
      transform: translateY(-10px) scale(1.05);
      background-color: rgba(255,255,255,0.15);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .partner-card:hover img {
      filter: brightness(1.1);
      transform: scale(1.1);
    }

    /* Continuous right-to-left scroll animation */
    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-230%); }
    }

    /* Duplicate content for seamless loop */
    .partners-container::after {
      content: "";
      display: flex;
    }




















  

    /* Animated gradient background */
    @keyframes bgMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    section {
      padding: 10px 10%;
      text-align: center;
    }

    h2 {
      font-size: 1.8rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 10px;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: textGlow 3s ease-in-out infinite alternate;
    }

    @keyframes textGlow {
      from { text-shadow: 0 0 8px rgba(236, 107, 176, 0.5); }
      to { text-shadow: 0 0 15px rgba(55, 55, 165, 0.8); }
    }

    p.subtitle {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.95rem;
      max-width: 650px;
     
      line-height: 1.6;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
      justify-content: center;
      animation: fadeIn 1.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .feature-card {
      
      border-radius: 16px;
      padding: 35px 25px;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.03);
      background-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .feature-icon {
      font-size: 38px;
      display: inline-block;
      margin-bottom: 15px;
      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(-5px); }
    }

    .feature-title {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .feature-desc {
      font-size: 0.9rem;
      
      line-height: 1.6;
    }

  
      
}


    
@media (min-width: 320px) and (max-width: 765px) {
    .body{
    height: 100%;
    width: 90%;
    position: relative;
    left: 5%;
    top: 55px;
  
}


/* ++++++++++++++++++++++++++++++++++++++++ Banner +++++++++++++++++++++++++++++++++++++++++++++ */
.mbanner{
    width: 100%;
    height: 11.5rem;
    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: 9.5rem; 
            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;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

        /* Configure Inter Font */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

        :root {
            /* Define new gradient colors */
            --primary-pink: #ec6bb0; /* rgb(236, 107, 176) */
            --primary-purple: #3737a5; /* rgb(55, 55, 165) */
            --light-bg: #f5f8fc;
        }

        /* Custom subtle background pattern */
       

        .section-title-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title {
            color: #333;
            font-size: 1.5rem; /* text-2xl */
            font-weight: 700; /* font-bold */
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 0 1.5rem;
        }

        /* Apply the new gradient color to the dividers */
        .divider {
            height: 2px;
            width: 50px;
            background: linear-gradient(to right, var(--primary-pink), var(--primary-purple));
        }
        
        /* Animation for the feature cards */
        .feature-card {
            transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            will-change: transform, box-shadow; /* Optimization */
        }

        .feature-card:hover {
            transform: translateY(-8px) scale(1.02); /* Lift and subtle scale */
            /* Update shadow color to match the new pink/magenta */
            box-shadow: 0 10px 25px -5px rgba(236, 107, 176, 0.3), 0 8px 10px -6px rgba(236, 107, 176, 0.1); 
        }

        /* SVG icon styling - now uses the primary pink color */
        .card-icon {
            fill: none;
            stroke: var(--primary-pink);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            width: 48px;
            height: 48px;
        }

        /* Responsive grid layout */
        .card-grid {
            display: grid;
            gap: 1.5rem; /* Space between cards */
            /* Default: 1 column for small screens */
            grid-template-columns: repeat(1, minmax(0, 1fr)); 
        }

        @media (min-width: 640px) { /* sm breakpoint */
            .card-grid {
                /* 3 columns on small screens, adapting to 5 items well */
                grid-template-columns: repeat(3, minmax(0, 1fr)); 
            }
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .card-grid {
                /* 5 columns on large screens to match the image */
                grid-template-columns: repeat(5, minmax(0, 1fr));
            }
        }

















        



        /* Background gradient animation */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .features-section {
      padding: 80px 10%;
      text-align: center;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-top: 50px;
      animation: fadeIn 1.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .feature-card {
      background-color: rgba(0, 0, 0, 0);
      border-radius: 16px;
      padding: 35px 25px;
      text-align: left;
      position: relative;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
      overflow: hidden;
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.03);
      background-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .icon-box {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      color: white;
      font-size: 22px;
      box-shadow: 0 0 15px rgba(255,255,255,0.2);
      animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .feature-title {
      font-weight: 800;
      font-size: 1rem;
      letter-spacing: 0.5px;
      margin-bottom: 10px;
      text-transform: uppercase;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .feature-desc {
      font-size: 0.9rem;
      line-height: 1.5rem;
      color: rgb(234, 77, 140);
    }





    
    /* Animated gradient background */
    @keyframes gradientFlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .partners-section {
      text-align: center;
      padding: 10px 0;
      position: relative;
      overflow: hidden;
    }

    .partners-title {
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 40px;
      text-transform: uppercase;
      font-style: italic;
    }

    .scroll-wrapper {
      width: 100%;
      overflow: hidden;
      position: relative;
      padding: 2rem;
    }

    .partners-container {
      display: flex;
      gap: 40px;
      animation: scrollLeft 10s linear infinite;
    }

    .partner-card {
      background-color: rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 25px 35px;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      min-width: 160px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .partner-card img {
      width: 110px;
      height: auto;
      object-fit: contain;
      filter: brightness(0.9);
      transition: transform 0.4s ease, filter 0.4s ease;
    }

    .partner-card:hover {
      transform: translateY(-10px) scale(1.05);
      background-color: rgba(255,255,255,0.15);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .partner-card:hover img {
      filter: brightness(1.1);
      transform: scale(1.1);
    }

    /* Continuous right-to-left scroll animation */
    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-230%); }
    }

    /* Duplicate content for seamless loop */
    .partners-container::after {
      content: "";
      display: flex;
    }

















   

    /* Animated gradient background */
    @keyframes bgMove {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    section {
      padding: 10px 10%;
      text-align: center;
    }

    h2 {
      font-size: 1.8rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 10px;
      background: linear-gradient(90deg, rgb(236, 107, 176), rgb(55, 55, 165));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: textGlow 3s ease-in-out infinite alternate;
    }

    @keyframes textGlow {
      from { text-shadow: 0 0 8px rgba(236, 107, 176, 0.5); }
      to { text-shadow: 0 0 15px rgba(55, 55, 165, 0.8); }
    }

    p.subtitle {
      color: rgba(255, 255, 255, 0.85);
      font-size: 0.95rem;
      max-width: 650px;
      
      line-height: 1.6;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 40px;
      justify-content: center;
      animation: fadeIn 1.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .feature-card {
      
      border-radius: 16px;
      padding: 35px 25px;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .feature-card:hover {
      transform: translateY(-10px) scale(1.03);
      background-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .feature-icon {
      font-size: 38px;
      display: inline-block;
      margin-bottom: 15px;
      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(-5px); }
    }

    .feature-title {
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .feature-desc {
      font-size: 0.9rem;
      
      line-height: 1.6;
    }


  
  
}