/* Slider wrapper and layout */
/* Slider wrapper and layout */
.interiorhomeslider-wrapper {
    background-color: #f7f4f0;
    overflow: hidden;
    position: relative;
}

.interiorhomeslider-slide {
    min-height: 500px;
    padding: 20px 20px 5px 20px !important;
}

.interiorhomeslider-contentbox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.interiorhomeslider-heading {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.interiorhomeslider-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.interiorhomeslider-smallimg {
    max-width: 100%;
    align-self: flex-start;
    margin-top: 100px;
}

.interiorhomeslider-bigimg {
    height: 500px;
    object-fit: cover;
    border-left: 20px solid #f7f4f0;
    width: 100%;
}

/* Arrows */
.interiorhomeslider-arrow {
    position: absolute;
    top: 96%;
    z-index: 10;
    border: none;
    font-size: 21px;
    background: transparent;
    color: #000 !important;
}

.carousel-control-prev.interiorhomeslider-arrow {
    left: 94%;
}

.carousel-control-next.interiorhomeslider-arrow {
    right: 1.5%;
}

/* Dots */
.interiorhomeslider-dots {
    padding-left: 20px;
}

.interiorhomeslider-dots button {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    background-color: #ccc;
}

.interiorhomeslider-dots button.active {
    background-color: #000;
}

/* Fade animation */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
    position: relative;
}

/* Optional fade up animation */
.carousel-item.active .interiorhomeslider-heading,
.carousel-item.active .interiorhomeslider-subtitle,
.carousel-item.active .interiorhomeslider-smallimg {
    animation: fadeUp 0.4s ease-in-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    .interiorhomeslider-heading {
        font-size: 20px;
    }

    .interiorhomeslider-subtitle {
        font-size: 11px;
    }

    .interiorhomeslider-slide {
        min-height: 400px;
    }

    .interiorhomeslider-bigimg {
        height: 400px;
        border-left: 10px solid #f7f4f0;
    }

    .interiorhomeslider-smallimg {
        margin-top: 90px;
        width: 100%;
    }

    .carousel-control-prev.interiorhomeslider-arrow {
        left: 90%;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .interiorhomeslider-slide {
        flex-direction: column;
        padding: 20px 10px !important;
    }

    .interiorhomeslider-heading {
        font-size: 18px;
        text-align: center;
    }

    .interiorhomeslider-subtitle {
        font-size: 10px;
        text-align: center;
    }

    .interiorhomeslider-contentbox {
        align-items: center;
        text-align: center;
    }

    .interiorhomeslider-smallimg {
        margin-top: 0px;
        width: 100%;
        height: 175px;
    }

    .interiorhomeslider-bigimg {
        height: 250px;
        border-left: none;
        margin-top: 15px;
    }

    .carousel-control-prev.interiorhomeslider-arrow {
        left: 10px;
        top: 92%;
    }

    .carousel-control-next.interiorhomeslider-arrow {
        right: 10px;
        top: 92%;
    }

    .interiorhomeslider-dots {
        justify-content: center;
        padding-left: 0;
        display: flex;
        margin-bottom: 10px;
    }
}


/* service section css  */
.interiorhomeservices-wrapper {
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease-in-out;
    min-height: 400px;
    height: 100%;
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end;
    z-index: 1;

}

.interiorhomeservices-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.interiorhomeservices-box {
    height: 100%;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.interiorhomeservices-inner {
    padding: 20px 15px;
    width: 100%;
    min-height: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s ease;
    border-left: 1px solid #585858;
    z-index: 2;
}

.interiorhomeservices-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    margin-bottom: 5px;
}

.interiorhomeservices-content {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: 0.4s ease;
    max-height: 0;
    overflow: hidden;
}

.interiorhomeservices-inner.show-content .interiorhomeservices-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    max-height: 500px;
    overflow: visible;
}

/* Title always visible inside active */
.interiorhomeservices-inner.active .interiorhomeservices-title {
    opacity: 1;
}

.interiorhomeservices-bnt1 {
    padding: 10px 15px;
}

/* ================================
   ✅ Responsive Design
   ================================ */

/* Tablets */
@media (max-width: 991.98px) {
    .interiorhomeservices-inner {
        padding: 20px 10px;
        min-height: 300px;
    }

    .interiorhomeservices-title {
        font-size: 22px;
    }

    .interiorhomeservices-bnt1 {
        font-size: 13px;
        padding: 8px 14px;
    }

    .interiorhomeservices-content p {
        font-size: 14px;
    }

    .interiorhomeservices-wrapper {
        min-height: 300px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .interiorhomeservices-box {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .interiorhomeservices-inner {
        min-height: 250px;
        padding: 15px 10px;
        border-bottom: 1px solid #585858;
    }

    .interiorhomeservices-title {
        font-size: 20px;
    }

    .interiorhomeservices-content {
        font-size: 13px;
    }

    .interiorhomeservices-bnt1 {
        font-size: 12px;
        padding: 7px 12px;
    }
}


/* why choose us setion css  */
.interiorhomewhy-box {
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.interiorhomewhy-image img {
    object-fit: cover;
}

.img-fluid-1 {
    height: 267px !important;
    border-radius: 0px !important;
}

.interiorhomewhy-title-1 {
    text-align: center;
    font-weight: 800;
}

@media (max-width: 767px) {
    .interiorhomewhy-box {
        text-align: center;
    }
}



/* Partners Section css   */
.interiorhomepartners-section {
    background: #f9f3e7;
}

.interiorhomepartners-subtitle {
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
}

.interiorhomepartners-title {
    font-size: 32px;
}


.interiorhomepartners-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 150px;
    height: auto;
}

.interiorhomepartners-logo {
    border-radius: 5px;
    transition: 0.3s ease;
    height: 100px;
    /* Set a height to help vertical centering */
    display: flex;
    align-items: center;
    justify-content: center;
}


.interiorhomepartners-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .interiorhomepartners-title {
        font-size: 24px;
    }

    .interiorhomepartners-subtitle {
        font-size: 13px;
    }

    .interiorhomepartners-logo {
        padding: 10px;
    }
}

@media (max-width: 575.98px) {
    .interiorhomepartners-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .interiorhomepartners-subtitle {
        font-size: 12px;
    }

    .interiorhomepartners-logo img {
        max-width: 80%;
        height: auto;
    }
}


/* old and new design section css  */
.interiorhomedesign-title {
    font-size: 36px;
}

.interiorhomedesign-tab {
    border: 2px solid #c6bda5;
    background-color: #fff;
    color: #000;
    padding: 8px 20px;
    font-weight: 600;
    min-width: 160px;
    transition: 0.3s ease;
}

.interiorhomedesign-tab.active,
.interiorhomedesign-tab:hover {
    background: linear-gradient(to right, #8a259b, #022179, #8a259b);
    color: #fff;
}

.interiorhomedesign-compare-wrapper {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.interiorhomedesign-before,
.interiorhomedesign-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.interiorhomedesign-before img,
.interiorhomedesign-after img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.interiorhomedesign-after {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
    transition: clip-path 0.3s ease;
}

.interiorhomedesign-drag-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 3;
    cursor: ew-resize;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.interiorhomedesign-drag-button {
    touch-action: none;
}

/* Tablet (Between 768px to 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .interiorhomedesign-title {
        font-size: 32px;
        text-align: center;
    }

    .interiorhomedesign-tab {
        min-width: 140px;
        padding: 8px 16px;
        font-size: 14px;
    }

    .interiorhomedesign-compare-wrapper {
        height: 420px;
    }

    .interiorhomedesign-drag-button {
        width: 60px;
        height: 60px;
        font-size: 14px;
    }

    .interiorhomedesign-tabs {
        flex-direction: row !important;

    }
}

/* Mobile (Below 767px) */
@media (max-width: 767px) {
    .interiorhomedesign-title {
        font-size: 26px;
        text-align: center;
    }

    .interiorhomedesign-tab {
        display: block;
        width: 100%;
        min-width: unset;
        margin-bottom: 10px;
        padding: 10px;
        font-size: 14px;
        text-align: center;
    }

    .interiorhomedesign-compare-wrapper {
        height: 300px;
    }

    .interiorhomedesign-before button,
    .interiorhomedesign-after button {
        font-size: 12px;
        padding: 5px 10px;
    }

    .interiorhomedesign-drag-button {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }
}

.paintheaders-logo-2 img {
    width: 100px;
}

/* what we do section css  */
.interiorhomewhat-title {
    font-weight: 800;
}

.interiorhomewhat-section {
    background: #f9f3e7;
}

.interiorhomewhat-desc {
    font-size: 1rem;
    color: #6c757d;
}

.interiorhomewhat-count {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
}

.counter {
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.interiorhomewhat-label {
    font-size: 14px;
    color: #000;
    letter-spacing: 1px;
    background: none;
}

@media (max-width: 767px) {
    .interiorhomewhat-title {
        font-size: 1.8rem;
    }

    .interiorhomewhat-desc {
        font-size: 0.95rem;
    }

    .interiorhomewhat-count {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .interiorhomewhat-section {
        padding: 2rem 1rem;
    }

    .interiorhomewhat-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .interiorhomewhat-desc {
        font-size: 0.9rem;
    }

    .interiorhomewhat-count {
        font-size: 1.8rem;
    }

    .interiorhomewhat-label {
        font-size: 13px;
    }
}


/* combination of design section css  */
.carousel-section {
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
    color: #fff;
    position: relative;
}

.carousel-section h2 {
    font-size: 36px;
    font-weight: bold;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 50%;
    padding: 10px;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5%;
}

.carousel-btn {
    position: absolute;
    top: 7%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 25px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 20px;
}

.carousel-btn.left {
    left: 87%;
}

.carousel-btn.right {
    right: 50px;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 992px) {
    .carousel-slide {
        min-width: 100%;
    }

    .carousel-slide img {
        height: 300px;
    }

    .carousel-section h2 {
        font-size: 28px;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 44%;
    }

    .carousel-btn.left {
        left: 83%;
    }

    .carousel-btn.right {
        right: 40px;
    }
}

@media (max-width: 576px) {
    .carousel-slide img {
        height: 250px;
    }

    .carousel-section {
        padding: 40px 0;
    }

    .carousel-section h2 {
        font-size: 24px;
    }

    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
        top: 53%;
    }

    .carousel-btn.left {
        left: 83%;
    }

    .carousel-btn.right {
        right: 75px;
    }
}

/* interior contact us and our team section css  */
/* Team Member Card */
.interiorhomecontectteam-card {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

/* Team Image */
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 10px;
    border: 1px solid #808080;
    background: #ccc;
}

/* Zoom effect on hover */
.interiorhomecontectteam-card:hover .team-img {
    transform: scale(1.1);
}

/* Hover overlay */
.interiorhomecontectteam-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    height: 25%;
    color: #000;
    background: #ccc;
    transition: bottom 0.5s ease;
    padding: 10px 15px;
    border-radius: 0 0 10px 10px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* Show overlay on hover */
.interiorhomecontectteam-card:hover .interiorhomecontectteam-overlay {
    bottom: 0;
}

/* Icon size */
.interiorhomecontectteam-icon i {
    font-size: 16px;
}

/* Input focus style */
.form-control:focus {
    box-shadow: none;
    border-color: #dc3545;
}

/* Role badge style */
.interiorhomecontectteam-role {
    font-size: 14px;
    border-radius: 5px 5px 0 0;
}

/* Custom gradient button */
.interiorhomecontectteam-btn {
    background: linear-gradient(to right, #8a259b, #022179, #8a259b);
    border: none;
    padding: 10px 35px;
    color: #fff;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.interiorhomecontectteam-btn:hover {
    background: linear-gradient(to right, #022179, #8a259b);
    color: #fff;
}

.interiorhomecontectteam-text2 {
    font-size: 16px !important;
}

/* ✅ Responsive tweaks */
@media (max-width: 768px) {
    .interiorhomecontectteam-card {
        height: 300px;
    }

    .interiorhomecontectteam-overlay {
        height: 40%;
        font-size: 13px;
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .interiorhomecontectteam-card {
        height: 250px;
    }

    .interiorhomecontectteam-overlay {
        height: 45%;
        font-size: 12px;
        padding: 6px 10px;
    }

    .interiorhomecontectteam-text2 {
        font-size: 12px !important;
    }
}


/* about us section css  */
.interiorhomeabout-title {
    font-size: 36px;
    color: #000;
    text-align: start;
}

.interiorhomeabout-desc {
    font-size: 16px;
    color: #666;
    text-align: start;
}

.interiorhomeabout-img {
    width: 100%;
    height: 550px;
}

.interiorhomeabout-feature {
    font-size: 15px;
    color: #000;
}

.interiorhomeabout-checklist li {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.interiorhomeabout-checklist li {
    font-size: 15px;
    line-height: 1.6;
    color: #000;
}


/* ✅ Responsive Tweaks */
@media (max-width: 992px) {
    .interiorhomeabout-title {
        font-size: 28px;
    }

    .interiorhomeabout-img {
        height: 450px;
    }

    .interiorhomeabout-desc {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .interiorhomeabout-title {
        font-size: 24px;
        text-align: center;
    }

    .interiorhomeabout-desc {
        font-size: 14px;
        text-align: center;
    }

    .interiorhomeabout-img {
        height: 350px;
        margin-bottom: 20px;
    }

    .interiorhomeabout-feature {
        font-size: 14px;
        text-align: center;
    }

    .interiorhomeabout-checklist li {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .interiorhomeabout-title {
        font-size: 20px;
    }

    .interiorhomeabout-img {
        height: 300px;
    }

    .interiorhomeabout-desc {
        font-size: 13px;
    }

    .interiorhomeabout-checklist li {
        font-size: 13px;
    }
}


/* exterior page section css  */
.waterproofing_container {
    padding: 15px 0px;
    text-align: center;
}

.waterproofing-title {
    font-size: 18px;
    font-weight: bold;
    color: #ff6600;
}

.waterproofing-subtitle {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.waterproofing_para {
    font-size: 16px;
    color: #444;
    margin-bottom: 20px;
}

.waterproofing-content h3 {
    color: #ff6600;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: start;
}

.waterproofing-content p {
    font-size: 16px;
    color: #333;
    text-align: justify;
}

.waterproofing-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .waterproofing-subtitle {
        font-size: 24px;
    }

    .waterproofing-content h3 {
        font-size: 20px;
    }

    .waterproofing_para {
        font-size: 15px;
    }

    .waterproofing-img {
        margin-top: 20px;
    }

    .waterproofing_container {
        text-align: start;
    }
}



/* exterior section code  */
.interiorhomeexterior-hero {
    background: url('../img/banner-exterior-explore.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.interiorhomeexterior-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.interiorhomeexterior-cta {
    margin-top: 20px;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.interiorhomeexterior-divider {
    height: 40px;
    background: linear-gradient(135deg, #343a40 50%, #f8f9fa 50%);
}

.interiorhomeexterior-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.interiorhomeexterior-card.show {
    opacity: 1;
    transform: translateY(0);
}

.interiorhomeexterior-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.interiorhomeexterior-footer {
    background-color: #222;
}

.interiorhomeexterior-logo-section img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.interiorhomeexterior-logo-section img:hover {
    filter: grayscale(0%);
}

.interiorhomeexterior-product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interiorhomeexterior-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}




/* interior page secton css  */
.interiorhomeinterior-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.interiorhomeinterior-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.interiorhomeinterior-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 20px auto;
}

.interiorhomeinterior-grid {
    padding: 60px 0px;
    background: #ffffff;
}

.interiorhomeinterior-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    height: 350px;
}

.interiorhomeinterior-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.interiorhomeinterior-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    height: 225px;
    object-fit: cover;
}

.interiorhomeinterior-card-body {
    padding: 20px;
}

.interiorhomeinterior-card-body h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c5364;
}

.interiorhomeinterior-features {
    background: #eaf0f6;
    padding: 30px 0px;
}

.interiorhomeinterior-feature-icon {
    font-size: 2rem;
    background: #2c5364;
    color: white;
    padding: 20px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.interiorhomeinterior-feature-box {
    text-align: center;
    padding: 20px;
}

.interiorhomeinterior-feature-img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
}

.interiorhomeinterior-customimg {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* Mobile Devices (max-width: 575px) */
@media (max-width: 575px) {
    .interiorhomeinterior-hero {
        padding: 60px 15px;
    }

    .interiorhomeinterior-hero h1 {
        font-size: 2rem;
    }

    .interiorhomeinterior-hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    .interiorhomeinterior-customimg,
    .interiorhomeinterior-feature-img-wrapper {
        width: 100%;
        height: 200px;
    }

    .interiorhomeinterior-card {
        height: auto;
    }

    .interiorhomeinterior-card img {
        height: 180px;
    }

    .interiorhomeinterior-grid {
        padding: 0px 0px;
        background: #ffffff;
    }
}

/* Tablets (min-width: 576px) and (max-width: 991px) */
@media (min-width: 576px) and (max-width: 991px) {
    .interiorhomeinterior-hero {
        padding: 70px 20px;
    }

    .interiorhomeinterior-hero h1 {
        font-size: 2.5rem;
    }

    .interiorhomeinterior-customimg,
    .interiorhomeinterior-feature-img-wrapper {
        width: 100%;
        height: 220px;
    }

    .interiorhomeinterior-card img {
        height: 200px;
    }

    .interiorhomeinterior-grid {
        padding: 0px 0px;
        background: #ffffff;
    }
}

/* Large Screens (min-width: 992px) */
@media (min-width: 992px) {
    .interiorhomeinterior-feature-img-wrapper {
        width: 350px;
    }

    .interiorhomeinterior-customimg {
        width: 350px;
        height: 250px;
    }
}




/* duco paint section  csss */
.serviceduco-container {
    padding: 40px 0px;
}

.testimonial_smalltitle_1 {
    font-size: 0.9rem;
    color: #ff6b6b;
    letter-spacing: 1px;
    font-weight: 600;
}

.testimonial-title {
    font-size: 2.2rem;
    color: #333;
}

.serviceduco-banner img {
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    /* transition: transform 0.3s ease; */
}

.serviceduco-content p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.serviceduco-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
    font-size: 16px;
}

.serviceduco-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.serviceduco_span {
    color: #000;
    font-size: 16px;
}

/* ✅ Responsive Media Queries */
@media (max-width: 992px) {
    .testimonial-title {
        font-size: 1.8rem;
    }

    .serviceduco-content p {
        font-size: 16px;
    }

    .serviceduco-features li {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .testimonial-title {
        font-size: 1.6rem;
    }

    .serviceduco-content {
        padding-top: 20px;
    }

    .serviceduco-banner img {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .testimonial-title {
        font-size: 1.4rem;
    }

    .testimonial_smalltitle_1 {
        font-size: 0.8rem;
    }

    .serviceduco-content p {
        font-size: 15px;
    }

    .serviceduco-features li {
        font-size: 14px;
    }

    .serviceduco_span {
        font-size: 14px;
    }

    .serviceduco-banner img {
        max-height: 250px;
    }
}

.interiorhomeinteriorbrand-wrapper {
    background: linear-gradient(to right, #f8f9fa, #eaf0f6);
}

.interiorhomeinteriorbrand-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5364;
}

.interiorhomeinteriorbrand-subtext {
    color: #555;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.interiorhomeinteriorbrand-logo-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.interiorhomeinteriorbrand-logo-box:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.interiorhomeinteriorbrand-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.interiorhomeinteriorbrand-logo-box:hover .interiorhomeinteriorbrand-logo {
    filter: grayscale(0%);
}


/* About Page Why Choose Us */
.whychooseus-banner {
    width: 100%;
    height: 300px;
    background: url('../img/why_choose_us.jpg') center/cover no-repeat;
    position: relative;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}

.whychooseus-overlay {
    color: #fff;
    z-index: 2;
    position: relative;
}

.whychooseus_smallheading {
    font-size: 16px;
    font-weight: bold;
    color: #ff6600;
}

.whychooseus-heading {
    font-size: 2.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    padding: 0 15px;
    margin-bottom: 20px;
}

.whychooseus-btn {
    background: #ff6600;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.whychooseus-btn:hover {
    background: #cc5200;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .whychooseus-heading {
        font-size: 1.5rem;
        padding: 0 10px;
    }

    .whychooseus-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}



/* letest projects section css  */
.latestprojects-container {
    text-align: center;
    background: #f9f9f9;
}

.latestprojects-title span {
    font-size: 16px;
    color: #ff6600;
    text-transform: uppercase;
    font-weight: bold;
}

.latestprojects-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-top: 5px;
    color: #222;
    margin-bottom: 15px;
}

.latestprojects-slider-container {
    overflow: hidden;
}

.latestprojects-slider {
    transition: transform 0.5s ease-in-out;
    gap: 17px;
}

.latestprojects-item {
    min-width: calc(100% / 4 - 15px);
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.latestprojects-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.latestprojects-hover {
    position: absolute;
    bottom: 20px;
    left: 27px;
    width: 75%;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.latestprojects-item:hover .latestprojects-hover {
    opacity: 1;
    transform: translateY(0);
}

.latestprojects_name_1 {
    font-size: 14px;
    color: #ff6600;
    text-transform: uppercase;
    font-weight: bold;
}

.latestprojects_name_2 {
    font-size: 18px;
    color: #000000;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 10px;
}

.latestprojects-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #ff6600;
    border: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.latestprojects-prev {
    left: 10px;
}

.latestprojects-next {
    right: 20px;
}

.latestprojects-arrow:hover {
    background: #ff6600;
    color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
    .latestprojects-item {
        min-width: calc(100% / 2 - 15px);
        height: 450px;
    }

    .latestprojects-container {
        padding: 30px 30px;
    }
}

@media (max-width: 468px) {
    .latestprojects-item {
        min-width: 100%;
        height: 400px;
    }

    .latestprojects-container {
        padding: 20px 20px;
    }

    .latestprojects-title span {
        font-size: 14px;
    }

    .latestprojects-title h2 {
        font-size: 21px;
    }
}