/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* Global Styles */
:root {
    --primary-color: #e85900; /* Vibrant orange */
    --secondary-color: #1a1a1a; /* Softer black for better contrast */
    --light-color: #ffffff;
    --dark-color: #222222;
    --gray-color: #f8f9fa;
    --text-color: #4a4a4a; /* Slightly darker for readability */
    --accent-color: #ff8c00; /* Gradient complement for buttons */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth; /* Smooth scrolling */
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.02em; /* Tighter letter spacing for headings */
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    will-change: transform; /* Optimize for animations */
}

/* Utility Classes */
.text-orange {
    color: var(--primary-color);
}
.text-black {
    color: var(--secondary-color);
}
.text-white {
    color: var(--light-color);
}
.bg-orange {
    background-color: var(--primary-color);
}
.bg-black {
    background-color: var(--secondary-color);
}
.bg-light {
    background-color: var(--gray-color);
}

/* Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-orange {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    color: var(--light-color);
    border: none;
    box-shadow: 0 4px 15px rgba(232, 89, 0, 0.3);
}

.btn-orange::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--primary-color)
    );
    transition: left 0.3s ease-in-out;
    z-index: -1;
}

.btn-orange:hover::before {
    left: 0;
}

.btn-orange:hover {
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 89, 0, 0.5);
}

.btn-outline-orange {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline-orange:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(232, 89, 0, 0.3);
}

.btn-lg {
    padding: 16px 48px;
    font-size: 18px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid var(--gray-color);
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Top Contact Bar */
.top-contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--secondary-color), #333);
    z-index: 1050;
    font-size: 15px;
    padding: 12px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-height: 48px; /* Ensure consistent height */
}

.top-contact-bar .contact-info span {
    color: var(--light-color);
    transition: color 0.3s ease;
}

.top-contact-bar .contact-info a {
    color: var(--light-color);
    text-decoration: none;
}

.top-contact-bar .contact-info a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-collapse {
    background-color: var(--secondary-color);
    border-top: 1px solid var(--gray-color);
    padding: 8px 0;
    margin-top: 8px; /* Add spacing above collapse */
}

.contact-collapse p {
    font-size: 14px;
    color: var(--light-color);
    margin: 4px 0; /* Tighter spacing for collapse items */
}

.contact-collapse a {
    color: var(--light-color);
    text-decoration: none;
}

.contact-collapse a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Adjust Navbar Positioning */
.navbar.fixed-top {
    top: 48px; /* Adjusted for top-contact-bar height */
}

@media (max-width: 767.98px) {
    .top-contact-bar {
        padding: 10px 0;
        min-height: 44px; /* Consistent height on mobile */
    }
    .contact-collapse {
        margin-top: 6px;
        padding: 6px 0;
    }
    .navbar.fixed-top {
        top: 56px; /* Increased to add spacing below top-contact-bar */
    }
}

/* Navigation */
.navbar {
    padding: 15px 0;
    background: linear-gradient(90deg, var(--secondary-color), #333);
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 0;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--light-color);
    font-weight: 500;
    padding: 12px 20px;
    margin: 0 5px;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 85vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background: var(--dark-color); /* Fallback */
}

.carousel {
    height: 100%;
    background: none;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 10s ease-in-out;
    opacity: 1;
}

.carousel-item.active .carousel-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

.hero-section .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    max-width: 1200px;
}

.hero-section .row {
    width: 100%;
}

.hero-section .col-12 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-section p {
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.hero-section .btn {
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.4s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    transition: background 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, var(--gray-color), #eceff1);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(232,89,0,0.1)" fill-opacity="1" d="M0,192L48,176C96,160,192,128,288,122.7C384,117,480,139,576,160C672,181,768,203,864,192C960,181,1056,139,1152,112C1248,85,1344,75,1392,69.3L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>')
        no-repeat top center;
    background-size: cover;
    z-index: 1;
}

.welcome-content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.welcome-content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.welcome-section .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.welcome-section .section-subtitle {
    font-size: 1.3rem;
    color: var(--text-color);
    font-style: italic;
}

.welcome-section .lead {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 25px;
}

.welcome-logo .welcome-img {
    max-width: 160px;
    transition: transform 0.4s ease;
}

.welcome-logo .welcome-img:hover {
    transform: scale(1.15) rotate(5deg);
}

.welcome-section .btn-orange {
    padding: 14px 40px;
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(180deg, var(--light-color), var(--gray-color));
    padding: 80px 0;
    border-radius: 0;
}

.stat-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    border-radius: 5px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    font-weight: 400;
}

.divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--primary-color),
        var(--accent-color)
    );
    margin: 30px auto;
    border-radius: 5px;
}

/* Services Section */
.service-highlights .service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 20px;
    height: 100%;
}

.service-highlights .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.service-highlights .service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-highlights .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-highlights .service-card:hover .service-img img {
    transform: scale(1.15);
}

.service-highlights .service-content {
    padding: 20px;
    text-align: center;
}

.service-highlights .service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-highlights .service-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-highlights .service-content .btn {
    font-size: 0.9rem;
    padding: 10px 24px;
}

/* Detailed Services Section */
.service-detail-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.service-detail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.service-detail-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-detail-card p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* About Section */
.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.about-img img {
    transition: transform 0.6s ease;
}

.about-img:hover img {
    transform: scale(1.1);
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-list i {
    margin-right: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Projects Section */
.project-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.project-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.15);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(232, 89, 0, 0.8),
        rgba(255, 140, 0, 0.9)
    );
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.project-info p {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Furniture Section */
.furniture-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-bottom: 20px;
    height: 100%;
}

.furniture-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.furniture-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.furniture-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.furniture-card:hover .furniture-img img {
    transform: scale(1.15);
}

.furniture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(232, 89, 0, 0.8),
        rgba(255, 140, 0, 0.9)
    );
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.furniture-card:hover .furniture-overlay {
    opacity: 1;
}

.furniture-info {
    padding: 20px;
    text-align: center;
}

.furniture-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--secondary-color);
}

.furniture-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.furniture-info .btn {
    font-size: 0.9rem;
    padding: 10px 24px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, var(--gray-color), var(--light-color));
    padding: 80px 0;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-color);
    position: relative;
}

.testimonial-card p::before,
.testimonial-card p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.6;
}

.testimonial-card h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.testimonial-card .text-muted {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--light-color), var(--gray-color));
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.accordion-button {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    background: transparent;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--light-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 1.1rem;
    color: var(--text-color);
    padding: 25px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(
        45deg,
        var(--primary-color),
        var(--accent-color)
    );
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--light-color);
    font-size: 2.8rem;
    font-weight: 800;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--secondary-color), #111);
    padding: 80px 0 40px;
}

.footer-logo {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer p {
    color: #aaa;
    font-size: 1.1rem;
}

.footer-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--light-color);
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.footer-contact i {
    margin-right: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
}

[data-aos] {
    transition-duration: 0.8s;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3.8rem;
    }
    .hero-section p {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
    .service-highlights .service-img,
    .furniture-img {
        height: 180px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        height: 75vh;
    }
    .hero-section h1 {
        font-size: 3.2rem;
    }
    .hero-section p {
        font-size: 1.2rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .logo-img,
    .footer-logo {
        height: 50px;
    }
    .service-highlights .service-img,
    .furniture-img {
        height: 160px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 65vh;
        min-height: 450px;
    }
    .hero-section h1 {
        font-size: 2.8rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .stats-section,
    .welcome-section,
    .services-overview,
    .service-highlights,
    .detailed-services,
    .about-section,
    .furniture-overview,
    .furniture-showcase,
    .furniture-categories,
    .testimonials-section,
    .faq-section {
        padding: 60px 0;
    }
    .stat-number {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .service-highlights .service-img,
    .furniture-img {
        height: 140px;
    }
    .service-detail-card img {
        height: 150px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .footer-title {
        font-size: 1.4rem;
    }
    .logo-img,
    .footer-logo {
        height: 45px;
    }
    .service-highlights .service-img,
    .furniture-img {
        height: 120px;
    }
    .service-detail-card img {
        height: 120px;
    }
}
