* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


header {
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    background-color: white; 
    z-index: 1000; 
   
}

header .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 74px; /* Adjust padding */
}

header .header .header-img img {
    width: 260px;
    cursor: pointer;
}

header .header .links a {
    font-size: 30px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    border: 2px solid black;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
}

header .header .links a:hover {
    background-color: black;
    color: white;
    transition: 0.4s ease;
}

/* Adjust body to account for fixed header */
body {
    margin: 0;
    padding: 0;
}

.section1 {
    margin-top: 100px; /* Prevent header overlap */
    background-image: url("./Assets/Untitled\ design\ \(31\).png");
    height: 430px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.section1 .info {
    padding: 20px 50px;
}

.section1 h1 {
    margin: 0px;
    font-size: 75px;
    color: hsl(28, 78%, 44%);
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 80px;
}

.section1 .contact-btn {
    padding: 17px 40px;
    background-color: hsl(28, 78%, 44%);
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}
.section1 .mailbtn{
    margin-left: 20px;
}

.section1 .contact-btn:hover {
    background-color: white;
    color: hsl(28, 78%, 44%);
    transition: 0.3s ease-in-out;
}

/* Section 2 */
.section2 h1 {
    text-align: center;
    font-size: 50px;
    margin-top: 40px;
}

.section2 .products {
    margin: 127px 76px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    column-gap: 25px;
}

.section2 .products .product-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 33%;
    height: 520px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.section2 .products .product-info img {
    width: 90%;
    height: 55%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}

.section2 .products .product-info img:hover {
    transform: scale(1.07);
    transition: 0.3s ease-in-out;
}

.section2 .products .product-info h1 {
    margin: 10px  10px; /* Add spacing for the heading */
}

.section2 .products .product-info p {
    text-align: center;
    margin: 10px 0;
    flex-grow: 0;
    width: 90%;
}
.section2 .products .product-info  a{
    
    border: 2px solid #0d3783;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #0d3783;
    color: white;
    font-weight: 500;
    text-decoration: none;
}
.section2 .products .product-info a:hover{
    color: #0d3783;
    background-color: #fff;
    font-weight: 700;
    transition: 0.4s ease;
    transform: scale(1.0001);

}

/* Footer */
.footer .company-name h3{
   text-align: center;
   margin-bottom: 30px;
    
}



@media (max-width: 1210px) {
    .section2 .products {
        margin: 100px 50px;
        display: flex;
        justify-content: center;
        align-items: stretch;
        column-gap: 25px;
    }
    .section2 .products .product-info h1 {
       font-size: 30px; 
    }

}
/* Responsive Adjustments */
@media (max-width: 990px) {
    header .header {
        padding: 10px 20px;
    }

    header .header .links a {
        font-size: 20px;
        padding: 8px 15px;
    }

    .section1 h1 {
        font-size: 50px;
        line-height: 60PX;
    }

    .section2 h1 {
        font-size: 35px;
        
    }

    .section2 .products {
        flex-direction: column;
        row-gap: 25px;
        margin: 50px 20px;
    }

    .section2 .products .product-info {
        width: 100%;
        height: auto;
    }

    
}
@media (max-width: 600px){
    header .header .header-img img {
        width: 120px;
        cursor: pointer;
    }
    header .header .links a {
        font-size: 17px;
       
        font-weight: 500;
        border: 2px solid black;
        padding: 6px 10px;
    }
    .section1 {
        margin-top: 120px; /* Prevent header overlap */
        height: 330px;
    }
    .section1 .info {
        padding: 20px;
        display: flex;
        align-items: center;
        flex-direction: column;

        
    }
    .section1 h1 {
        margin: 0px;
        font-size: 30px;
        color: hsl(28, 78%, 44%);
        font-weight: 700;
        margin-bottom: 10px;
        text-align: center;
        line-height: 40px;
    }
    
    .section1 .contact-btn {
        padding: 14px 2px;
        background-color: hsl(28, 78%, 44%);
        border-radius: 10px;
        font-weight: 500;
        width: 150px;
        margin: 0px;
        margin-bottom: 20px;
        text-align: center;
        
        
    }
    .section1 .mailbtn{
        margin-left: 0px;
    } 
    .section2 h1 {
        text-align: center;
        font-size: 23px;
        padding: 12px;
    }
    .section2 .products .product-info img {
        width: 100%;
        height: 55%;
    }
}
 