body{
    margin:0px;
    padding:0px;
    font-family:'Times New Roman'
}
.about-us {
    text-align: justify;
}
/*.custom-navbar {
    background-color: #ffffff !important; 
}

    .custom-navbar .nav-link {
        color: #000000 !important; 
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .custom-navbar .nav-link:hover,
        .custom-navbar .nav-link.active {
            color: #FF7F7F !important;
        }

    .custom-navbar .navbar-brand span {
        color: #000000 !important; 
    }*/
/* White background header */
.custom-navbar {
    background: #fff;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1); 
    padding: 10px 0;
}




.navbar-nav .nav-link {
    color: #111 !important; 
    font-weight: 500;
    margin: 0 12px;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #d82020!important;
        font-weight: 600;
    }

.btn-contact {
    background-color: #d82020; 
    color: #fff;
    font-weight: 400;
    padding: 8px 20px;
    border-radius: 30px;
    transition: 0.3s;
}

    .btn-contact:hover {
        background-color: #0093dd; 
        color: #fff;
    }

    
.carousel-inner {
    height: 500px;
    position: relative;
}
/*
.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
*/

.carousel-caption {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    bottom: initial;
}




@media (max-width: 768px) {
    #interior-carousel
    {
        padding-bottom:0px;
    }
    #interior-carousel img {
        height: 300px !important;
    }

    #interior-carousel .carousel-caption {
        bottom: 10px;
        font-size: 14px;
        padding: 10px;
    }

        #interior-carousel .carousel-caption h3 {
            font-size: 18px;
        }

        #interior-carousel .carousel-caption p {
            font-size: 14px;
        }
    .carousel-inner,.carousel-control-prev, .carousel-control-next {
        height: 300px !important;
    }
}

.breadcrumb-section {
    background: url('/images/img-3.jpg') no-repeat center center;
    background-size: cover;
    height: 250px; 
    display: flex;
    align-items: center;
    position: relative;
}

    .breadcrumb-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5); 
        z-index: 0;
    }

    .breadcrumb-section .container {
        position: relative;
        z-index: 1; 
    }

    .breadcrumb-section h2 {
        font-weight: 700;
    }

    .breadcrumb-section .breadcrumb a {
        color: #fff;
    }

    .breadcrumb-section .breadcrumb .active {
        color: #fff;
        font-weight: 500;
    }




.why-choose-us {
    background-color: #f0f8ff;
}

.circle-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .circle-icon img {
        width: 60%;
        height: 60%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .circle-icon:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

        .circle-icon:hover img {
            transform: scale(1.2);
        }

.why-choose-us {
    background-color: #ffffff;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 10px 10px; 
}

.why-choose-us p {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.service-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 30px;
}

    .service-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-card:hover img {
        transform: scale(1.1);
    }

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(135, 206, 250, 0.85); /* sky blue overlay */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}
.projects-section {
    background-color: #f9f9f9;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

.project-img {
    overflow: hidden;
}

    .project-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 15px;
    text-align: center;
}

    .project-info h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .project-info p {
        font-size: 14px;
        color: #555;
    }


.testimonial p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-section {
    background-color: #ffffff;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px) !important;
    background-size: 10px 10px;
}

.btn-know-more{
   padding:7px 20px;
   background:#000;
   border-radius:1px;
   color:#fff;
}
    .btn-know-more:hover {
        background: #000;
        border-radius: 1px;
        color: #fff;
    }
.testimonial
{
    background:#fff;
}
    .testimonial:hover {
        transform: scale(1.05);
       
    }

.carousel-caption {
    border: 2px solid  #00aaff;
    background: rgba(0,0,0,.2);
    padding: 30px;
    width: 200px;
}
.slide-btn {
    border: 1px solid #000;
     background: rgba(0,0,0,.2);
     padding:10px;
     color:#fff;
}

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size:40px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 9999;
}
.whatsapp {
    height: 40px;
    width: 40px;
    background: limegreen !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: blinkGlow 1.8s infinite;
}
.call {
    height: 40px;
    width: 40px;
    background: #1877f2 !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: blinkGlow 1.8s infinite;
}
.facebook {
    height: 40px;
    width: 40px;
    background: #1877f2 !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: blinkGlow 1.8s infinite;
}
.insta {
    height: 40px;
    width: 40px;
    background: #E4405f !important;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    animation: blinkGlow 1.8s infinite;
}
    a.btn-know-more
    {
        color:#fff!important;
    }
     a.float-btn i{
         color:#fff!important;
     }

     .product{
         color:#000;
     }
.navbar .dropdown-menu {
    
    border-radius: 6px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: none;
}

.navbar .dropdown-item {
    color: #000;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05); 
    transition: all 0.2s;
}

    .navbar .dropdown-item:hover {
        background-color: #00aaff;
        color: #fff;
    }

.core-value:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.director-img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.director-message p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}





.core-values {
    background-color: #ffffff;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px) !important;
    background-size: 10px 10px;
}
.core-value {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: #fff;
    padding-top: 40px; 
}

    .core-value::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: #00aaff;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 50%);
        z-index: 0;
    }

    .core-value i {
        position: relative;
        z-index: 1;
        color: #00aaff; 
        background: #fff; 
        border-radius: 50%;
        padding: 15px;
        border: 2px solid #00aaff; 
    }
    li{
        list-style:none;
    }
.interior-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 30px;
}

    .interior-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .interior-card:hover img {
        transform: scale(1.1);
    }

.interior-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction:column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.interior-card:hover .interior-overlay {
    opacity: 1;
}
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .project-card img {
        width: 100%;
        height: 250px;
        display: block;
        transition: transform 0.4s ease;
    }

    .project-card:hover img {
        transform: scale(1.05);
    }

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6); 
    color: #fff;
    text-align: center;
    padding: 10px;
    transition: background 0.3s ease;
}

.project-card:hover .project-overlay {
    background: rgba(0,0,0,0.8);
}

.product-img
{
    height:200px;

}

.products-img
{
    width:100%;
    height:300px;
}
.zoom-img {
    width:100%;
    height:300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .zoom-img:hover {
        transform: scale(1.05);
    }


.popup-overlay {
    position: fixed;
    inset: 0; 
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

    .popup-overlay.active {
        opacity: 1;
        visibility: visible;
    }


.popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}
.popup-content input,
.popup-content textarea,
.popup-content button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.popup-content button {
    border: none;
    background: #00aaff;
    color: #fff;
    cursor: pointer;
}
.popup-btn {
    background: #00aaff;
}

