body, html {
    font-family: 'Poppins', sans-serif;
    color: black;
    background-color: white;
    margin: 0;
    padding: 0;
    
    

}

body {
   overflow-x: hidden;
}






h1 {
    font-weight: 900; /* Bold */
    font-size: 50px;
    padding-bottom: 0px;
    margin-top: 30px;
   
}



h2 {
    font-weight: 600; /* SemiBold */
    font-size: 36px;
    padding-bottom: 20px;
}






h3 {
    font-weight: 400; /* SemiBold */
    font-size: 20px;
    padding-bottom: 10px;
}

p {
     font-weight: 300;
    font-size: 16px;
    padding-bottom: 20px;
}

.highlight {
    color: orange;
}

.navigation {
    display: flex;
    align-items: center;
    padding: 10px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
   
}

.logo {
    width: 100px; /* Adjust as needed */
}

.main-content {
    display: flex;
    height: 90vh;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.left {
    flex: 0.4;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.left P {
    padding-top:0px;
}

.input-container {
    display: flex;
    padding: 0px;
    margin-top: 0px;
}

.left input, .left button {
    border-radius: 5px; /* Rounded corners */
    margin-top: 10px;
    padding: 10px;
}

.left input {
    width: 50%;
   /* margin-right: 10px;  Spacing between input and button */
}

.left button {
    width: 100%;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.left button:hover {
    background-color: #555; /* Slightly lighter shade on hover */
}



.right {
    flex: 0.6;
    height: auto;
    
    height: auto;
    background: url(/images/lefthero2.png) no-repeat center center;
    background-size:contain;
    background-position: center;


    
}

.cta-head {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    height: auto;
    background-color: #DBF7FF;
}

.new-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    display:flow-root;
   
    
}

.section-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    
    
}

.section-content img {
    width: 30vw; /* Adjust this value as needed. This means the image will take up 30% of the viewport's width. */
    max-width: 100%; /* This ensures the image doesn't exceed its container's width. */
    object-fit: cover;
    
}

.areas {
    flex: 0.8; 
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; /* Evenly space the boxes */
    align-items: stretch;
}

.area {
    flex: 1 0 calc(40% - 10px); /* Reduced width */
    
    box-sizing: border-box; 
    display: flex;
    flex-direction: column; 
    align-items: center; /* Align left */
    justify-content: center; 
    height: 300px;
    margin-right: 20px; /* Horizontal spacing */
    margin-bottom: 20px; /* Vertical spacing */
    padding: 20px; /* Increased padding for a modern look */
    text-align: center;
    background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);/* Modern gradient background */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.area:hover {
    transform: scale(1.05); /* Slight scale effect on hover */
    
}

.area:nth-child(2n) {
    margin-right: 0; /* Remove margin-right for every second .area to ensure proper alignment */
}

.area img {
    width: 40px; 
    height: 40px; 
    align-self:center;
    margin: 0; /* Resetting margin */
    padding: 0; /* Resetting padding */
    display: block; /* Ensures there's no extra space below the image */
}


.feature-content {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.rectangle {
    width: calc(30% - 5%); /* Adjusted width to account for the 5% space */
    height: 100px; /* Adjust the height as needed */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Drop shadow */
    display: flex;
    align-items: center; /* Vertically center the content */
    padding: 10px;
    margin-right: 5%; /* 5% space on the right */
    margin-bottom: 2%; /* 5% space at the bottom */
    background-color: #e6e9f0; /* Optional: to ensure the shadow is visible against any background */
    border-radius: 15px; /* Rounded corners */

  
  
background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
    
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
}

.rectangle:hover{
transform: scale(1.05); /* Slight scale effect on hover */
}


.rectangle:nth-child(1n) {
    margin-right: 0; /* Remove the right margin for every third rectangle to ensure proper alignment */
}

.rectangle img {
    width: 40px; /* Adjust as needed */
    height: 40px; /* Adjust as needed */
    margin-right: 10px; /* Space between the icon and the h3 tag */
    margin-left: 20PX
}

.cta {
    width: 100%;
    text-align: center;
    padding: 40px 0;
    height: auto;
    background-color: #FF7C5B;
}

.cta input, .cta button {
    border-radius: 5px;
    margin-top: 10px;
    padding: 10px 15px; /* Consistent padding */
    height: 40px; /* Explicit height */
    border: none; /* Reset border */
    box-sizing: border-box; /* Ensure padding and border are included in height */
    font-size: 16px; /* Consistent font size */
    line-height: 1.5; /* Consistent line height */
}

/*.cta input {
    width: 350px;
    margin-right: 10px;
}

.cta button {
    width: 200px;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta button:hover {
    background-color: #555;
}

*/

.footer {
    height: 10px;
    width: 100%;
    text-align: center;
    color:#C7C7C7;
}

.mobile-image {
    display: none; /* Hide the image on larger screens */
    width: 100%; /* Adjust as necessary */
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 20px; /* Add some space below the image */
}
    
    .text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


@media only screen and (max-width: 1042px) {
    
  
    
      h1 {
        font-size: 60px;
        margin-bottom: 20px;
    }
    h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .main-content{
        padding: 20px;
    }
       
   
}


/* Mobile (small) styles */
@media only screen and (max-width: 600px) {
    /* Adjust styles for small mobile devices */
    h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }
    h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
   
    .navigation, .main-content, .cta-head, .new-section, .cta {
        box-sizing: border-box;
    }
       .cta {
        padding: 10px;
        width: 100%;
    }
    
    .cta-head {
         padding: 10px;
        width:100%;
    }
    
}


@media only screen and (max-width: 833px) {
     h1 {
        margin-top: 0;
        font-size: 40px/* Remove negative margin */
        /* ... other styles ... */
    }
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
    /* Styles for landscape mode on iPhones */
    
    body {
        padding: 0;
        margin: 0;
    }
    
    .navigation, .main-content, .cta-head, .new-section, .cta {
        box-sizing: border-box;
    }
    
       .navigation {
        padding: 20px 10px;
        margin: 0;
        width: 100%;
           
    }

    h1 {
        margin-top: 0;
        font-size: 40px/* Remove negative margin */
        /* ... other styles ... */
    }

    .main-content {
        height: auto;
       
        /* Adjust height to fit content */
        /* ... other styles ... */
    }
    
    .cta {
        padding: 10px;
        width: 100%;
    }
    
    .cta-head {
         padding: 10px;
        width:100%;
    }

    .right {
        height: auto; /* Adjust height to fit content */
        /* ... other styles ... */
    }
    
       .cta input {
        width: 80%; /* Adjust width to fit smaller screens */
    }

    .rectangle, .area {
    
    }
    
}


/* Mobile (large) styles */
@media only screen and (max-width: 768px) {
    /* Adjust styles for large mobile devices */
       body {
        text-align: center;
    }
    
    h1 {
        font-size: 30px;
        margin-bottom: 25px;
        padding-top: 25px;
    }
    h2 {
        font-size: 20px;
        margin-bottom: 18px;
        
    }
    
    h3 {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 10px;
    }
    
    p {
        font-size: 14px;
    }
    
    .input-container {
        display: flex;
        justify-content: center;
    }

      .main-content {
        flex-direction: column; /* This will display .left on top */
        align-items: center; /* Center the content */
          height: auto;
         
    }

    
  .mobile-image {
        display: block; /* Show the image on smaller screens */
    }

    .right {
        display: none; /* Hide the .right section */
    }
    .new-section {
        width: 90%;
    }
    
    
    .areas, .section-content, .feature-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .area, .rectangle {
        width: 80%;
        margin-right: 0;
        flex-direction: column;
        align-items: center;
    }
    
    .area h3 {
        text-align: center; /* Center the text of h3 */
        margin-top: 10px; /* Add some space between the image and the h3 */
    }
}



/* Tablet styles */
@media only screen and (max-width: 1024px) {
  
    .right {
        
        background-size: contain;
        background-position: center;
    }
    
   h3 {
    font-weight: 400; /* SemiBold */
    font-size: 15px;
    margin-bottom: 10px;
}
    
    
}


/* Large Desktop styles (optional) */
/* If you want to add styles specifically for large desktops, you can use a min-width query */
@media only screen and (min-width: 1200px) {
    /* Adjust styles for large desktops */
    /* ... add more styles as needed ... */
    
   
    
}

