body {
    font-family: 'Inter', sans-serif; /* Updated font */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa; /* Softer background */
    color: #343a40; /* Darker text for better contrast */
    line-height: 1.6; /* Improved line height for readability */
}


.page-wrapper {
    background-color: white;
    margin: 40px auto; 
    padding: 40px;
    border-radius: 12px; 
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); 
    max-width: 1400px; 
}
.navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 40px;
        background-color: white;
        border-bottom: 1px solid #eee;
        margin: 0 auto;
        box-shadow: none;
        max-width: 1400px;
        border-radius: 13px;
    }
.navbar .logo {
    font-size: 2em;
    font-weight: 700;
    color: #dc3545; /* Updated color */
    text-decoration: none;
}
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
}



.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Increased gap */
}
.nav-links li a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative; /* Needed for absolute positioning of the underline */
}

.nav-links li a:hover {
    color: #dc3545;
}

.nav-links li a::after { /* Use ::after pseudo-element */
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0; /* Start with zero width */
    height: 2px;
    background-color: #dc3545;
    border-radius: 2px;
    transition: width 0.3s ease-in-out; /* Transition on width */
}

.nav-links li a:hover::after {
    width: 100%; /* Expand to full width on hover */
}

.hero-section {
    background: linear-gradient(135deg, #dc3545, #e05252); /* Adjusted gradient */
    color: white;
    text-align: center;
    padding: 160px 40px; /* Increased padding */
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button ,.cta{
    background: white;
    color: #dc3545;
    padding: 14px 30px; 
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}
.button-section {
    display: flex;
    justify-content: center;  
    align-items: center;     
    padding: 20px 0;
}
.SB{
    display: flex;
    justify-content: center;  
    align-items: center;     
    padding: 20px 0;
}



.cta-button2{
        background: #ff4d4f;
        border: 1px solid #ff4d4f;
        border-radius: 10px;
        color: white;
        cursor: pointer;
        padding: 15px 30px;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        width: 30%;
        
    

}
.cta-button2 a{
    text-decoration: none;
    color: white;
}

.cta-button:hover ,.cta:hover{
    transform: translateY(-3px);
    background: #dc3545;
    color: white;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.cta-button2:hover{
    background: #ff7875;
    transform: translateY(-5px);

}

.solutions-section {
    
    padding: 80px 40px;
    
        
    
}
.solutions-container {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
    gap: 40px; 
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    
}


.solution-card {
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; 
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    align-items: center;
    text-align: center; 
    padding: 60px 40px;
    overflow: hidden;
    position: relative;
    /*width: 50%;*/
    box-sizing: border-box;
   
   
}


.solution-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }



.solution-card h3 {
    text-align: center; 
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700; 
    
}

.solution-card p {
    flex-grow: 1; 
    font-size: 1.2em;
    color: #6c757d;
    line-height: 1.7; 
    margin-bottom: 30px; 
    }





.products-section {
    /*background: linear-gradient(135deg, #ffffff, #f8f8f8); /* Very light gradient */
    padding: 80px 40px;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%; /* Ensures it doesn't overflow */
    box-sizing: border-box;
}

.text {
    flex: 1;
    margin-left: 40px;
}

.image img {
    max-width: 100%;
    height: auto;
    max-width: 400px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.5);
}


.why-choose-us-container{
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.why-choose-us-card{
    position: relative; 
    width: 50%;
    box-sizing: border-box;

}

.product-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08); /* Slightly stronger shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eee;
    overflow: hidden; /* Prevents content from overflowing on transform */
    position: relative; 
    /*width: 50%;*/
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}



.product-card h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.product-card p {
    font-size: 1.15em;
    color: #6c757d;
    flex-grow: 1;
}

.product-card ul {
    list-style: disc; /* Use bullets */
    padding-left: 20px;
    margin-top: 15px;
    color: #6c757d;
}





.why-choose-us-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px;
    padding: 60px 40px;
  
}
.why{
    text-align: left;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    font-weight: 700;
}


.why-choose-us-card
 {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 15px auto;
   
}



.solution-card h3,

.why-choose-us-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-weight: 600;
}

.solution-card p,
.why-choose-us-card p{
    font-size: 1.1em;
    color: #6c757d;
}

.solution-card:hover,
.product-card:hover,
.why-choose-us-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about-section {
    padding: 60px 40px;
    text-align: center;
}

.about-section p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.2em;
    color: #6c757d;
}

.footer {
    background: #343a40;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

.footer .social-links {
    margin-top: 15px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: small;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #dc3545;
}


.contact-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px auto;
    text-align: center;
    padding: 50px;
    max-width: 600px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5em;
    color: #ff4d4f;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ff4d4f;
    border-radius: 10px;
    background-color: #ffffff;
    font-size: 1em;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

input:focus, textarea:focus {
    box-shadow: 0 0 8px rgba(255, 77, 79, 0.5);
    outline: none;
    transform: scale(1.02);
}

textarea {
    resize: none;
}

.submit-button {
    background: #ff4d4f;
    border: 1px solid #ff4d4f;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
    background: #ff7875;
    transform: translateY(-5px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    border-bottom: 1px solid #eee;
    margin: 0 auto;
    box-shadow: none;
    max-width: 1400px;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: white;
    border-bottom: 1px solid #eee;
    margin: 0 auto;
    box-shadow: none;
    max-width: 1400px;
}


.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #333;
}
.H{
    color: #343a40;
    text-align: center;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}


   

.messagereq{
    width: 400Px;
    text-transform: capitalize;
    background-color: #fff;
    text-align: center;
    color: #ff4d4f;
    font-size: 13px;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    animation: anime 0.5s ease-out;
    align-items: center;


}
@keyframes anime{
    from{
        transform: translateY(-70px);
    }
}













@media (max-width: 768px) {
    .hero-content h1{
        font-size: 1.2em;
    }
    .hero-content p{
        font-size: smaller;
    }

    .navbar {
        flex-direction: column; 
        padding: 10px 20px; 
    }

    .navbar .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .navbar.open .nav-links {
        display: flex; 
    }

    .navbar-toggler {
        display: block;
        
    }
    .solutions-section h2{
        font-size: 1.5em;

    }
    .solutions-container,.container{
        position: relative;
    }
    .solution-card{
        position: relative;
        width: 90%;
        right: 57px;
    }
    .products-section h2{
        font-size: 1.5em;
    }
    .products-container{
        position: relative;
    }
    .product-card{
        position: relative;
        width: 90%;
        right: 57px;
    }
    
    .why-choose-us-container{
        position: relative;
    }
    .why-choose-us-card{
        position: relative;
        width: 90%;
        right: 65px;
    }
    .why{
        text-align: justify;
        font-size: smaller;
    }



    .cta-button {
        margin-top: 10px; 
        width: 50%;
      

    }
    .cta-button2{
        width: 80%;
    }
    .cta-button2 a{
        font-size: 0.7em;
        text-align: center;
        
    }
    .why-choose-us-container{
        font-size: 1.5em;
    }
    .why-choose-us-section h2{
        font-size: 0.9em;
    }
    .why-choose-us-card h3{
        font-size: 0.7em;
    }
    .why-choose-us-card p{
        font-size: 0.4em;
    }
    .about-card h2{
        font-size: 0.9em;
    }
    .about-card p{
        font-size: 0.7em;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links li a {
        text-align: center; 
    }
    .SB {
        flex-direction: column; 
        align-items: center; 
      }
    .H{
        font-size: 1.5em;
    }
    .cta{
        font-size: x-small;
    }
    .contact-section h2{
        font-size: 1.5em;
    }
    .contact-description{
        font-size: smaller;
    }
    label{
        font-size: smaller;
    }
    input,textarea{
        width: 50%;

    }
    .about-card h2{
        font-size: 1.5em;
    }
    .about-card p {
        font-size: 0.8em;
    }
    .footer{
        width: 100%;
    }
    /*.image{
        position: relative;
        right: 58px;
        
        width: 90%;
        
    }*/
    .container {
        flex-direction: column; /* Stacks the text and image vertically */
        align-items: center;    /* Centers the content horizontally */
        padding: 10px 20px;     /* Adjust padding for smaller screens */
    }

    .text {
        margin-left: 0; /* Remove the left margin when stacked */
        margin-bottom: 20px; /* Add space between text and image */
        text-align: center;  /* Center the text on smaller screens */
    }

    .image img {
        max-width: 90%; /* Limit image width to 90% of the container */
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Softer shadow for smaller screens */
    }
}







