#wrx-canvas {
    background: #fff;
}
.page-title {
    color: #000;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.page-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background-color: var(--secondary) !important;
    position: absolute;
    bottom: -10px;
    left: 0;
}

:host {
    color-scheme: none !important;
    background-color: light-dark(#fff, #ffffff) !important;
}
.hero-section {
    background: url("https://cdn1.cloudwrx.com/static/2122/images/content/BuildersDIY-HomeFG.jpg")
        no-repeat center center/cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* Custom CSS for sections */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: "";
    width: 60%;
    height: 4px;
    background-color: var(--secondary) !important;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.section-spacing {
    padding: 80px 0;
}

/* Custom Cards Styling */
.custom-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures the image respects border radius */
}
.custom-card img {
    width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 15px 0 0 15px; /* Rounded corners on top-left and bottom-left */
}
.custom-card .card-content {
    flex: 1;
    padding: 20px;
}
.custom-card .btn {
    margin-top: 10px;
}

/* Survey Cards Styling */
.survey-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures the image respects border radius */
}
.survey-card img {
    width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 15px 0 0 15px; /* Rounded corners on top-left and bottom-left */
}
.survey-card .card-body {
    flex: 1;
    padding: 20px;
}
.survey-card .btn {
    margin-top: 10px;
}

/* Responsive Adjustments */
@@media (max-width: 767.98px) {
    .custom-card,
    .survey-card {
        flex-direction: column;
        text-align: center;
    }
    .custom-card img,
    .survey-card img {
        width: 100%;
        border-radius: 15px 15px 0 0; /* Rounded corners on top-left and top-right for mobile */
    }
}
