body {
	margin: 0;
	padding: 0;
	background: linear-gradient(179.03deg, rgba(152, 170, 218, 0.9) 4.07%, rgba(152, 170, 218, 0.8) 12.83%, rgba(152, 167, 218, 0.8) 20.02%, rgba(152, 167, 218, 0.8) 37.47%, rgba(152, 174, 218, 0.9) 67.3%);
}

/* Header Section */
header {
    background-color: #a4b4de;
    color: white;
}

.contact-btn {
    background: #a4b4de;
}

@media only screen and (max-width: 900px) {
  
    .nav-bar {
        background: #a4b4de;
       
    }
}

.dropdown-content {
    background: #a4b4de;
}

    .dropdown-content::before {
        border-color: transparent transparent #a4b4de transparent;
    }


/* Page Title Styling */
.product-bg {
    text-align: center;
    justify-content: space-around;
    position: relative;
    display: flex;
}

.product-title {
    max-width: 1600px;
    text-align: left;
    color: #fff;
    padding: 300px 300px 200px 100px;
}

/*product section */
.products-section {
    position: relative;
    flex-direction: column;
    display: flex;
    align-items: center;
}

/* Product container (for only 2 products) */
.product-container {
    max-width: 1600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 100px 80px 100px;
    width: 100%;
    margin: 0 auto;
}


.product-card {
    background-color: transparent;
    overflow: hidden;
    width: 48%;
    position: relative;
    margin-bottom: 40px;
}

    .product-card:hover .product-image img {
        transform: scale(1.07);
    }

    .product-card:hover .product-info p {
        color: #18416f;
        text-decoration:underline;
    }

.product-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
        transition: transform 0.8s ease;
        transform-origin: center center;
    }

        .product-image img:hover {
            transform: scale(1.07);
        }


.product-info {
    padding: 15px 5px;
    text-align: left;
}

    .product-info h3 {
        margin: 0;
        color: #333;
    }

    .product-info p {
        margin: 10px 0;
        color: #333;
    }

.product-card {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.product-card:nth-child(3) {
        margin-left: auto;
        margin-right: auto;
        width: 48%;
}

@media (max-width: 900px) {

    .product-title {
        padding: 150px 20px 70px 20px;
        text-align: left;
    }

    .products-section {
        flex-direction: column;
        justify-content: center;
        padding: 50px 20px 0 20px;
    }

    .product-card:nth-child(3) {
        width:100%;
    }

    .product-container {
        flex-direction: column; 
        padding: 20px 0px; 
        gap: 20px;
    }

    .product-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .product-image img {
        height: auto; 
        max-height: 300px; 
    }

    .product-info {
        text-align: center;
        padding: 10px 5px;
    }

        .product-info h2 {
            font-size: 1.2rem;
        }


    /* Read-More Button */
    .read-more-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin-top: 10px;
    }
}


@media (max-width: 480px) {
    .page-title {
        padding: 130px 15px 80px;
    }
}

