.Home_page_Container {
    background-color: white;
    /* min-height: 100vh; */
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  /* Only show image in top section */
  .bgGradient {
    width: 100%;
    height: 430px; /* exactly same height as image */
    background-image: url('/img/Home_Page.png');
    background-repeat: no-repeat;
    background-size: 100% 430px;
    background-position: top center;
    position: relative;
    z-index: 0;
  }
  
  /* Wrapper for rest of content */
  .main_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: -208px; /* Pull tabs/card slightly over image */
    z-index: 1;
  }
  
  /* Tab container */
  .module_container {
    position: absolute;
    top: 69px;
    left: 23%;
    transform: translateX(-50%);
    background-color: #F9F8FF;
    border: 1px solid #F9F8FF;
    height: 40px;
    width: 28%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 7px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
  }
  
 
  
 
  
  .main_container {
    background-color: white;
    padding: 24px;
    height: auto;
    width: 88%;
    border-radius: 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
    margin-top: 90px; 
  }
  .content_below {
    margin-top: 40px;
    width: 88%;
    /* max-height: 400px; */
    /* overflow-y: auto; */
    padding-bottom: 40px;
  
    
    /* scrollbar-width: none; 
    -ms-overflow-style: none; 
  }
  
  .content_below::-webkit-scrollbar {
    display: none;  */
  }
  
  
  .content_below h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .subText {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 32px;
  }
  .SubTitle{
    text-align: center;
    font-size: 18px;
    color: #0e0e3e;
    font-weight: 500;
    margin-bottom: -1px;
  }
  
  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
    justify-content: space-between;
  }
  
  .feature_box {
    flex: 1 1 22%;
    background: #F5F5F5;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
  }
  
.Home_Page_Text{
    color: #7F56D9 ;
}
.Home_page_images {
    height: 31px;
    display: flex;
    justify-content: center;
    align-items: center; 
    margin-top: 13px;
  /* margin-top: ;   */
}

.services_section {
    /* margin-top: 2rem; */
    /* padding: 0 1rem; */
    margin-bottom: 2rem;
  }
  
  .services_tabs {
    background-color: #6A5AE0;
    color: white;
    padding: 24px 16px;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .service_tab {
    min-width: 150px;
    text-align: center;
  }
  
  .service_tab h4 {
    font-weight: 400;
    font-size: 14px;
  }
  
  .stars {
    color: #facc15; /* golden yellow */
    margin-top: 6px;
  }
  
  .demo_card {
    margin-top: 40px;
    background-color: #F5F5F5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    width: 62%;
  }
  
  .demo_content {
    flex: 1;
  }
  
  .demo_content h3 {
    font-size: 18px;
    font-weight: bold;
  }
  
  .demo_content p {
    color: #444;
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.5;
  }
  
  .demo_content button {
    margin-top: 16px;
    padding: 10px 20px;
    background-color: #6A5AE0;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .demo_content button:hover {
    background-color: #5547c7;
  }
  
  .demo_image {
    flex: 1;
  }
  
  .demo_image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
  
  /* Responsive */
  @media (min-width: 768px) {
    .demo_card {
      flex-direction: row;
      align-items: center;
    }
  }
  .footer {
    background-color: #0e0e3e;
    color: white;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
  }
  
  .footer_top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid #444;
    padding-bottom: 30px;
  }
  
  .footer_brand {
    max-width: 300px;
    /* border: 1px solid #1e90ff; */
    padding: 16px;
    border-radius: 8px;
  }
  
  .footer_logo {
    width: 162px;
    margin-bottom: 16px;
  }
  
  .footer_brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
  }
  
  .footer_socials {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    font-size: 18px;
    color: white;
  }
  
  .footer_contact h4,
  .footer_services h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer_contact p,
  .footer_services p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .footer_services ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer_bottom {
    margin-top: 20px;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 14px;
    color: #bbb;
  }
  
  .footer_links {
    display: flex;
    gap: 16px;
  }
  
  .footer_links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer_links a:hover {
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer_top {
      flex-direction: column;
    }
  
    .footer_bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }
  }
  

