:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #ff9f1c;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Montserrat', sans-serif;
    padding-top: 90px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.navbar-brand span {
    color: var(--accent-color);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.85) !important;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-color) !important;
    padding: 8px 8px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--accent-color) !important;
}


.dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mega Menu Styles */
.nav-item.dropdown {
    position: static;
}

.mega-menu {
    position: absolute !important;
    top: 100%;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100vw;
    background-color: white;
    border-top: 3px solid var(--accent-color);
    padding: 30px 0;
    z-index: 1050;
}

.mega-menu .container {
    max-width: 1200px;
}

.mega-menu .row {
    flex-wrap: nowrap;
}

.mega-menu h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-color);
}

.mega-menu ul {
    list-style: none;
    padding: 0;
}

.mega-menu ul li {
    margin-bottom: 8px;
}

.mega-menu ul li a {
    color: var(--dark-color);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.mega-menu ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.mega-menu-img {
    background-size: cover;
    background-position: center;
    height: 100%;
    min-height: 250px;
    border-radius: 5px;
    margin-left: 20px;
    flex: 1;
}

.nav-cta {
    background-color: var(--accent-color);
    color: white !important;
    border-radius: 30px;
    padding: 10px 25px !important;
    font-weight: 600 !important;
    margin-left: 10px;
}

.nav-cta:hover {
    background-color: #e68a00;
}

.nav-cta::after {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .mega-menu {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        box-shadow: none;
        border-top: none;
    }

    .mega-menu .row {
        flex-wrap: wrap;
    }

    .mega-menu-img {
        margin-left: 0;
        margin-top: 20px;
        min-height: 200px;
        width: 100%;
    }

    .nav-cta {
        margin-top: 15px;
        display: inline-block;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show {
    animation: fadeIn 0.3s ease forwards;
}
.dropdown-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
    opacity: 0;
    transform: translateY(10px);
}

.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Preloader Styles */
.fl-preloader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.fl-preloader-content {
    text-align: center;
}

.fl-preloader-spinner {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    position: relative;
}

.fl-spinner-inner {
    width: 100%;
    height: 100%;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: #343a40;
    border-radius: 50%;
    animation: fl-spin 1s linear infinite;
}

@keyframes fl-spin {
    to {
        transform: rotate(360deg);
    }
}

.fl-preloader-text {
    font-size: 2rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.fl-preloader-subtext {
    font-size: 1rem;
    color: #6c757d;
}

.fl-homepage-container {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Hero Section */
.fl-hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.fl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.fl-hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    padding-top: 80px;
}

.fl-hero-text-container {
    opacity: 0;
    transform: translateY(30px);
    animation: fl-fadeInUp 1s forwards 0.5s;
}

.fl-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Typed Text Styles */
.fl-typed-text-container {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d8d8d8;
    font-style: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.fl-typed-text {
    opacity: 0;
    animation: fl-fadeIn 0.3s forwards;
}

.fl-typed-cursor {
    animation: fl-blink 0.7s infinite;
    margin-left: 2px;
}

@keyframes fl-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.fl-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.fl-hero-buttons {
    display: flex;
    gap: 15px;
}

.fl-hero-btn-primary {
    background-color: #ffffff;
    color: #343a40;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.fl-hero-btn-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fl-hero-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.fl-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.fl-hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.fl-hero-scroll-indicator:hover {
    opacity: 0.8;
}

.fl-scroll-text {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.fl-scroll-arrow {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    40% {
        transform: rotate(45deg) translateY(-10px);
    }

    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Services Preview */
.fl-services-preview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.fl-section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fl-fadeInUp 1s forwards;
}

.fl-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 10px;
}

.fl-section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.fl-services-row {
    opacity: 0;
    transform: translateY(30px);
    animation: fl-fadeInUp 1s forwards 0.3s;
}

.fl-service-card-container {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.fl-service-card-container:nth-child(1) {
    animation: fl-fadeInUp 1s forwards 0.5s;
}

.fl-service-card-container:nth-child(2) {
    animation: fl-fadeInUp 1s forwards 0.7s;
}

.fl-service-card-container:nth-child(3) {
    animation: fl-fadeInUp 1s forwards 0.9s;
}

.fl-service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.fl-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fl-service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #343a40;
    transition: all 0.3s ease;
}

.fl-service-card:hover .fl-service-icon {
    background-color: #343a40;
    color: #ffffff;
}

.fl-service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #343a40;
}

.fl-service-desc {
    color: #6c757d;
    margin-bottom: 20px;
}

.fl-service-link {
    color: #343a40;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.fl-service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #343a40;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.fl-service-link:hover::after {
    transform: scaleX(1);
}

/* CTA Section */
.fl-cta-section {
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #343a40 0%, #212529 100%),
        url('/assets/flooring2.jpeg') center/cover no-repeat;
    background-blend-mode: overlay;
}

.fl-cta-content {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fl-fadeInUp 1s forwards;
    position: relative;
    z-index: 1;
}

.fl-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fl-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.fl-cta-btn {
    background-color: #f9c24a;
    color: #333;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.fl-cta-btn:hover {
    color: #333;
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes fl-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animations */
@keyframes fl-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fl-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fl-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    40% {
        transform: rotate(-45deg) translateY(-10px);
    }

    60% {
        transform: rotate(-45deg) translateY(-5px);
    }
}

@media (max-width: 992px) {
    .fl-hero-title {
        font-size: 2.5rem;
    }

    .fl-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .fl-hero-title {
        font-size: 2.5rem;
    }

    .fl-hero-subtitle {
        font-size: 1rem;
    }

    .fl-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .fl-section-title {
        font-size: 2rem;
    }

    .fl-cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .fl-hero-title {
        font-size: 2rem;
    }

    .fl-navbar-brand {
        font-size: 1.5rem;
    }

    .fl-section-title {
        font-size: 1.8rem;
    }

    .fl-service-card {
        padding: 20px;
    }
}

/* ..........badge........... */
.custom-badge {
    background-color: rgba(165, 42, 42, 0.1);
    color: brown;
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 50px;
}

/* ...........about............ */
.fl-about-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.fl-about-card:hover {
    transform: translateY(-10px);
}

.fl-about-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

.fl-about-testimonial {
    background-color: #f8f9fa;
    border-left: 4px solid #d4af37;
}

.fl-about-cta {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.fl-about-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-box {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.counter {
    font-size: 2rem;
}

/* .........vision mission......... */
.vision-mission-card {
    transition: all 0.4s ease;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.vision-icon {
    background: grey;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.mission-icon {
    background: grey;
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.3);
}

.point-list {
    list-style-type: none;
    padding-left: 0;
}

.point-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.mission-list li:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #0d0d0d;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, #ff6b6b, #6c63ff);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

/*......Footer Styles........ */
.fl-footer-main {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding-top: 4rem;
    position: relative;
}

.fl-footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231a1a1a" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%231a1a1a" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%231a1a1a"/></svg>');
    background-size: cover;
}

.fl-footer-logo {
    width: 180px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.fl-footer-heading {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.fl-footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #d4af37;
}

.fl-footer-link {
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.fl-footer-link:hover {
    color: #d4af37;
    padding-left: 5px;
}

.fl-footer-contact-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.fl-footer-contact-icon {
    color: #d4af37;
    margin-right: 1rem;
    margin-top: 3px;
    font-size: 1.1rem;
}

.fl-footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.fl-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fl-footer-social-link:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.fl-footer-newsletter {
    position: relative;
}

.fl-footer-newsletter input {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 30px;
    width: 100%;
}

.fl-footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 30px;
    padding: 7px 20px;
    font-weight: 600;
}

.fl-footer-bottom {
    /* background: #0d0d0d; */
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.fl-footer-payment img {
    height: 40px;
    margin-left: 10px;
}

.copyright {
    color: grey;
    font-size: 0.9rem;
}

.babin-breadcrumb-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1600585152220-90363fe7e115?ixlib=rb-1.2.1&auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.babin-breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.babin-breadcrumb-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    width: 100%;
    text-align: center;
    padding: 60px 40px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.babin-breadcrumb-nav {
    margin-bottom: 30px;
}

.babin-breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.babin-breadcrumb-item {
    background-color: rgba(240, 192, 64, 0.15);
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.babin-breadcrumb-item a {
    color: #f0c040;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
}

.babin-breadcrumb-item:hover {
    background-color: rgba(240, 192, 64, 0.25);
}

.babin-breadcrumb-item a:hover {
    color: #ffd966;
}

.babin-breadcrumb-item.active {
    background-color: #f0c040;
    color: #fff;
    cursor: default;
}

.babin-breadcrumb-item.active a {
    color: #fff;
}

.babin-breadcrumb-item:not(:last-child)::after {
    content: '';
    display: none;
}

.babin-breadcrumb-item:not(:last-child) {
    position: relative;
    margin-right: 20px;
}

.babin-breadcrumb-item:not(:last-child)::before {
    content: '›';
    position: absolute;
    right: -15px;
    color: #f0c040;
    font-size: 1.2rem;
}

.babin-breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    width: 100%;
}

@media (max-width: 768px) {
    .babin-breadcrumb-section {
        min-height: 400px;
    }

    .babin-breadcrumb-container {
        padding: 40px 20px;
        min-height: 200px;
    }

    .babin-breadcrumb-title {
        font-size: 2.5rem;
    }

    .babin-breadcrumb-list,
    .babin-breadcrumb-item a,
    .babin-breadcrumb-item.active {
        font-size: 0.9rem;
    }
}

.fl-flooring-showcase {
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    overflow: hidden;
}

.fl-flooring-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://example.com/flooring-texture.png') center/cover no-repeat;
    opacity: 0.03;
    z-index: 0;
}

.fl-video-container {
    position: relative;
    transition: transform 0.3s ease;
    border: 3px solid rgba(13, 110, 253, 0.1);
}

.fl-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fl-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0px;
    opacity: 0;
    transition: all 0.3s ease;
}

.text-gradient-primary {
    background: linear-gradient(90deg, #0d6efd 0%, #0dcaf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.fl-feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgb(233, 233, 233);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.fl-feature-item:hover {
    transform: translateX(5px);
}

.fl-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateX(0) !important;
}

[data-animation="fadeInRight"] {
    transform: translateX(20px);
}

.flooring-showcase-container {
    background-color: #f8f9fa;
}

.flooring-showcase-title {
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
}

.flooring-carousel {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.flooring-carousel-inner {
    overflow: hidden;
}

.flooring-project-image img {
    height: 400px;
    object-fit: cover;
}

.flooring-project-details {
    padding: 30px;
}

.flooring-project-title {
    color: #2c3e50;
    margin-bottom: 20px;
}

.flooring-project-description {
    color: #7f8c8d;
    margin-bottom: 25px;
}

.flooring-project-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.flooring-project-features li {
    margin-bottom: 10px;
    color: #34495e;
}

.flooring-project-features i {
    color: #27ae60;
    margin-right: 10px;
}

.flooring-project-btn {
    background-color: #27ae60;
    border: none;
    padding: 10px 25px;
    font-weight: 600;
}

.flooring-carousel-dots {
    bottom: -50px;
}

.flooring-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #bdc3c7;
    border: none;
    margin: 0 5px;
}

.flooring-dot.active {
    background-color: #27ae60;
}

.flooring-carousel-prev,
.flooring-carousel-next {
    width: 50px;
    height: 50px;
    background-color: #27ae60;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.flooring-carousel-icon {
    filter: none;
}

.flooring-testimonials-slider {
    background-color: #f8f9fa;
}

.flooring-testimonial-card {
    transition: transform 0.3s ease;
}

.flooring-testimonial-card:hover {
    transform: translateY(-5px);
}

.flooring-carousel-control {
    width: 5%;
}

.flooring-carousel-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 60%;
}

.flooring-carousel-indicators {
    position: static;
}

.flooring-indicator-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #333;
    background-color: transparent;
}

.flooring-indicator-btn.active {
    background-color: #333;
}

/* .........contact..... */
.flooring-contact-card {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border: none;
}

.flooring-contact-card:hover {
    transform: translateY(-5px);
}

.flooring-contact-icon {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.flooring-contact-btn {
    background-color: #d4af37;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.flooring-contact-btn:hover {
    background-color: #c19b2c;
    transform: translateY(-2px);
}

.flooring-form-control {
    border-radius: 5px;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
}

.flooring-form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

.flooring-map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.flooring-section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

/*.......... project..... ....*/
.fc-gallery-wrapper {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.fc-section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

.fc-section-title h2 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.fc-section-title .fc-title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff7b00, #ff9e43);
    margin: 0 auto;
}

.fc-filter-controls {
    margin-bottom: 40px;
    text-align: center;
}

.fc-filter-btn {
    display: inline-block;
    padding: 8px 20px;
    margin: 5px;
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.fc-filter-btn:hover,
.fc-filter-btn.active {
    background: linear-gradient(90deg, #ff7b00, #ff9e43);
    color: #fff;
    border-color: transparent;
}

.fc-project-item {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    background: #fff;
}

.fc-project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fc-project-img {
    position: relative;
    overflow: hidden;
    height: 250px;
    border-radius: 10px;
}

.fc-project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fc-project-item:hover .fc-project-img img {
    transform: scale(1.05);
}

.fc-project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.fc-project-item:hover .fc-project-overlay {
    opacity: 1;
}

.fc-view-btn {
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.fc-view-btn:hover {
    background: #fff;
    color: #ff7b00;
}

.fc-project-info {
    padding: 20px;
}

.fc-project-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.fc-project-category {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.fc-project-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.fc-feature-badge {
    background: #f5f5f5;
    color: #555;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.fc-project-detail-wrapper {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.fc-back-btn {
    display: inline-flex;
    align-items: center;
    color: #555;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.fc-back-btn:hover {
    color: #ff7b00;
    text-decoration: none;
}

.fc-back-btn i {
    margin-right: 8px;
}

.fc-project-hero {
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fc-project-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.fc-project-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.fc-project-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.fc-meta-item {
    margin-right: 30px;
    margin-bottom: 10px;
}

.fc-meta-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.fc-meta-value {
    font-weight: 500;
    color: #333;
}

.fc-project-description {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #555;
}

.fc-section-heading {
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 10px;
}

.fc-section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff7b00, #ff9e43);
}

.fc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.fc-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.fc-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fc-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fc-features-list {
    margin-bottom: 40px;
}

.fc-feature-item {
    display: flex;
    margin-bottom: 15px;
}

.fc-feature-icon {
    color: #ff7b00;
    margin-right: 15px;
    font-size: 20px;
    width: 30px;
}

.fc-feature-text {
    flex: 1;
}

.fc-feature-title {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.fc-feature-desc {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

.fc-testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.fc-testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.fc-testimonial-author {
    display: flex;
    align-items: center;
}

.fc-author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.fc-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fc-author-info h5 {
    margin-bottom: 5px;
    color: #333;
}

.fc-author-info p {
    color: #777;
    font-size: 14px;
    margin: 0;
}

.fc-cta-box {
    background: linear-gradient(90deg, #ff7b00, #ff9e43);
    padding: 40px;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    margin-top: 60px;
}

.fc-cta-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.fc-cta-desc {
    margin-bottom: 30px;
    opacity: 0.9;
}

.fc-cta-btn {
    background: #fff;
    color: #ff7b00;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.fc-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.video-section {
    background-color: #f8f9fa;
}

.video-section iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.video-section .ratio {
    max-height: 600px;
    overflow: hidden;
}


/* ...........blogs........ */

.flooring-blog-card {
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flooring-blog-card:hover {
    transform: translateY(-10px);
}

.flooring-blog-card-img {
    height: 220px;
    object-fit: cover;
}

.flooring-blog-tag {
    background-color: #8B5A2B;
    color: white;
}

.flooring-blog-sidebar {
    position: sticky;
    top: 20px;
}

.flooring-blog-sidebar-card {
    border-left: 4px solid #8B5A2B;
}

.flooring-blog-author-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.flooring-post-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    height: 500px;
}

.flooring-post-content img {
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flooring-post-tag {
    background-color: #8B5A2B;
    color: white;
}

.flooring-author-card {
    border-left: 4px solid #8B5A2B;
}

.flooring-related-card {
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.flooring-related-card:hover {
    transform: translateY(-10px);
}

.flooring-related-img {
    height: 200px;
    object-fit: cover;
}

.flooring-comment-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* ..........testimonials......... */
.flooring-testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.flooring-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.flooring-testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.flooring-testimonials-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

.flooring-testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    margin: 0 15px;
}

.flooring-testimonial-card:hover {
    transform: translateY(-5px);
}

.flooring-testimonial-rating {
    color: #f1c40f;
    margin-bottom: 15px;
}

.flooring-testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
    font-style: italic;
}

.flooring-testimonial-author {
    display: flex;
    align-items: center;
}

.flooring-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #e8f4fc;
}

.flooring-testimonial-author-info h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.flooring-testimonial-author-info p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.flooring-carousel-control-prev,
.flooring-carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: #3498db;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.flooring-carousel-control-prev {
    left: -20px;
}

.flooring-carousel-control-next {
    right: -20px;
}

.flooring-carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #bdc3c7;
}

.flooring-carousel-indicators .active {
    background-color: #3498db;
}

@media (max-width: 768px) {
    .flooring-testimonial-card {
        margin: 0 5px;
    }

    .flooring-carousel-control-prev {
        left: 0;
    }

    .flooring-carousel-control-next {
        right: 0;
    }
}

/* ..........hybrid section.......... */
.flooring-hybrid-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
    height: 500px;
}

.flooring-hybrid-benefit-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.flooring-hybrid-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.flooring-hybrid-benefit-icon {
    font-size: 2.5rem;
    color: #8B5A2B;
}

.flooring-hybrid-comparison {
    background-color: #f8f9fa;
    border-radius: 10px;
}

.flooring-hybrid-feature-img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.flooring-hybrid-feature-img:hover {
    transform: scale(1.02);
}

.flooring-hybrid-accordion .accordion-button {
    font-weight: 600;
}

.flooring-hybrid-cta {
    background: linear-gradient(135deg, #8B5A2B 0%, #634221 100%);
    border-radius: 10px;
}

.flooring-hybrid-badge {
    background-color: #8B5A2B;
    color: white;
}
