 .about-us {
        text-align: center;
        background-color: #327fc7;
        background-image: url('../Images/pagebg.png'),url('../Images/pin.png'); 
        width: 100vw;
        height: 60%;
        margin-top: 120px; 
        color: white; 
        padding: 60px 20px;
        box-sizing: border-box; 
        border: none;
        border-bottom-right-radius: 100px ;
    }
    .about-us h1 {
        font-size: 2.5em; 
        margin-top: 60px;
        margin-bottom: 20px;
        color: #f7f6f4; 
        border-left: none;
        border-right: none;
    }

    .about-us p {
        font-size: 1.2em; 
        line-height: 1.5; 
        text-align: center;
        color: #fcfeff; 
    }
    @media screen and (max-width: 600px){
        .about-us {
            border: none;
            border-bottom-right-radius: 0;
            height: 50%;
        }
        .about-us h1 {
            font-size: 1.5em;
           border: none;
        }
        .about-us p{
            font-size: 1em;
            text-align: justify;
        }
    }
.separator1{
    border: none; 
    height: 2px; 
    background-color: #00abbb; 
    margin: 20px auto; 
    width: 70%; 
}
.product-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #e8f7f7;
}

h2 {
    font-size: 2rem;
    color: #2685c5;
    margin-bottom: 10px;
}
h3{
    margin-bottom: 10px;
}

p {
    font-size: 0.9rem;
    color: #555;
    margin-top: 5px;
    margin-bottom: 5px;
    line-height: 1;
    max-height: 5em; /* Restrict to 2 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: center;
}
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
     display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.button-container {
    margin-top: 15px;
}
.btn1 {
    background: #2685c5;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn1:hover {
    background: #3bafc0;
}

@media (max-width: 768px) {
    .product-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 30px 10px;
    }
    .product-container {
        grid-template-columns: 1fr;
    }
       p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.3rem;
    }
}