/*  */
/* Home Page */
/*  */
body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Modern Navbar Style for Interior Company */
.navbar {
    background-color: #151b46 !important;
    /* Deep Navy/Indigo */
}

.navbar-brand {
    font-weight: 600;
    color: #f4b400 !important;
    /* Gold accent */
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    color: #f9f9f9;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background-color: #f4b400;
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #f4b400;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Dropdown on Hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    background-color: #1b1f3b;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-menu .dropdown-item {
    color: #f9f9f9;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f4b400;
    /* Gold background on hover */
    color: #1b1f3b;
    /* Dark text for contrast */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero .slide {
    position: absolute;
    inset: 0;
    /* shorthand for top:0; left:0; right:0; bottom:0 */
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease, transform 4s ease;
}

.hero .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Call-to-Action Button */
.hero .cta-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f4b400;
    /* Brighter for visibility */
    color: #1b1f3b;
    padding: 14px 36px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: background-color .3s, transform .3s;
    z-index: 3;
}

.hero .cta-btn:hover {
    background-color: #d39e00;
    /* Slightly darker gold on hover */
    transform: translate(-50%, -50%) scale(1.05);
    color: #fff;
}

/* Thumbnail navigation (if using) */
.hero .thumbs {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero .thumbs img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color .3s, transform .3s;
}

.hero .thumbs img.active {
    border-color: #E2C3FF;
}

.hero .thumbs img:hover {
    transform: scale(1.05);
    border-color: #D1A3E3;
}

/* scetion Common */
.section-title {
    position: relative;
    font-weight: 600;
    font-size: 2rem;
    color: #1b1f3b;
    margin-bottom: 30px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #E2C3FF;
}

section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Service Card Styling */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.service-card img {
    width: 100%;
    height: 250px;
    /* Fixed size for all images */
    object-fit: cover;
    /* Crops nicely without distortion */
}

/* Hover Elevation */
.service-card:hover {
    transform: translateY(-5px);
}

/* Overlay Reveal on Hover */
.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(27, 31, 59, 0.8);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 15px;
}

.service-overlay h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f4b400;
    /* Golden accent color for titles */
}

.service-overlay p {
    color: #f9f9f9;
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* About Read More */
.read-more-content {
    max-height: 140px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.read-more-expanded .read-more-content {
    max-height: 800px;
}

.read-more-btn {
    color: #f4b400;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
    cursor: pointer;
}

.faq-question {
    font-weight: 500;
    color: #1b1f3b;
    font-size: 1.05rem;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #555;
    line-height: 1.6;
}

.faq-item.show .faq-answer {
    display: block;
}

/* Icon Styling */
.toggle-icon {
    color: #f4b400;
    /* Gold accent for visibility */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.show .toggle-icon {
    transform: rotate(180deg);
}

/* Gallery Thumbs */
.gallery-thumb {
    position: relative;
    width: 350px;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-thumb img,
.gallery-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Overlay Text on Hover */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(27, 31, 59, 0.75);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    text-align: center;
}

.gallery-thumb:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f4b400;
}

.gallery-gap {
    gap: 5rem;
    /* or adjust to your liking */
}

/* Optional: Mock monitor frame effect */
.monitor-frame {
    border: 6px solid #1b1f3b;
    border-radius: 12px;
    background-color: #1b1f3b;
}

/* Testimonials */
.testimonials {
    position: relative;
    background: url('../images/about.jpg') center center / cover no-repeat;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-slider {
    overflow: hidden;
    max-width: 1200px;
    /* Wider to fit 2-3 cards depending on screen */
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    animation: scrollLeft 25s linear infinite;
    gap: 30px;
}

.testimonial-card {
    flex: 0 0 40%;
    /* Show 2 cards per row (desktop) */
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 25px;
    border-radius: 10px;
    text-align: left;
    min-width: 400px;
    /* Keeps cards same width */
}

.testimonial-card p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.7;
    color: #fff;
}

.testimonial-card strong {
    color: #f4b400;
    font-weight: 600;
}

/* Animation Keyframes → Moves full cards smoothly */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-95%);
    }
}

/* Mobile Responsive: 1 card visible */
@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 90%;
        min-width: 300px;
    }
}

/* Portfolio */
.portfolio-item {
    text-align: center;
}

.portfolio-link {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Any size image fits perfectly */
}

.portfolio-title {
    margin: 0;
    padding: 0 10px 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #1b1f3b;
    min-height: 60px;
    /* Keeps all titles aligned neatly */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.portfolio-link:hover .portfolio-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(27, 31, 59, 0.4);
}

/* Process */
.process {
    position: relative;
    background: url('../images/process.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.process .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* Ensures light images are darkened */
    z-index: 0;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.process-step {
    width: 140px;
    /* Slightly larger circle */
    height: 140px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.process-step:hover {
    background-color: #8fd6d8;
    /* Elegant gold on hover */
    color: #020202;
    transform: scale(1.05);
}

/* Counter */
.counter {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
}

/* Clients & Partners */
.clients-section {
    position: relative;
    background: url('../images/mvcp.png') center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.clients-section .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.clients-section .container {
    position: relative;
    z-index: 2;
}

.logo-slider {
    overflow: hidden;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-track {
    display: flex;
    gap: 50px;
    animation: scrollLeft 25s linear infinite;
}

.logo-track.reverse {
    animation: scrollRight 30s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    width: 250px;
    /* Controls how many logos are visible at once → 3-4 depending on screen size */
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(40%);
    transition: transform 0.3s, filter 0.3s;
}

.logo-item img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo-item {
        width: 180px;
        height: 100px;
    }
}

/* Back-to-top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f7f6f6;
    color: #a73d3d;
    border: none;
    padding: 12px;
    border-radius: 50%;
    display: none;
    cursor: pointer;
    z-index: 900;
}

/* Footer */
.site-footer {
    font-size: 0.95rem;
}

.site-footer h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.site-footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer a:hover {
    color: #f4b400;
    /* Brand accent color */
}

.social-icons a {
    color: #ccc;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f4b400;
}

/* Avoid horizontal scroll */
html,
body {
    overflow-x: hidden;
}

/*  */
/* Breadcrumb Common */
/*  */
.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.breadcrumb-nav {
    color: #f4b400;
    font-weight: 500;
    font-size: 1rem;
}

/*  */
/* About Us Page */
/*  */
.why-choose-us {
    background-color: #035e3f;
    color: #fff;
    padding: 80px 0;
}

.why-choose-us h2 {
    text-align: center;
    color: #f4b400;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.why-choose-us .description {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.7;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-box i {
    font-size: 2rem;
    color: #f4b400;
    flex-shrink: 0;
}

.feature-box h5 {
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-box p {
    margin: 0;
    color: #bbb;
    font-size: 0.95rem;
}

/*  */
/* Contact Us Page */
/*  */
.icon-box {
    background-color: #f4b400;
    color: #1b1f3b;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.3rem;
}

.btn-primary {
    background-color: #1b1f3b;
    border: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #f4b400;
    color: #1b1f3b;
}

.form-floating label {
    color: #888;
}

input:focus,
textarea:focus {
    border-color: #f4b400 !important;
    box-shadow: none !important;
}

/* Floating Get Estimate Button */
.floating-estimate-btn {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #1b1f3b;
    color: #fff;
    padding: 12px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: width 0.3s ease, padding 0.3s ease;
    overflow: hidden;
    width: 50px;
}

.floating-estimate-btn i {
    font-size: 20px;
}

.floating-estimate-btn .estimate-text {
    margin-left: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 500;
}

/* Expand on hover */
.floating-estimate-btn:hover {
    width: 160px;
    padding: 12px 20px;
}

.floating-estimate-btn:hover .estimate-text {
    opacity: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 70px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-icon {
    color: white;
}

