body{
    background-color: #e1e1e1;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-width: 100dvw;
    box-sizing: border-box;
}
.hero-text-heading{
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 3vw;
    font-family: "Aileron Thin";
    color: black;
    margin: 0;
    padding: 1dvw;
    padding-top: 3dvw;
   

    
}
.hero-text-paragraph{
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.4dvw;
    font-family: "Aileron Thin";
    color: grey;
    width: 50dvw;
    margin: 0;
    padding: 1dvw;
    padding-bottom: 3dvw;
    
}
.hero-text{
    padding-top:4dvw;
    display: flex;
    flex-direction: column;
    
    align-items: center;
    
}
.hero-image{
    width: 100dvw;
    display: flex;
    position: relative;
    
    
}

.hero-image img{
    width: 100%;
    object-fit: contain;
}
.hero{
    width: 100dvw;
}
.projects-section{
   
    display: flex;
    
}
.right-sided-project{
    height: 100%;
    width: 100dvw;
    margin: 1dvw;
    font-family: "Aileron Thin";
    text-align: center;
    font-size: 4dvw;
   
}
.ourProj{
    height: 100%;
    width: 100dvw;
    margin: 1dvw;
    font-family: "Aileron Thin";
    text-align: center;
    font-size: 4dvw;
  color:black;
   
}
.ourPartner{
  height: 100%;
    width: 100dvw;
    margin: 1dvw;
    font-family: "Aileron Thin";
    text-align: center;
    font-size: 4dvw;
  color:black;
}
.WCG{
 height: 100%;
    width: 100dvw;
    margin: 1dvw;
    font-family: "Aileron Thin";
    text-align: center;
    font-size: 4dvw;
  color:black; 
}

.CS{

height: 100%;
    width: 100dvw;
    margin: 1dvw;
    font-family: "Aileron Thin";
    text-align: center;
    font-size: 4dvw;
  color:black;
}



.section {
    display: flex;
    align-items: center;
    font-family: "Aileron Thin";
    padding: 50px;
}
.content {
    max-width: 500px;
    margin-right: 20px;
}
.content h2 {
    color: orangered;
    margin: 0;
    font-size: 28px;
}
.content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}
.icon-list {
    margin-top: 20px;
    color: rgb(228, 73, 17);
}
.icon-list li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 10px;
}
.icon-list li i {
    margin-right: 10px;
    color: #00A2E8;
}
.image {
    flex-grow: 1;
    text-align: right;
}
.image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* filter: grayscale(100%) contrast(150%); */
}
.mirrored-section {
    display: flex;
    align-items: center;
     
    padding: 50px;
    font-family: "Aileron Thin";
}
.mirrored-content {
    max-width: 500px;
    margin-left: 20px;
}
.mirrored-content h2 {
    color: orangered;
    margin: 0;
    font-size: 28px;
}
.mirrored-content p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}
.mirrored-icon-list {
    margin-top: 20px;
}
.mirrored-icon-list li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 10px;
    color: rgb(228, 73, 17);;
}
.mirrored-icon-list li i {
    margin-right: 10px;
    color: orangered;
}
.mirrored-image {
    flex-grow: 1;
    text-align: left;
}
.mirrored-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* filter: grayscale(100%) contrast(150%); */
}
.products-section {
    padding: 80px 40px; /* Increased padding for more space around the section */
    text-align: center;
    background-color: #f2f2f2;
    font-family: "Aileron Thin";
}
.product-heading{
font-size: 4dvw;
font-weight: 1200;
}


.products-section p{
  font-family: "Aileron Thin";
}

.products-section p {
    font-size: 4dvw;
    margin-bottom: 60px; /* Increased margin below the title */
    color: #333;
  
    font-size: 4dvw;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three products per row */
    gap: 40px; /* Increased gap between product cards */
    justify-items: center;
  font-family: "Aileron Thin";
}

.product-card {
    background-color: #e1e1e1;
    border: 1px solid #ddd;
    border-radius: 12px; /* Slightly increased border radius for a more spacious feel */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Enhanced shadow for better separation */
    padding: 30px; /* Increased padding inside the card */
    width: 100%;
    max-width: 350px; /* Slightly increased max-width for more content space */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.product-card img {
    width: 100%;
    border-radius: 12px 12px 0 0; /* Match the card's border radius */
    margin-bottom: 20px; /* Added space below the image */
}

.product-card h3 {
    font-size: 28px; /* Slightly larger font for product titles */
    margin: 20px 0 10px; /* Increased top margin and adjusted bottom margin */
    color: #333;
}

.product-card p {
    font-size: 18px; /* Increased font size for better readability */
    color: #777;
    margin-bottom: 30px; /* Increased margin below the description */
}

.btn {
    display: inline-block;
    padding: 12px 24px; /* Increased padding for a larger button */
    font-size: 18px; /* Increased font size for the button text */
    color: #fff;
    background-color: orangered; /* Button color */
    text-decoration: none;
    border-radius: 6px; /* Slightly increased border radius */
    text-align: center;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e55328; /* Darker shade on hover */
}
.form-container {
    background-color: #e1e1e1;
    font-family: "Aileron Thin";
    padding: 30px;
    
   
    width: 100%;
    max-width: 100dvw; 
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    /* Form now expands to full width but is limited to 1200px */
}

.form-container p {
    text-align: center;
    margin-bottom: 4dvw;
    font-size: 4dvw;
    color: #333;
}

.form-group {
    margin-bottom: 2dvw;
    font-size: 1.4dvw;
    width: 50dvw;
}

.form-group label {
    display: block;
    margin-bottom: 1.5dvw;
    color: #555;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5f6df7;
}

textarea {
    resize: none;
}

.submit-btn {
    background-color: #5f6df7;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #4a55d7;
}
h1, p {
    text-align: center;
}

.whatsapp-icon {
    position: fixed;
    bottom: 2dvw;
    left:1dvw;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon img {
    width: 40px;
    height: 40px;
}

.partner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 4dvw;
    font-family: "Aileron Thin";
    background-color: white;
}



.services{
    background-color: #e1e1e1;
    font-family: "Aileron Thin";
    font-size: 4dvw;
}
.services-section {
    font-family: "Aileron Thin";
    background-color: #e1e1e1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    grid-gap: 2dvw;
    max-width: 80dvw;
    margin: 0 auto;
}

.service-item {
    background-color: #e1e1e1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    
}

.service-item img {
    width: 50%;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.service-item h2 {
   
    font-size: 1.8dvw;
    color: orangered;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1.5dvw;
    color: #333;
    line-height: 1.2
    width: 30dvw;
}

/* Responsive Design Enhancements (Optional but recommended) */
@media (max-width: 1200px) {
    .product-cards {
        grid-template-columns: repeat(2, 1fr); /* Two products per row on medium screens */
    }
}

@media (max-width: 768px) {
    .product-cards {
        grid-template-columns: 1fr; /* One product per row on small screens */
    }
    
    .products-section {
        
        padding: 60px 20px; /* Adjusted padding for smaller screens */
    }
    
    .product-card {
        max-width: 100%;
    }
}