/* Intro Section */
.intro-section {
    padding: 80px 0; /* Increased padding */
    background-color: #f8f8f8;
    text-align: left;
    color: #333;
}

.intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section p {
    font-size: 22px;
    line-height: 1.6;
}

/* Filter Media Cards Section */
.filter-media-cards-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: left;
}

.filter-media-cards-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-media-cards-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0da574; /* Green color */
    margin-bottom: 30px;
}

.filter-media-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.filter-media-card {
    flex-basis: calc(33.33% - 30px);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.filter-media-card:hover {
    transform: translateY(-10px);
}

.filter-media-card img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.filter-media-content {
    padding: 20px;
    background-color: #fff;
}

.filter-media-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.filter-media-content p {
    font-size: 16px;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .filter-media-card {
        flex-basis: calc(50% - 20px);
    }

    .filter-media-cards-section h2 {
        font-size: 24px;
    }
}

/* RABH Photos Section */
.rabh-photos-section {
    padding: 60px 0;
    background-color: white; /* White color */
    text-align: center;
}

.rabh-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.rabh-photo img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .rabh-photos-grid {
        grid-template-columns: 1fr;
    }
}


/* Related Products Section */
.related-products-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.related-products-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-products-section h2 {
    font-size: 28px;
    font-weight: bold;
    color: #0da574; /* Green color */
    margin-bottom: 30px;
}

.related-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.related-product {
    flex-basis: calc(33.33% - 30px);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-product:hover {
    transform: translateY(-10px);
}

.related-product img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.related-product h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

.send-inquiry-button {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .related-product {
        flex-basis: calc(50% - 20px);
    }

    .related-products-section h2 {
        font-size: 24px;
    }
}
