@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

@import url('https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');
html {
    scroll-behavior: smooth;
  }
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
}
.vastu-section {
    background-image: url('image/bg.webp');
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.vastu-container {
    display: flex;
    flex-wrap: wrap; /* Make the container responsive */
    align-items: flex-start; /* Align items to the start to reduce gap */
}
.vastu-container {
    flex-wrap: nowrap;
    width: 80%;
}
.vastu-image-section, .vastu-details-section {
    flex: 1;
}
.vastu-image-section {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 5px; /* Reduce space below the image section */
}
.vastu-image-section img {
    width: 80%;
    max-width: 300px;
    border: 10px solid black;
    background-image: url('image/Rectangle\ 72.webp');
}
.vastu-thumbnail-section {
    display: flex;
    justify-content: center;
    margin-top: 5px; /* Reduce space above the thumbnails */
}
.vastu-thumbnail-section img {
    width: 50px;
    height: 50px;
    margin: 0 5px;
    border: 2px solid black;
    cursor: pointer; /* Change cursor to pointer to indicate clickability */
}
.vastu-details-section {
    flex: 1 1 100%; /* Make the details section take full width on small screens */
    padding-left: 10px; /* Reduce padding to bring text closer */
    font-size: 10px; /* Further reduced font size */
}
.vastu-details-section h1 {
    font-size: 14px; /* Further reduced font size */
    font-weight: bold;
    margin: 0;
}
.vastu-details-section .brand {
    color: #a3d900;
    font-weight: bold;
    margin: 5px 0;
}
.vastu-details-section .rating {
    color: #a3d900;
    margin: 5px 0;
}
.vastu-details-section .price {
    font-size: 16px; /* Further reduced font size */
    font-weight: bold;
    margin: 5px 0;
}
.vastu-details-section .about {
    margin-top: 40px;
    line-height: 1.2;
}
.vastu-details-section .about h2 {
    font-size: 12px; /* Further reduced font size */
    margin: 5px 0;
}
.vastu-details-section .about ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 5px 0;
}
.vastu-details-section .about ul li {
    margin: 5px 0;
}
.vastu-details-section .report {
    color: #0073e6;
    margin-top: 10px;
    display: block;
}
.more-pro-con {
    width: 100%;
}
.more-pro-con .text-sec {
    padding: 40px 80px 40px 80px;
}
.more-pro-con .text-sec .head {
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 20px;
}
.more-pro-con .text-sec .detail {
    font-size: smaller;
    font-weight: 500;
}
.more-pro-con .pro-row {
    width: 100%;
    /* padding: 0 170px 100px 170px; */
    padding: 40px 0 80px;
    display: flex;
    /* flex-direction: column; */
    flex-direction: row;
    justify-content: center;
    /* align-items: center; */
    
}
.pro-row .pro1 {
    width: 20%;
    /* width: 80%; */
}
.pro1 .pro-img {
    background-image: url('image/Rectangle\ 72.webp');
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.pro1 .pro-img img {
    width: 80%;
    height: 80%;
}
.pro1 .pro-content {
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;

    /* justify-content: space-between; */
    /* padding: 0 0 30px; */
}
.pro1 .pro-content .title {
    font-family: Alegreya, sans-serif;
    font-size: 20px;
    font-weight: 700;
}
.pro1 .pro-content .rs {
    font-size: 18px;
    font-weight: 700;
}
.pro1 .pro-content .order {
    /* width: 80px; */
    background-color: #3daaf3;
    color: #fff;
}
.pro1 .pro-content button {
    padding: 10px 20px;
    font-size: 16px;
    /* margin-top: 40px; */
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.vastu-section-res {
    display: none;
}



@media (max-width: 768px) {
    .vastu-section {
        display: none;
    }

    .vastu-section-res {
        display: block;
        width: 100%;
    }
    .vastu-container-res {
        width: 100%;
        display: flex;
        flex-direction: column;
        background-image: url('image/bg.webp');
        padding: 20px 0 20px;
    }
    .vastu-details-section {
        padding: 12px 30px 0 30px;
    }
    .pro1 .pro-content {
        gap: 8px;
    }
    .more-pro-con .pro-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 0;
    }
    .pro-row .pro1 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .more-pro-con .text-sec {
        padding: 20px;
    }
}