
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: linear-gradient(135deg, #f0f9ff 50%, #4130ff2a 100%);
            color: #31299A;
            line-height: 1.6;
            min-height: 100vh;
          }
          
          
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            text-align: center;
            padding: 30px 0 0px;
        }

        .logo {
            width: 200px;
            margin-bottom: 15px;
            animation: floatLogo 5s ease-in-out infinite;
        }
        
        @keyframes floatLogo {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .description {
            max-width: 600px;
            margin: 0 auto 40px;
            margin-bottom: 0%;
            color: #555;
            font-size: 18px;
            line-height: 1.7;
            position: relative;
        }
        
        .description::after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #5E43AD, transparent);
            margin: 20px auto 0;
            margin-bottom: 0%;
            border-radius: 2px;
        }

        /* Two-column section */
        .two-column {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 60px;
            align-items: center;
            justify-content: space-between;
        }

        /* Form */
        .form-container {
            flex: 1;
            min-width: 300px;
            width: 100%;
            max-width: 550px; /* Increased from 450px */
            margin-left: 3%;
            background: #fff;
            padding: 40px; /* Increased padding for better spacing */
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(94, 67, 173, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .form-container1 {
            flex: 1;
            min-width: 300px;
            width: 100%;
            max-width: 550px; /* Increased from 450px */
            margin-left: 3%;
            background: #fff;
            padding: 40px; /* Increased padding for better spacing */
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(94, 67, 173, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .form-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(94, 67, 173, 0.2);
        }

        .form-container1:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(94, 67, 173, 0.2);
        }

        .form-title {
            margin-bottom: 20px;
            font-weight: 600;
            font-size: 20px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 14px;
            color: #555;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background-color: #f9f9f9;
        }

        .form-control:focus {
            outline: none;
            border-color: #5E43AD;
            box-shadow: 0 0 0 3px rgba(94, 67, 173, 0.1);
            background-color: #fff;
        }
        
        .form-control:hover {
            border-color: #bbb;
        }

        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23131313%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
            background-repeat: no-repeat;
            background-position: right 10px top 50%;
            background-size: 12px auto;
            padding-right: 30px;
        }

        .btn-submit {
            width: 100%;
            padding: 14px;
            background-color: linear-gradient(135deg, #00C896 0%, #00E676 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(94, 67, 173, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(94, 67, 173, 0.4);
        }
        
        .btn-submit:active {
            transform: translateY(1px);
        }
        
        .btn-submit::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.4s;
        }
        
        .btn-submit:hover::after {
            left: 100%;
        }

        /* Carousel */
     
            .carousel-container {
              margin-top: 5%;
              align-self: flex-start;
              flex:1.2;
              position: relative;
              min-width: 300px;

              touch-action: pan-y; /* Allow horizontal swipe */
            }
        
            .carousel {
              overflow: hidden;
              position: relative;
              transition: transform 0.3s ease;
              will-change: transform;
            }
            
            .carousel:hover {
              transform: scale(1.02);
            }
        
            .carousel .slide {
              width: 100%;
              display: none; /* Hide all slides by default */
              transition: transform 0.5s ease;
              flex-shrink: 0;
            }
            
            .carousel .slide.active {
              display: block; /* Only show active slide */
            }
            
            .carousel .slide img {
              width: 100%;
              display: block;
            }
            
            .carousel:hover .slide.active img {
              transform: scale(1.05);
            }
        
            .carousel-nav {
              position: absolute;
              top: 50%;
              width: 100%;
              display: flex;
              justify-content: space-between;
              transform: translateY(-50%);
              z-index: 3;
            }
        
            .carousel-button {
              background-color: rgba(94, 67, 173, 0.8);
              color: white;
              border: none;
              width: 35px;
              height: 35px;
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              cursor: pointer;
              font-size: 16px;
              transition: all 0.3s ease;
              box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
              backdrop-filter: blur(5px);
            }
            
            .carousel-button:hover {
              background-color: rgba(94, 67, 173, 1);
              transform: scale(1.1);
            }
        
            .carousel-button.prev {
              margin-left: 10px;
            }
        
            .carousel-button.next {
              margin-right: 10px;
            }
            .mockup {
                margin-top: auto;
                max-width:fit-content;   /* Adjust width as needed */
                max-height: 500px;  
                width: 192px;
                height: 417px;
                display: block;
                margin: 0 auto;
              }
              
              
              .feature-list.mini {
                list-style-type: none !important;  /* Remove default bullets */
                padding-left: 0 !important;        /* Remove default padding */
                margin-top: 18px;
                margin-right: 15px;               /* Added right margin */
                display: flex;
                flex-direction: column;
                                      /* Increased gap between items */
                align-items: flex-end;            /* Align list items to the right */
              }
              
              /* This ensures no browser adds bullets */
              .feature-list.mini li {
                list-style: none !important;
                list-style-type: none !important;
                list-style-image: none !important;
                display: flex;
                flex-direction: row-reverse;      /* Reverses icon and text order */
                align-items: center;
                font-size: 16px;                  /* Increased font size */
                font-weight: 500;
                color: #333;
                background: transparent;
                padding: 10px 0;
                border-radius: 8px;
                text-align: right;
              }
              
              /* Remove any potential ::before or ::after pseudo-elements that could be adding bullets */
              .feature-list.mini li::before,
              .feature-list.mini li::after {
                display: none !important;
                content: none !important;
              }
              
              .feature-list.mini .icon {
                width: 42px;                      /* Increased icon size */
                height: 42px;                     /* Increased icon size */
                margin-left: 15px;                /* Increased spacing between icon and text */
                background: linear-gradient(135deg, #A64AC9, #8439D6, #6721E1);
                box-shadow: 0 4px 12px rgba(130, 50, 200, 0.4);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                transition: transform 0.3s ease;
              }
              
              .feature-list.mini .icon:hover {
                transform: scale(1.1);
                box-shadow: 0 6px 16px rgba(130, 50, 200, 0.6);
              }
              
              .feature-list.mini .icon svg {
                width: 22px;                      /* Increased icon svg size */
                height: 22px;                     /* Increased icon svg size */
                stroke: white;
              }
              
              /* Improve text appearance */
              .feature-list.mini li span:not(.icon) {
                font-weight: 500;
                letter-spacing: 0.2px;
              }
              
              
              .carousel-wrapper {
                display: flex;
                flex-direction: column;
              }
              .carousel-box {
                position: relative;
              }
              
            /* Indicators */
            .carousel-indicators {
              position: absolute;
              bottom: 20px;
              left: 0;
              right: 0;
              display: flex;
              justify-content: center;
              gap: 8px;
              z-index: 3;
            }
        
            .carousel-indicator {
              width: 10px;
              height: 10px;
              border-radius: 50%;
              background-color: rgba(255, 255, 255, 0.5);
              cursor: pointer;
              transition: all 0.3s ease;
            }
        
            .carousel-indicator.active {
              background-color: rgba(94, 67, 173, 0.8);
              transform: scale(1.2);
            }

        /* Features section */
        .features-section {
          display: block;
            justify-content: center;    /* This centers items horizontally */
          align-items: center;        /* This centers items vertically */
        }

        .features-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: #333;
            position: relative;
            font-weight: 600;
        }
        
        .features-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #5E43AD, transparent);
            margin: 15px auto 0;
            border-radius: 2px;
        }
        
        .features-title::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background: radial-gradient(circle, rgba(94, 67, 173, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
            top: -15px;
            left: calc(50% - 15px);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
            100% { transform: scale(1); opacity: 1; }
        }

        .feature-content {
          display: flex;
          flex-wrap: wrap;
          gap: 30px;
          justify-content: center;    /* This centers items horizontally */
          align-items: center;        /* This centers items vertically */
          margin-bottom: 40px;
          
      }

        

        

        .feature-text {
            flex: 2;
            min-width: 300px;
        }

        .feature-list {
            list-style-type: disc;
            padding-left: 20px;
            margin-bottom: 30px;
        }

        .feature-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .feature-list li::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 10px;
            width: 8px;
            height: 8px;
            background-color: #5E43AD;
            border-radius: 50%;
            transform: translateY(-50%);
        }
        
        .feature-list li:hover {
            transform: translateX(5px);
            color: #5E43AD;
        }

        /* Feature icons */
        .feature-icons {
  display: flex;
  
  justify-content: center;
  margin-top: 40px;
  padding-left: 8%;
  padding-right: 8%;
  margin-bottom: 40px;
}

.feature-icon-item {
  width: calc(50% - 15px); /* 2 items per row with 30px gap */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


        .icon-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0 10px 20px rgba(94, 67, 173, 0.15);
            border: 2px solid #5E43AD;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .icon-circle::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(94, 67, 173, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            top: -25%;
            left: -25%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .icon-circle:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(94, 67, 173, 0.3);
        }
        
        .icon-circle:hover::before {
            opacity: 1;
        }

        .icon-circle img {
            width: 35px;
            height: 35px;
        }

        .icon-text {
            font-size: 14px;
            color: #555;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
             .carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
}


            .form-container, 
            .carousel-container {
                flex: 1;
                max-width: 100%;
                min-width: 300px;
                align-self: center;
            }

            .form-container1, 
            .carousel-container {
                flex: 1;
                max-width: 100%;
                min-width: 300px;
                align-self: center;
            }
            .carousel img {
                width: 100%;
                height: auto;
                object-fit: cover; /* makes the image scale well */
            }
            
            .feature-content {
                flex-direction: column;
                display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
            justify-content: space-between;
                
            }
            
            .feature-image {
                max-width: 100%;
            }
            
            .feature-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}
            
            .icon-circle {
                width: 40px;
                height: 40px;
            }
          .feature-list.mini .icon {
                width: 32px;                      /* Increased icon size */
                height: 32px;                     /* Increased icon size */
                margin-left: 15px;                /* Increased spacing between icon and text */
                background: linear-gradient(135deg, #A64AC9, #8439D6, #6721E1);
                box-shadow: 0 4px 12px rgba(130, 50, 200, 0.4);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                transition: transform 0.3s ease;
              }
           .feature-list.mini .icon svg {
                width: 18px;                      /* Increased icon svg size */
                height: 18px;                     /* Increased icon svg size */
                stroke: white;
              }
          .feature-list li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 10px;
            transition: transform 0.3s ease;
        }   
        .form-container {
            flex: 1;
            min-width: 300px;
            width: 100%;
            max-width: 550px; /* Increased from 450px */
            margin-left: 0%;
            background: #fff;
            padding: 40px; /* Increased padding for better spacing */
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(94, 67, 173, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .form-container1 {
            flex: 1;
            min-width: auto;
            width: 90%;
            max-width: 550px; /* Increased from 450px */
            margin-left: 0%;
            background: #fff;
            padding: 40px; /* Increased padding for better spacing */
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(94, 67, 173, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .form-title {
              margin-bottom: 12px;
              font-weight: 600;
              font-size: 18px;
          }
        }
        
        .navigation.nav-open {
            transform: translateX(0); /* Makes the nav slide in on toggle */
          }
          .navigation {
            z-index: 1000;  
          }
          /* On small screens: stack vertically and show carousel first */
@media (max-width: 768px) {
    .logo-head{
        height: auto;
        width: 150px;
    }
    .description {
      font-size: 14px;
    }
    .two-column {
      flex-direction: column;
    }
  
    .form-container {
      order: 2; /* Form goes second */
    }
    .form-container1 {
      order: 2; /* Form goes second */
    }
    .carousel-container {
      order: 1; /* Carousel goes first */
    }
    .feature-list.mini {
                list-style-type: none !important;  /* Remove default bullets */
                padding-left: 0 !important;        /* Remove default padding */
                margin-top: 40px;
                margin-right: 15px;               /* Added right margin */
                display: flex;
                flex-direction: column;
                                      /* Increased gap between items */
                align-items: flex-end;            /* Align list items to the right */
              }
    .feature-list.mini li {
                list-style: none !important;
                list-style-type: none !important;
                list-style-image: none !important;
                display: flex;
                flex-direction: row-reverse;      /* Reverses icon and text order */
                align-items: center;
                font-size: 14px;                  /* Increased font size */
                font-weight: 500;
                color: #333;
                background: transparent;
                padding: 2px 0;
                border-radius: 8px;
                text-align: right;
              }
    .feature-content {
          display: flex;
          flex-wrap: wrap;
          gap: 30px;
          justify-content: center;    /* This centers items horizontally */
          align-items: center;        /* This centers items vertically */
          
          
      }
    .two-column {
            display: flex;
            flex-wrap: wrap;
            gap: 0px;
            margin-bottom: 60px;
            align-items: center;
            justify-content: space-between;
        }
    .icon-circle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            box-shadow: 0 10px 20px rgba(94, 67, 173, 0.15);
            border: 2px solid #5E43AD;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
  
  }

  .image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.image-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.close-overlay {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}
/* Sticky Button */
.sticky-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  padding: 12px 20px;
  font-size: 16px;
  background: linear-gradient(135deg, #00c569 0%, #00e676 100%);
  color: white;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 200, 150, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

.sticky-btn:hover {
  transform: translateX(-50%) scale(1.05);
  background: linear-gradient(135deg, #00d9a8 0%, #2bff88 100%);
  box-shadow: 0 12px 28px rgba(0, 230, 118, 0.5);
}



  
  /* Vibrating effect */
  .sticky-btn.vibrate {
    animation: vibrate 0.5s ease infinite;
  }
  /* .sticky-btn:hover {
    transform: translateX(-50%) scale(1.05);
    background: linear-gradient(135deg, #b250c8 0%, #ff85e0 100%);
    box-shadow: 0 12px 28px rgba(255, 111, 216, 0.6);
  } */
  
  @keyframes vibrate {
    0% { transform: translateX(-50%) translateY(0); }
    25% { transform: translateX(-50%) translateY(-5px); }
    50% { transform: translateX(-50%) translateY(0); }
    75% { transform: translateX(-50%) translateY(5px); }
    100% { transform: translateX(-50%) translateY(0); }
  }

  html {
    scroll-behavior: smooth;
  }
   #plus_text{
    font-size: large;
    align-items: center; 
    margin-top: 40px;
   }
   .column-feature {
    justify-content: center;    /* This centers items horizontally */
          align-items: center;        /* This centers items vertically */

   }


   /* Image and Description Module Styles */
/* Image and Description Module Styles - Modern & Dazzling Version */
.image-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
  gap: 3rem;
  /* background: linear-gradient(135deg, rgba(98, 0, 234, 0.03) 0%, rgba(236, 56, 188, 0.03) 100%); */
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.image-text-container-programme {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
  gap: 3rem;
  /* background: linear-gradient(135deg, rgba(98, 0, 234, 0.03) 0%, rgba(236, 56, 188, 0.03) 100%); */
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.image-text-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6200ea, #ec38bc); 
}
.image-text-container-programme::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6200ea, #ec38bc); 
}
#image-text-container2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: none;
}
.image-container {
  flex: 1;
  min-width: 300px;
   transform: translateY(0);
   transition: transform 0.5s ease; 
}

.image-container:hover {
  transform: translateY(-8px);
}

.responsive-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  /* box-shadow: 0 15px 30px rgba(98, 0, 234, 0.2); */
  transition: all 0.4s ease;
}

.responsive-image-programme {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
  border-radius: 12px;
  /* box-shadow: 0 15px 30px rgba(98, 0, 234, 0.2); */
  transition: all 0.4s ease;
}

.responsive-image:hover {
  box-shadow: 0 20px 40px rgba(236, 56, 188, 0.3);
  transform: scale(1.02);
}

.description-container {
  flex: 1;
  min-width: 300px;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(98, 0, 234, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}
#description-container-programme {
  flex: 1;
  min-width: 300px;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(98, 0, 234, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.description-container:hover {
  box-shadow: 0 12px 40px rgba(236, 56, 188, 0.15);
  transform: translateY(-5px);
}

.description-container h2 {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #6200ea, #ec38bc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
}

.description-container p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #4a4a6a;
  margin-bottom: 1.2rem;
  transition: color 0.3s ease;
}

.description-container p:hover {
  color: #6200ea;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: linear-gradient(90deg, #6200ea, #ec38bc);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(236, 56, 188, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ec38bc, #6200ea);
  transition: all 0.5s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn:hover {
  box-shadow: 0 8px 20px rgba(98, 0, 234, 0.4);
  transform: translateY(-3px);
}

.btn:hover::before {
  width: 100%;
}

/* Subtle animation for a dazzling effect */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(236, 56, 188, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(236, 56, 188, 0); }
  100% { box-shadow: 0 0 0 0 rgba(236, 56, 188, 0); }
}

/* Media query for responsive design */
@media (max-width: 768px) {
  .image-text-container {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  
  .image-container, 
  .description-container {
    min-width: 100%;
  }

  .description-container h2 {
    font-size: 1.4rem;
  }
}

/* Additional animation for loading effect */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.image-text-container {
  animation: fadeIn 0.8s ease forwards;
}

/* Feature List Styles */
ul, li {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
}

/* Reset specifically for your feature list */
.feature-list, 
.feature-list li, 
.feature-list .feature-item {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}


.feature-text {
  font-size: 1.05rem;
  line-height: 1.5;
  color: #4a4a6a;
  flex: 1;
}

.feature-list li::before,
              .feature-list.mini li::after {
                display: none !important;
                content: none !important;
              }

/* For custom icons instead of emoji */
/* Uncomment and replace with your icon font or SVG approach if needed */

.feature-icon::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.feature-icon.icon-search::before {
  content: "\f002";
}

.feature-icon.icon-sync::before {
  content: "\f021";
}

.feature-icon.icon-offline::before {
  content: "\f1eb";
}
/* Custom Gradient Bullet List */
.ul-list-bullet {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.ul-list-bullet li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.ul-list-bullet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6200ea, #ec38bc);
  box-shadow: 0 2px 5px rgba(236, 56, 188, 0.3);
}

/* Hover effect for the bullets */
.ul-list-bullet li:hover::before {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Text styling */
.ul-list-bullet li {
  color: #4a4a6a;
  font-size: 1.05rem;
}

/* If you want the text to also respond on hover */
.ul-list-bullet li:hover {
  color: #6200ea;
  transition: color 0.3s ease;
}
.ul-list-bullet ul.ul-list-sub {
  list-style: none;
  margin: 0.5rem 0 0 1.8rem;
  padding-left: 0;
}

.ul-list-bullet ul.ul-list-sub li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  color: #6a6a8a;
  font-size: 0.95rem;
}

.ul-list-bullet ul.ul-list-sub li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6200ea, #ec38bc);
  box-shadow: 0 1px 3px rgba(236, 56, 188, 0.3);
}

.ul-list-bullet ul.ul-list-sub li:hover::before {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
footer {
  background-color: #6200ea;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px 30px;
  color: #fff;
}

footer p {
  text-align: center;
  color: #ddd;
  margin-top: 30px;
  font-size: 14px;
}

footer .form-container1 {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer .form-title {
  text-align: center;
  color: #333;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 16px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: #6200ea;
  outline: none;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background:linear-gradient(135deg, #00c569 0%, #00e676 100%);

  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #4b00c2;
}
@media (max-width: 600px) {
  footer .form-container1 {
    padding: 30px 20px;
  }
}

#fullscreenViewer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
}

#fullscreenViewer img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .carousel-button {
    display: none;
  }
  #prepcmd {
      width: 100%;
      height: auto;
  }
  footer {
  display: flex;
  flex-direction: column;
}

footer p {
  order: 2; /* Make sure it's below the form */
}
 
}

.form-group input[type="password"] {
  display: none;
}
