:root {
    --luxury-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --temple-gold: #D4AF37;
    --deep-gold: #B8860B;
    --saffron: #FF9933;
    --temple-red: #CC3333;
    --pagoda-green: #006B54;
    --lotus-pink: #E6A8D7;
    --bronze: #CD7F32;
    --dark-wood: #3D2B1F;
    --carved-ivory: #F5F5DC;
    --temple-stone: #8B7D6B;
    --mountain-sky: #4A90E2;
    --premium-silver: linear-gradient(135deg, #C0C0C0 0%, #A9A9A9 100%);

    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.5);
    --temple-shadow: 0 15px 35px rgba(204, 51, 51, 0.15);
    --deep-shadow: 0 10px 25px rgba(61, 43, 31, 0.25);
    --luxury-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);

    --carved-border: 2px solid var(--temple-gold);
    --double-border: 4px double var(--temple-red);
    --premium-border: 1px solid rgba(212, 175, 55, 0.3);

    --font-luxury: 'Playfair Display', 'Noto Serif Devanagari', serif;
    --font-modern: 'Montserrat', sans-serif;
    --font-decorative: 'Dancing Script', cursive;
    --font-body: 'Poppins', sans-serif;

    --transition-luxury: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: all 0.3s ease;
}

.navbar {
    background: var(--dark-wood) !important;
    background-image: linear-gradient(135deg, var(--dark-wood) 0%, #5a3d2b 100%) !important;
    padding: 0.8rem 0;
    border-bottom: var(--double-border);
    box-shadow: var(--deep-shadow);
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.navbar-brand {
    font-family: var(--font-luxury);
    font-weight: 700;
    font-size: 1.8rem;
    background: var(--luxury-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--gold-glow);
    padding: 5px 15px;
    border-radius: 8px;
    border-left: var(--carved-border);
    border-right: var(--carved-border);
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    transform: translateY(-2px);
}

.navbar-brand img {
    border-radius: 5px;
    padding: 3px;
    background: linear-gradient(45deg, var(--temple-gold), var(--saffron));
    box-shadow: var(--gold-glow);
    transition: var(--transition-smooth);
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border: var(--carved-border);
    padding: 8px 12px;
    background: var(--dark-wood);
    border-radius: 5px;
}

.navbar-toggler:focus {
    box-shadow: var(--gold-glow);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--carved-ivory) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--temple-gold) !important;
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--temple-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.nav-link.active {
    background: rgba(212, 175, 55, 0.15);
    border-left: 3px solid var(--temple-gold);
    border-right: 3px solid var(--temple-gold);
    color: var(--temple-gold) !important;
}

.dropdown-menu {
    background: var(--dark-wood) !important;
    border: var(--carved-border) !important;
    border-radius: 8px !important;
    box-shadow: var(--luxury-shadow);
    margin-top: 10px !important;
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--carved-ivory) !important;
    padding: 0.7rem 1.5rem !important;
    transition: var(--transition-smooth);
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: var(--temple-gold) !important;
    color: var(--dark-wood) !important;
    padding-left: 2rem !important;
}

.dropdown-divider {
    border-top: 1px solid var(--temple-gold) !important;
    opacity: 0.5;
    margin: 0.5rem 0;
}

.btn-primary {
    background: var(--temple-gold) !important;
    background-image: linear-gradient(135deg, var(--temple-gold) 0%, var(--deep-gold) 100%) !important;
    border: 2px solid var(--temple-gold) !important;
    color: var(--dark-wood) !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: var(--transition-bounce);
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    background-image: linear-gradient(135deg, var(--deep-gold) 0%, var(--temple-gold) 100%) !important;
}

.btn-outline-primary {
    background: transparent !important;
    border: 2px solid var(--temple-gold) !important;
    color: var(--temple-gold) !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: var(--transition-bounce);
}

.btn-outline-primary:hover {
    background: var(--temple-gold) !important;
    color: var(--dark-wood) !important;
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--dark-wood);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 10px;
        border: var(--carved-border);
        box-shadow: var(--deep-shadow);
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-item {
        margin-bottom: 0.5rem;
    }

    .dropdown-menu {
        background: rgba(61, 43, 31, 0.9) !important;
        margin-left: 1rem;
        border-left: 3px solid var(--temple-gold);
    }

    .d-flex {
        padding-top: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-outline-primary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

.sticky-top {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(61, 43, 31, 0.95) !important;
    backdrop-filter: blur(10px);
}


/* Language Toggle Styles */
.language-toggle {
    display: flex;
    background: var(--dark-wood);
    border: var(--carved-border);
    border-radius: 50px;
    padding: 3px;
    box-shadow: var(--gold-glow);
}

.btn-language {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--carved-ivory);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    min-width: 60px;
    background: transparent;
    border: none;
}

.btn-language:hover {
    color: var(--temple-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.btn-language.active {
    background: var(--temple-gold);
    background-image: linear-gradient(135deg, var(--temple-gold) 0%, var(--deep-gold) 100%);
    color: var(--dark-wood);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

.flag-icon {
    font-size: 1.2rem;
    margin-right: 5px;
    display: inline-block;
    transform: translateY(1px);
}

.lang-text {
    font-family: var(--font-body);
    font-weight: 700;
}

/* Responsive Language Toggle */
@media (max-width: 991.98px) {
    .language-toggle {
        margin-bottom: 1rem;
        justify-content: center;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .d-flex.align-items-center {
        flex-direction: column;
        width: 100%;
        padding-top: 1rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        margin-top: 1rem;
    }

    .language-toggle.me-3 {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }

    .btn-language {
        padding: 6px 12px;
        min-width: 50px;
    }
}

@media (max-width: 576px) {
    .language-toggle {
        max-width: 180px;
    }

    .btn-language {
        padding: 5px 10px;
        min-width: 45px;
        font-size: 0.85rem;
    }

    .flag-icon {
        font-size: 1rem;
    }
}

.btn-language:not(.active):hover .flag-icon {
    animation: flagWave 0.5s ease-in-out;
}

@keyframes flagWave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}



/* hero section css only */
/* Hero Section - Luxury Nepali Design */
.hero-section {
    background: linear-gradient(135deg, var(--dark-wood) 0%, #2a1c13 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(204, 51, 51, 0.1) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(61, 43, 31, 0.3) 10px, rgba(61, 43, 31, 0.3) 20px);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--luxury-gold);
    box-shadow: var(--gold-glow);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1.display-4 {
    font-family: var(--font-luxury);
    font-size: 3.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    background: var(--luxury-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 1rem;
}

.hero-section h1.display-4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--temple-red);
    box-shadow: 0 0 10px var(--temple-red);
}

.hero-section .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--carved-ivory);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-left: 4px solid var(--temple-gold);
    border-radius: 0 10px 10px 0;
    position: relative;
    backdrop-filter: blur(5px);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-section .lead::before {
    content: '✨';
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--temple-gold);
}

.d-flex.flex-wrap {
    gap: 1rem !important;
}

.hero-section .btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
    transition: var(--transition-bounce);
    min-width: 200px;
    text-align: center;
}

.hero-section .btn-primary {
    background: linear-gradient(135deg, var(--temple-gold), var(--deep-gold), var(--saffron)) !important;
    background-size: 200% 200% !important;
    animation: goldShimmer 3s ease-in-out infinite;
    border: none !important;
    color: var(--dark-wood) !important;
    box-shadow:
        0 10px 20px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2) inset,
        var(--gold-glow);
}

.hero-section .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 30px rgba(212, 175, 55, 0.4),
        0 0 40px rgba(212, 175, 55, 0.3) inset,
        0 0 50px rgba(212, 175, 55, 0.5);
    animation: goldShimmer 1.5s ease-in-out infinite;
}

.hero-section .btn-outline-light {
    background: transparent !important;
    border: 2px solid var(--temple-gold) !important;
    color: var(--temple-gold) !important;
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-section .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-smooth);
}

.hero-section .btn-outline-light:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: var(--temple-gold) !important;
    color: var(--temple-gold) !important;
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
}

.hero-section .btn-outline-light:hover::before {
    left: 100%;
}

/* Carousel Luxury Styling */
#heroCarousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 5px var(--dark-wood),
        0 0 0 10px var(--temple-gold),
        var(--luxury-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-luxury);
    border: var(--double-border);
}

#heroCarousel:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.6),
        0 0 0 5px var(--dark-wood),
        0 0 0 10px var(--temple-gold),
        0 0 50px rgba(212, 175, 55, 0.5);
}

.carousel-item {
    height: 500px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: left;
    backdrop-filter: blur(5px);
    border-top: 2px solid var(--temple-gold);
}

.carousel-caption h5 {
    font-family: var(--font-luxury);
    font-size: 1.8rem;
    background: var(--luxury-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.carousel-caption p {
    color: var(--carved-ivory);
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    border: 2px solid var(--dark-wood);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--temple-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--gold-glow);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(0.1);
    width: 25px;
    height: 25px;
}

/* Animations */
@keyframes goldShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Floating elements animation */
.hero-section .floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-section .floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    color: var(--temple-gold);
}

.hero-section .floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    color: var(--temple-red);
}

.hero-section .floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    color: var(--pagoda-green);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .hero-section h1.display-4 {
        font-size: 3rem;
    }

    .carousel-item {
        height: 450px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-section .row {
        flex-direction: column;
    }

    .hero-section h1.display-4 {
        font-size: 2.5rem;
        text-align: center;
        line-height: 1.3;
        min-height: 80px;
    }

    .hero-section h1.display-4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-section .lead {
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--temple-gold);
        border-radius: 10px;
        padding: 1.5rem;
    }

    .hero-section .lead::before {
        left: 50%;
        top: -25px;
        transform: translateX(-50%);
    }

    .d-flex.flex-wrap {
        justify-content: center;
    }

    #heroCarousel {
        margin-top: 3rem;
        transform: none;
    }

    #heroCarousel:hover {
        transform: scale(1.02);
    }

    .carousel-item {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1.display-4 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .hero-section .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 170px;
    }

    .carousel-item {
        height: 350px;
    }

    .carousel-caption h5 {
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section h1.display-4 {
        font-size: 1.8rem;
    }

    .hero-section .btn-lg {
        width: 100%;
        min-width: auto;
    }

    .carousel-item {
        height: 300px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        margin: 0 10px;
    }
}


/* feature category css  */
/* Featured Categories Section - Luxury Nepali Design with Big Images */
section.py-5 {
    background: linear-gradient(135deg, #f8f5f0 0%, #e8e0d5 100%);
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

section.py-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.05) 2px, rgba(212, 175, 55, 0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(61, 43, 31, 0.05) 2px, rgba(61, 43, 31, 0.05) 4px);
    z-index: 0;
}

section.py-5 .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-luxury);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--dark-wood) 0%, #2a1c13 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 3.5rem;
    line-height: 1.2;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--temple-red), var(--temple-gold));
    transform: translateY(-50%);
    transition: var(--transition-smooth);
}

.section-title::before {
    left: 0;
}

.section-title::after {
    right: 0;
}


section.py-5 .text-muted {
    color: var(--dark-wood) !important;
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 0;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Cards with Sharp Borders - Big Image Focus */
.card {
    background: var(--carved-ivory) !important;
    border: 4px solid var(--dark-wood) !important;
    border-radius: 0 !important;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.3) inset;
    transition: var(--transition-luxury);
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid var(--temple-gold);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 0 2px var(--temple-gold) inset,
        var(--gold-glow);
    border-color: var(--dark-wood) !important;
}

.card:hover::before {
    opacity: 1;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
}

.card-body {
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Image Section - BIG & CENTERED */
.card-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--dark-wood);
    transition: var(--transition-smooth);
    background: linear-gradient(135deg, var(--carved-ivory), #f0e6d6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card:hover .card-image-container {
    border-bottom-color: var(--temple-gold);
    height: 210px;
}

.card-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.card:hover .card-image-container::before {
    opacity: 1;
}

.service-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-smooth);
    z-index: 2;
}

.service-icon i {
    font-size: 4.5rem;
    color: var(--dark-wood);
    transition: var(--transition-smooth);
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.service-icon img {
    width: 80px !important;
    height: 80px;
    object-fit: contain;
    transition: var(--transition-smooth);
    filter: brightness(0.9) contrast(1.2);
    transform: scale(1);
}

.card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--temple-gold);
}

.card:hover .service-icon img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.2);
}

/* Content Section */
.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--carved-ivory);
}

.card-title {
    font-family: var(--font-luxury);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-wood) !important;
    margin-bottom: 0.8rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--temple-red);
    transition: var(--transition-smooth);
}

.card:hover .card-title::after {
    width: 80px;
    background: var(--temple-gold);
}

.card-text.text-muted {
    color: var(--temple-stone) !important;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons - Centered at Bottom */
.card-actions {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
    text-align: center;
}

.card .btn-outline-primary {
    border: 2px solid var(--dark-wood) !important;
    color: var(--dark-wood) !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    max-width: 200px;
}

.card .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(61, 43, 31, 0.1), transparent);
    transition: var(--transition-smooth);
    z-index: -1;
}

.card:hover .btn-outline-primary {
    border-color: var(--temple-gold) !important;
    color: var(--temple-gold) !important;
}

.card .btn-outline-primary:hover {
    background: var(--dark-wood) !important;
    color: var(--carved-ivory) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card .btn-outline-primary:hover::before {
    left: 100%;
}

/* View All Button */
.text-center .btn-primary {
    border: 3px solid var(--dark-wood) !important;
    border-radius: 0 !important;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--dark-wood), #2a1c13) !important;
    color: var(--carved-ivory) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
    margin-top: 2rem;
}

.text-center .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: var(--transition-smooth);
}

.text-center .btn-primary:hover {
    transform: translateY(-5px);
    border-color: var(--temple-gold) !important;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.2),
        var(--gold-glow);
    background: linear-gradient(135deg, #2a1c13, var(--dark-wood)) !important;
}

.text-center .btn-primary:hover::before {
    left: 100%;
}

/* Card Bottom Border Animation */
.card-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--temple-gold), var(--deep-gold), var(--temple-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
    z-index: 2;
}

.card:hover .card-body::after {
    transform: scaleX(1);
}

/* Hover Image Zoom Effect */
.card-image-container img {
    transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card:hover .card-image-container img {
    transform: scale(1.1) rotate(2deg);
}

/* Optional: Add decorative corner elements */
.card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-top: 2px solid var(--temple-gold);
    border-right: 2px solid var(--temple-gold);
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.card::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-bottom: 2px solid var(--temple-gold);
    border-left: 2px solid var(--temple-gold);
    opacity: 0.3;
    transition: var(--transition-smooth);
}

.card:hover::after,
.card:hover::before {
    opacity: 0.8;
    width: 40px;
    height: 40px;
}

/* Responsive Design for Big Images */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.5rem;
        padding: 0 3rem;
    }


    .card {
        min-height: 360px;
    }

    .card-image-container {
        height: 180px;
    }

    .card:hover .card-image-container {
        height: 190px;
    }

    .service-icon i {
        font-size: 4rem;
    }

    .service-icon img {
        width: 70px !important;
        height: 70px;
    }
}

@media (max-width: 991.98px) {
    section.py-5 {
        padding: 80px 0 !important;
    }

    .section-title {
        font-size: 2.2rem;
        padding: 0 2.5rem;
    }

    .section-title::before,
    .section-title::after {
        width: 35px;
    }


    .col-lg-3 {
        margin-bottom: 1.5rem;
    }

    .card {
        min-height: 340px;
    }

    .card-image-container {
        height: 170px;
    }

    .service-icon i {
        font-size: 3.5rem;
    }

    .service-icon img {
        width: 65px !important;
        height: 65px;
    }
}

@media (max-width: 767.98px) {
    section.py-5 {
        padding: 60px 0 !important;
    }

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

    .section-title::before,
    .section-title::after {
        display: none;
    }

    .card {
        max-width: 400px;
        margin: 0 auto;
        min-height: 350px;
    }

    .col-md-6 {
        margin-bottom: 1.5rem;
    }

    .card-image-container {
        height: 180px;
    }

    .service-icon i {
        font-size: 4rem;
    }

    .service-icon img {
        width: 75px !important;
        height: 75px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }


    .card {
        min-height: 320px;
        max-width: 100%;
    }

    .card-image-container {
        height: 160px;
    }

    .card:hover .card-image-container {
        height: 170px;
    }

    .service-icon i {
        font-size: 3.5rem;
    }

    .service-icon img {
        width: 65px !important;
        height: 65px;
    }

    .card-content {
        padding: 1rem;
    }

    .card-title {
        font-size: 1.3rem;
        min-height: 50px;
    }

    .card-text.text-muted {
        font-size: 0.9rem;
        min-height: 60px;
    }

    .card-actions {
        padding: 0 1rem 1rem;
    }

    .card .btn-outline-primary {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .text-center .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Floating Animation for Cards */
@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card:hover {
    animation: floatCard 3s ease-in-out infinite;
}



/* product css only */

/* Featured Products Section - Luxury Nepali Design */
.bg-light {
    background: linear-gradient(135deg, #f0e9df 0%, #e5d9cc 100%) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.05) 10px, rgba(212, 175, 55, 0.05) 20px);
    z-index: 0;
}

.bg-light .container {
    position: relative;
    z-index: 1;
}

/* Product Card Wrapper */
.product-card-wrapper {
    position: relative;
    padding: 10px;
    background: var(--carved-ivory);
    border: 2px solid var(--dark-wood);
    border-radius: 0;
    transition: var(--transition-luxury);
    height: 100%;
}

.product-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--temple-gold);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.product-card-wrapper:hover {
    transform: translateY(-10px);
    border-color: var(--temple-gold);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        var(--gold-glow);
}

.product-card-wrapper:hover::before {
    opacity: 1;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
}

/* Product Card */
.product-card {
    position: relative;
    overflow: hidden;
    background: var(--carved-ivory);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Product Image Container */
.product-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-bottom: 3px solid var(--dark-wood);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95) contrast(1.1);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--carved-ivory), #e8dfd1);
}

.product-placeholder i {
    font-size: 3.5rem;
    color: var(--dark-wood);
    opacity: 0.5;
}

.product-card-wrapper:hover .product-img {
    transform: scale(1.1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--temple-red);
    color: var(--carved-ivory);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.badge-text {
    display: block;
    transform: rotate(0deg);
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 43, 31, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
}

.product-card-wrapper:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: var(--temple-gold);
    background-image: linear-gradient(135deg, var(--temple-gold), var(--saffron));
    color: var(--dark-wood);
    padding: 12px 24px;
    border: 2px solid var(--carved-ivory);
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-quick-view:hover {
    transform: scale(1.1);
    box-shadow: var(--gold-glow);
    color: var(--dark-wood);
}

/* Product Content */
.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.product-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--temple-red);
    transition: var(--transition-smooth);
}

.product-card-wrapper:hover .product-header::after {
    width: 100%;
    background: var(--temple-gold);
}

.product-title {
    font-family: var(--font-luxury);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-wood) !important;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    min-height: 50px;
}

.product-rating {
    color: var(--temple-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Product Description */
.product-description {
    color: var(--temple-stone) !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    min-height: 65px;
}

/* Product Footer */
.product-footer {
    margin-top: auto;
    border-top: 1px solid rgba(61, 43, 31, 0.1);
    padding-top: 1.5rem;
}

/* Price Tag */
.product-price {
    margin-bottom: 1rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.currency {
    font-family: var(--font-modern);
    font-weight: 700;
    color: var(--dark-wood);
    font-size: 1rem;
    margin-right: 3px;
}

.amount {
    font-family: var(--font-luxury);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--temple-gold);
    line-height: 1;
}

.unit {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--temple-stone);
    margin-left: 3px;
}

.price-note small {
    color: var(--temple-stone);
    font-size: 0.8rem;
    font-style: italic;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
}

.btn-product-details,
.btn-product-quote {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--dark-wood);
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 600;
    font-size: 0.85rem;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-product-details {
    background: var(--dark-wood);
    color: var(--carved-ivory);
}

.btn-product-quote {
    background: transparent;
    color: var(--dark-wood);
}

.btn-product-details:hover {
    background: var(--temple-gold);
    border-color: var(--temple-gold);
    color: var(--dark-wood);
    transform: translateY(-3px);
}

.btn-product-quote:hover {
    background: var(--dark-wood);
    color: var(--carved-ivory);
    transform: translateY(-3px);
}

/* Corner Accents */
.corner-accent {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.corner-accent.top-left {
    top: 10px;
    left: 10px;
    border-top: 2px solid var(--temple-gold);
    border-left: 2px solid var(--temple-gold);
}

.corner-accent.top-right {
    top: 10px;
    right: 10px;
    border-top: 2px solid var(--temple-gold);
    border-right: 2px solid var(--temple-gold);
}

.corner-accent.bottom-left {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid var(--temple-gold);
    border-left: 2px solid var(--temple-gold);
}

.corner-accent.bottom-right {
    bottom: 10px;
    right: 10px;
    border-bottom: 2px solid var(--temple-gold);
    border-right: 2px solid var(--temple-gold);
}

.product-card-wrapper:hover .corner-accent {
    opacity: 1;
    width: 25px;
    height: 25px;
}

/* View All Button */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    background: var(--dark-wood);
    border: 3px solid var(--temple-gold);
    color: var(--carved-ivory);
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: var(--transition-smooth);
}

.btn-view-all span {
    position: relative;
    z-index: 1;
}

.btn-view-all i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-view-all:hover {
    background: var(--temple-gold);
    color: var(--dark-wood);
    transform: translateY(-5px);
    box-shadow: var(--gold-glow);
}

.btn-view-all:hover::before {
    left: 100%;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .product-image-container {
        height: 200px;
    }

    .product-title {
        font-size: 1.2rem;
        min-height: 45px;
    }

    .amount {
        font-size: 1.6rem;
    }
}

@media (max-width: 991.98px) {
    .bg-light {
        padding: 80px 0 !important;
    }

    .product-image-container {
        height: 180px;
    }

    .product-content {
        padding: 1.25rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-product-details,
    .btn-product-quote {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .bg-light {
        padding: 60px 0 !important;
    }

    .product-card-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-image-container {
        height: 200px;
    }

    .product-title {
        min-height: auto;
    }

    .product-description {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .bg-light {
        padding: 50px 0 !important;
    }

    .product-card-wrapper {
        max-width: 100%;
    }

    .product-image-container {
        height: 180px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .amount {
        font-size: 1.4rem;
    }

    .btn-view-all {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Animation for Cards */
@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.product-card-wrapper {
    animation: cardReveal 0.6s ease-out forwards;
    opacity: 0;
}

.product-card-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card-wrapper:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card-wrapper:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card-wrapper:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card-wrapper:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card-wrapper:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card-wrapper:nth-child(8) {
    animation-delay: 0.8s;
}



/* css for the services part  */
/* Services Section - Unique Luxury Design */
section.py-5 {
    background: linear-gradient(135deg, #f5f1eb 0%, #e8e0d5 100%);
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

section.py-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(204, 51, 51, 0.06) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23D4AF37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.6;
}

section.py-5 .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--temple-gold);
    color: var(--dark-wood);
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    position: relative;
    border: 2px solid var(--dark-wood);
}

.section-badge::before,
.section-badge::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--temple-red);
    top: 50%;
    transform: translateY(-50%);
}

.section-badge::before {
    left: -8px;
}

.section-badge::after {
    right: -8px;
}



.section-subtitle {
    color: var(--temple-stone);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Item */
.service-item {
    perspective: 1000px;
}

.service-card {
    background: var(--carved-ivory);
    border: 3px solid var(--dark-wood);
    padding: 2rem;
    position: relative;
    height: 100%;
    min-height: 480px;
    transition: var(--transition-luxury);
    transform-style: preserve-3d;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--temple-gold);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px var(--temple-gold),
        var(--gold-glow);
}

/* Service Number */
.service-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-luxury);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(61, 43, 31, 0.1);
    z-index: 1;
    transition: var(--transition-smooth);
}

.service-card:hover .service-number {
    color: rgba(212, 175, 55, 0.2);
    transform: scale(1.2);
}

/* Service Header */
.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(61, 43, 31, 0.1);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--carved-ivory), #f0e6d6);
    border: 2px solid var(--dark-wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.service-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--temple-gold);
    transition: var(--transition-smooth);
}

.service-icon-wrapper img {
    width: 35px !important;
    height: 35px;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
    background: var(--temple-gold);
    border-color: var(--temple-gold);
    transform: rotate(15deg) scale(1.1);
}

.service-card:hover .service-icon-wrapper i,
.service-card:hover .service-icon-wrapper img {
    filter: brightness(0) invert(1);
}

.service-title {
    font-family: var(--font-luxury);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-wood) !important;
    margin: 0;
    line-height: 1.3;
    flex-grow: 1;
}

/* Service Description */
.service-description {
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.service-description p {
    color: var(--temple-stone);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Features */
.service-features {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-wood);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-features li i {
    color: var(--temple-gold);
    font-size: 0.8rem;
}

/* Service Footer */
.service-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    border-top: 2px solid rgba(61, 43, 31, 0.1);
    padding-top: 1.5rem;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-info {
    text-align: center;
}

.price-label {
    display: block;
    color: var(--temple-stone);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
}

.currency {
    font-family: var(--font-modern);
    font-weight: 600;
    color: var(--dark-wood);
    font-size: 1.1rem;
}

.amount {
    font-family: var(--font-luxury);
    font-size: 2rem;
    font-weight: 700;
    color: var(--temple-gold);
    line-height: 1;
}

/* Service Actions */
.service-actions {
    display: flex;
    gap: 10px;
}

.btn-service-primary,
.btn-service-secondary {
    flex: 1;
    padding: 12px 20px;
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.btn-service-primary {
    background: var(--dark-wood);
    color: var(--carved-ivory);
    border-color: var(--dark-wood);
}

.btn-service-secondary {
    background: transparent;
    color: var(--dark-wood);
    border-color: var(--dark-wood);
}

.btn-service-primary:hover {
    background: var(--temple-gold);
    border-color: var(--temple-gold);
    color: var(--dark-wood);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-service-secondary:hover {
    background: var(--dark-wood);
    color: var(--carved-ivory);
    transform: translateY(-3px);
    border-color: var(--dark-wood);
}

/* Service Accents */
.service-accent {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--temple-gold);
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-accent.top {
    top: 0;
    transform-origin: left;
}

.service-accent.bottom {
    bottom: 0;
    transform-origin: right;
}

.service-card:hover .service-accent {
    transform: scaleX(1);
}

/* Service Corners */
.service-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--temple-red);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-corner.top-left {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.service-corner.top-right {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.service-corner.bottom-left {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.service-corner.bottom-right {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.service-card:hover .service-corner {
    opacity: 1;
    width: 25px;
    height: 25px;
}

/* View All Services Button */
.mt-6 {
    margin-top: 4rem !important;
}

.btn-view-services {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--dark-wood), #2a1c13);
    color: var(--carved-ivory);
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 3px solid var(--temple-gold);
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.btn-view-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: var(--transition-smooth);
}

.btn-view-services span,
.btn-view-services i {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-view-services i:first-child {
    opacity: 0.8;
}

.btn-view-services i:last-child {
    font-size: 1rem;
}

.btn-view-services:hover {
    background: linear-gradient(135deg, var(--temple-gold), var(--saffron));
    color: var(--dark-wood);
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        var(--gold-glow);
}

.btn-view-services:hover::before {
    left: 100%;
}

.btn-view-services:hover i:first-child {
    transform: rotate(15deg);
}

.btn-view-services:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .service-card {
        min-height: 460px;
    }
}

@media (max-width: 991.98px) {
    section.py-5 {
        padding: 80px 0 !important;
    }

    .section-title {
        font-size: 2.5rem;
        padding: 0 2.5rem;
    }


    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
        min-height: 440px;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }

    .service-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .service-icon-wrapper img {
        width: 30px !important;
        height: 30px;
    }
}

@media (max-width: 767.98px) {
    section.py-5 {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }


    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 3rem;
    }

    .service-card {
        min-height: 420px;
    }

    .service-actions {
        flex-direction: column;
    }

    .btn-view-services {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    section.py-5 {
        padding: 50px 0 !important;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }


    .section-badge {
        padding: 6px 20px;
        font-size: 0.8rem;
    }

    .service-card {
        padding: 1.25rem;
        min-height: 400px;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 1.6rem;
    }

    .btn-view-services {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* Animation for Service Cards */
@keyframes serviceReveal {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(-10deg);
    }

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

.service-item {
    animation: serviceReveal 0.8s ease-out forwards;
    opacity: 0;
}

.service-item:nth-child(1) {
    animation-delay: 0.1s;
}

.service-item:nth-child(2) {
    animation-delay: 0.2s;
}

.service-item:nth-child(3) {
    animation-delay: 0.3s;
}

.service-item:nth-child(4) {
    animation-delay: 0.4s;
}

.service-item:nth-child(5) {
    animation-delay: 0.5s;
}

.service-item:nth-child(6) {
    animation-delay: 0.6s;
}


/* csss for the product section */
/* Projects Section - Horizontal Slider Design */
.bg-light {
    background: linear-gradient(135deg, #f0e9df 0%, #e5d9cc 100%) !important;
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 20px,
            rgba(212, 175, 55, 0.03) 20px,
            rgba(212, 175, 55, 0.03) 40px),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 20px,
            rgba(61, 43, 31, 0.03) 20px,
            rgba(61, 43, 31, 0.03) 40px);
    z-index: 0;
}

.bg-light .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    margin-bottom: 4rem;
}

.project-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: var(--temple-gold);
    background-image: linear-gradient(135deg, var(--temple-gold), var(--saffron));
    color: var(--dark-wood);
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border-radius: 30px;
    border: 2px solid var(--dark-wood);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.project-section-badge i {
    font-size: 1.1rem;
}



.section-subtitle {
    color: var(--temple-stone);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-weight: 400;
}

/* Horizontal Slider Container */
.projects-slider-container {
    position: relative;
    padding: 0 50px;
    margin-bottom: 4rem;
}

.projects-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 20px 10px 40px;
    scroll-snap-type: x mandatory;
    margin-bottom: 2rem;
}

.projects-slider::-webkit-scrollbar {
    display: none;
}

.project-slide {
    flex: 0 0 auto;
    width: 400px;
    scroll-snap-align: start;
}

/* Project Card */
.project-card {
    position: relative;
    background: var(--carved-ivory);
    border: 3px solid var(--dark-wood);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    transition: var(--transition-luxury);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-15px);
    border-color: var(--temple-gold);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 2px var(--temple-gold),
        var(--gold-glow);
}

/* Project Image Container - BIG IMAGE FOCUS */
.project-image-container {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-bottom: 3px solid var(--dark-wood);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(0.95) contrast(1.1);
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--carved-ivory), #e8dfd1);
}

.project-image-placeholder i {
    font-size: 4rem;
    color: var(--dark-wood);
    opacity: 0.3;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

/* Project Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(61, 43, 31, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 2rem;
    z-index: 2;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.project-card:hover .overlay-content {
    transform: translateY(0);
}

.project-title-overlay {
    font-family: var(--font-luxury);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--carved-ivory);
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.project-description-overlay {
    color: rgba(245, 245, 220, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.project-meta-overlay {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--temple-gold);
    font-size: 0.9rem;
}

.meta-item i {
    font-size: 0.9rem;
}

.btn-project-overlay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--temple-gold);
    color: var(--dark-wood);
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--carved-ivory);
    transition: var(--transition-smooth);
}

.btn-project-overlay:hover {
    background: var(--carved-ivory);
    color: var(--dark-wood);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Project Badge */
.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--temple-red);
    color: var(--carved-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-luxury);
    font-weight: 700;
    font-size: 1.3rem;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.project-card:hover .project-badge {
    transform: rotate(360deg) scale(1.1);
    background: var(--temple-gold);
    color: var(--dark-wood);
}

/* Project Info Card */
.project-info-card {
    padding: 1.5rem;
    background: var(--carved-ivory);
}

.project-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(61, 43, 31, 0.1);
}

.project-info-title {
    font-family: var(--font-luxury);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-wood) !important;
    margin: 0;
    flex: 1;
}

.category-tag {
    padding: 4px 12px;
    background: var(--dark-wood);
    color: var(--carved-ivory);
    font-family: var(--font-modern);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    margin-left: 10px;
}

.project-info-description {
    color: var(--temple-stone);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 70px;
}

.project-info-footer {
    border-top: 2px solid rgba(61, 43, 31, 0.1);
    padding-top: 1.5rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-wood);
    font-size: 0.9rem;
}

.meta-info i {
    color: var(--temple-gold);
}

.project-actions {
    display: flex;
    gap: 10px;
}

.btn-project-view,
.btn-project-gallery {
    padding: 8px 16px;
    border: 2px solid var(--dark-wood);
    background: transparent;
    color: var(--dark-wood);
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-project-view {
    background: var(--dark-wood);
    color: var(--carved-ivory);
}

.btn-project-gallery {
    border: 2px solid var(--dark-wood);
}

.btn-project-view:hover {
    background: var(--temple-gold);
    border-color: var(--temple-gold);
    color: var(--dark-wood);
    transform: translateY(-3px);
}

.btn-project-gallery:hover {
    background: var(--dark-wood);
    color: var(--carved-ivory);
    transform: translateY(-3px);
}

/* Project Accents */
.project-accent-left,
.project-accent-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--temple-gold);
    transform: scaleY(0);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-accent-left {
    left: 0;
    transform-origin: top;
}

.project-accent-right {
    right: 0;
    transform-origin: bottom;
}

.project-card:hover .project-accent-left,
.project-card:hover .project-accent-right {
    transform: scaleY(1);
}

/* Slider Navigation */
.slider-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.slider-nav {
    width: 50px;
    height: 50px;
    border: 2px solid var(--dark-wood);
    background: var(--carved-ivory);
    color: var(--dark-wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: var(--temple-gold);
    border-color: var(--temple-gold);
    color: var(--dark-wood);
    transform: scale(1.1);
    box-shadow: var(--gold-glow);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: var(--dark-wood);
    border-radius: 50%;
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dots .dot.active {
    background: var(--temple-gold);
    opacity: 1;
    transform: scale(1.2);
}

/* View All Projects Button */
.btn-view-all-projects {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--dark-wood), #2a1c13);
    color: var(--carved-ivory);
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 3px solid var(--temple-gold);
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.btn-view-all-projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: var(--transition-smooth);
}

.btn-view-all-projects span,
.btn-view-all-projects i {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-view-all-projects i:first-child {
    opacity: 0.8;
}

.btn-view-all-projects i:last-child {
    font-size: 1rem;
}

.btn-view-all-projects:hover {
    background: linear-gradient(135deg, var(--temple-gold), var(--saffron));
    color: var(--dark-wood);
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        var(--gold-glow);
}

.btn-view-all-projects:hover::before {
    left: 100%;
}

.btn-view-all-projects:hover i:first-child {
    transform: rotate(15deg);
}

.btn-view-all-projects:hover i:last-child {
    transform: translateX(5px);
}

/* Responsive Design for Slider */
@media (max-width: 1199.98px) {
    .projects-slider-container {
        padding: 0 40px;
    }

    .project-slide {
        width: 380px;
    }

    .project-image-container {
        height: 300px;
    }
}

@media (max-width: 991.98px) {
    .bg-light {
        padding: 80px 0 !important;
    }

    .section-title {
        font-size: 2.5rem;
        padding: 0 2.5rem;
    }

    .section-title::before,
    .section-title::after {
        width: 35px;
    }


    .projects-slider-container {
        padding: 0 30px;
    }

    .project-slide {
        width: 350px;
    }

    .project-image-container {
        height: 280px;
    }

    .project-info-card {
        padding: 1.25rem;
    }
}

@media (max-width: 767.98px) {
    .bg-light {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }


    .projects-slider-container {
        padding: 0 20px;
    }

    .project-slide {
        width: 320px;
    }

    .project-image-container {
        height: 250px;
    }

    .project-meta {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .project-actions {
        width: 100%;
        justify-content: space-between;
    }

    .btn-view-all-projects {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .bg-light {
        padding: 50px 0 !important;
    }

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

    .project-section-badge {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .projects-slider-container {
        padding: 0 15px;
    }

    .project-slide {
        width: 280px;
    }

    .project-image-container {
        height: 220px;
    }

    .project-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .project-info-title {
        font-size: 1.2rem;
    }

    .btn-view-all-projects {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

/* css for the testimonials */
/* Testimonials Section - Luxury Design */
section.py-5 {
    background: linear-gradient(135deg, #f8f5f0 0%, #f0e9df 100%);
    padding: 100px 0 !important;
    position: relative;
    overflow: hidden;
}

section.py-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(204, 51, 51, 0.05) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    opacity: 0.6;
}

section.py-5 .container {
    position: relative;
    z-index: 1;
}

/* Testimonial Header */
.testimonial-header {
    margin-bottom: 4rem;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--temple-red);
    color: var(--carved-ivory);
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border-radius: 20px;
    border: 2px solid var(--dark-wood);
    box-shadow: 0 5px 15px rgba(204, 51, 51, 0.2);
}

.testimonial-badge i {
    font-size: 0.9rem;
    color: var(--temple-gold);
}



.section-subtitle {
    color: var(--temple-stone);
    font-size: 1.2rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-container {
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-item {
    perspective: 1000px;
}

.testimonial-card {
    background: var(--carved-ivory);
    border: 3px solid var(--dark-wood);
    padding: 2.5rem 2rem;
    position: relative;
    height: 100%;
    min-height: 320px;
    transition: var(--transition-luxury);
    transform-style: preserve-3d;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: var(--temple-gold);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px var(--temple-gold),
        var(--gold-glow);
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(212, 175, 55, 0.15);
    font-size: 4rem;
    z-index: 1;
    transition: var(--transition-smooth);
}

.testimonial-card:hover .quote-icon {
    color: rgba(212, 175, 55, 0.3);
    transform: scale(1.2);
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(61, 43, 31, 0.1);
}

.testimonial-text {
    color: var(--dark-wood);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--temple-gold), var(--saffron));
    border-radius: 2px;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--dark-wood);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.testimonial-card:hover .client-avatar {
    border-color: var(--temple-gold);
    transform: scale(1.1);
}

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

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--temple-gold), var(--saffron));
    color: var(--dark-wood);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-luxury);
    font-size: 1.8rem;
    font-weight: 700;
}

.client-details {
    flex: 1;
}

.client-name {
    font-family: var(--font-luxury);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-wood);
    margin-bottom: 0.3rem;
}

.client-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.client-position {
    color: var(--temple-gold);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 3px 10px;
    border-radius: 12px;
}

.client-company {
    color: var(--temple-stone);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.client-company i {
    font-size: 0.8rem;
    color: var(--temple-red);
}

/* Testimonial Rating */
.testimonial-rating {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(61, 43, 31, 0.1);
    padding-top: 1.5rem;
}

.stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.stars i {
    font-size: 1.1rem;
    color: var(--temple-stone);
    transition: var(--transition-smooth);
}

.stars i.filled {
    color: var(--temple-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.rating-number {
    font-family: var(--font-modern);
    font-weight: 700;
    color: var(--dark-wood);
    margin-left: 8px;
    font-size: 0.9rem;
}

.testimonial-date {
    color: var(--temple-stone);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-date i {
    color: var(--temple-red);
    font-size: 0.8rem;
}

/* Testimonial Accents */
.testimonial-border-top,
.testimonial-border-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--temple-gold), var(--temple-red), var(--temple-gold));
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-border-top {
    top: 0;
    transform-origin: left;
}

.testimonial-border-bottom {
    bottom: 0;
    transform-origin: right;
}

.testimonial-card:hover .testimonial-border-top,
.testimonial-card:hover .testimonial-border-bottom {
    transform: scaleX(1);
}

.testimonial-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--temple-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.testimonial-corner.top-left {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.testimonial-corner.top-right {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.testimonial-corner.bottom-left {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.testimonial-corner.bottom-right {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.testimonial-card:hover .testimonial-corner {
    opacity: 1;
    width: 25px;
    height: 25px;
}

/* Testimonial Navigation */
.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-nav {
    width: 45px;
    height: 45px;
    border: 2px solid var(--dark-wood);
    background: var(--carved-ivory);
    color: var(--dark-wood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.testimonial-nav:hover {
    background: var(--temple-gold);
    border-color: var(--temple-gold);
    color: var(--dark-wood);
    transform: scale(1.1);
    box-shadow: var(--gold-glow);
}

.testimonial-indicators {
    display: flex;
    gap: 10px;
}

.testimonial-indicators .indicator {
    width: 10px;
    height: 10px;
    background: var(--dark-wood);
    border-radius: 50%;
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-indicators .indicator.active {
    background: var(--temple-gold);
    opacity: 1;
    transform: scale(1.3);
}

/* Client Logos */
.client-logos {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(61, 43, 31, 0.1);
}

.logos-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-family: var(--font-luxury);
    font-size: 1.3rem;
    color: var(--dark-wood);
    font-weight: 600;
}

.logos-title i {
    color: var(--temple-red);
    font-size: 1.2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    height: 80px;
    background: var(--carved-ivory);
    border: 2px solid var(--dark-wood);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
    transform: translateY(-5px);
    border-color: var(--temple-gold);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.1),
        var(--gold-glow);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .testimonial-card {
        min-height: 300px;
    }
}

@media (max-width: 991.98px) {
    section.py-5 {
        padding: 80px 0 !important;
    }

    .section-title {
        font-size: 2.5rem;
        padding: 0 2.5rem;
    }


    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767.98px) {
    section.py-5 {
        padding: 60px 0 !important;
    }

    .section-title {
        font-size: 2.2rem;
        padding: 0 1rem;
    }


    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 3rem;
    }

    .testimonial-navigation {
        gap: 1.5rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    section.py-5 {
        padding: 50px 0 !important;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }


    .testimonial-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.25rem;
        min-height: 280px;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
    }

    .avatar-placeholder {
        font-size: 1.5rem;
    }

    .client-name {
        font-size: 1.1rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .logo-item {
        height: 60px;
        font-size: 2rem;
    }
}

@keyframes testimonialFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.testimonial-card:hover {
    animation: testimonialFloat 3s ease-in-out infinite;
}


.testimonial-item {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--temple-gold) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2) !important;
}

.testimonial-item.active .testimonial-card {
    border-color: var(--temple-gold) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 2px var(--temple-gold),
        var(--gold-glow) !important;
    transform: translateY(-5px);
}

@keyframes pulseActive {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.testimonial-item.active .testimonial-card {
    animation: pulseActive 2s infinite;
}

/* cta function */
/* CTA Section - Luxury Design */
.cta-section {
    background: linear-gradient(135deg, var(--dark-wood) 0%, #2a1c13 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(204, 51, 51, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.5 37.5C117 51 132 86.5 138 115c6 28.5 12 55.5 40 71.5s68 15 85-13.5c17-28.5 6.5-71-15.5-90.5s-52.5-23-80-22.5C79 60.5 46 24 81.5 37.5zm-46 69c12-10.5 36.5 9.5 38 28 1.5 18.5-13 38.5-30 44s-36.5 4.5-47-15C-3 150.5 23.5 117 35.5 106.5z' fill='%23D4AF37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* CTA Content */
.cta-content {
    padding: 2rem;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--temple-red), #e63946);
    color: var(--carved-ivory);
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 2px solid var(--temple-gold);
    box-shadow: 0 5px 15px rgba(204, 51, 51, 0.3);
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.cta-title {
    font-family: var(--font-luxury);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--carved-ivory);
}

.title-line {
    display: block;
}

.title-highlight {
    background: var(--luxury-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--temple-gold), var(--saffron));
    border-radius: 2px;
}

.cta-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(245, 245, 220, 0.9);
    margin-bottom: 3rem;
    max-width: 500px;
}

/* CTA Features */
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--carved-ivory);
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--temple-gold);
    font-size: 1.2rem;
}

/* CTA Actions */
.cta-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.2rem 2.5rem;
    font-family: var(--font-modern);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--temple-gold), var(--saffron));
    color: var(--dark-wood);
    border-color: var(--temple-gold);
    min-width: 220px;
}

.btn-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--temple-gold);
    border-radius: 50px;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

.btn-cta-secondary {
    background: transparent;
    color: var(--carved-ivory);
    border: 3px solid var(--temple-gold);
    min-width: 200px;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 15px 35px rgba(212, 175, 55, 0.4),
        0 0 50px rgba(212, 175, 55, 0.3);
    color: var(--dark-wood);
}

.btn-cta-secondary:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--temple-gold);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(212, 175, 55, 0.2);
}

/* CTA Trust Badges */
.cta-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(245, 245, 220, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: var(--carved-ivory);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.trust-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--temple-gold);
    transform: translateY(-3px);
}

.trust-badge i {
    color: var(--temple-gold);
    font-size: 0.9rem;
}

/* CTA Decoration */
.cta-decoration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-ornament {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    animation: rotateOrnament 20s linear infinite;
}

.ornament-piece {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--temple-gold);
    border-radius: 50%;
}

.ornament-piece:nth-child(1) {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ornament-piece:nth-child(2) {
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
}

.ornament-piece:nth-child(3) {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.ornament-piece:nth-child(4) {
    top: 50%;
    left: -10px;
    transform: translateY(-50%);
}

@keyframes rotateOrnament {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-image {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(204, 51, 51, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--temple-gold);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.image-placeholder {
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--dark-wood), #2a1c13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--temple-gold);
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--temple-gold);
    animation: bulbGlow 3s infinite;
}

@keyframes bulbGlow {

    0%,
    100% {
        color: var(--temple-gold);
        filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    }

    50% {
        color: var(--saffron);
        filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
    }
}

.cta-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(204, 51, 51, 0.2) 0%, transparent 50%);
    filter: blur(20px);
    z-index: 0;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    z-index: 0;
    animation: floatElement 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
    .cta-container {
        gap: 3rem;
    }

    .cta-title {
        font-size: 2.8rem;
    }

    .cta-image {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 991.98px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .cta-content {
        padding: 0;
    }

    .cta-features {
        align-items: center;
    }

    .cta-actions {
        justify-content: center;
    }

    .cta-trust {
        justify-content: center;
    }

    .cta-image {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    .cta-ornament {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2.3rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .cta-trust {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .cta-section {
        padding: 50px 0;
    }

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

    .cta-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .cta-image {
        width: 200px;
        height: 200px;
    }

    .image-placeholder i {
        font-size: 4rem;
    }

    .cta-ornament {
        width: 220px;
        height: 220px;
    }
}

/* footer css */
/* Footer - Luxury Design with Different Colors */
.luxury-footer {
    background: linear-gradient(135deg, #1a1208 0%, #0c0803 100%);
    color: #e8d8b6;
    position: relative;
    margin-top: 100px;
}

/* Footer Wave */
.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    color: #1a1208;
    z-index: 1;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Footer Main */
.footer-main {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
    background:
        radial-gradient(circle at 20% 30%, rgba(139, 125, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(205, 127, 50, 0.1) 0%, transparent 50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Company Info */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.logo-text {
    font-family: var(--font-luxury);
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #CD7F32, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8a98f;
    margin-bottom: 1rem;
}

.footer-certificates {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.certificate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    background: rgba(205, 127, 50, 0.1);
    border: 1px solid rgba(205, 127, 50, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #e8d8b6;
}

.certificate i {
    color: #CD7F32;
    font-size: 0.9rem;
}

/* Social Media */
.footer-social {
    margin-top: 1rem;
}

.social-title {
    font-size: 1.1rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: var(--font-modern);
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon i {
    font-size: 1.2rem;
    color: #e8d8b6;
    transition: transform 0.3s ease;
}

.icon-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2a1f14;
    color: #D4AF37;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid #CD7F32;
    margin-bottom: 10px;
}

.social-icon:hover .icon-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon.facebook {
    background: rgba(59, 89, 152, 0.2);
    border-color: rgba(59, 89, 152, 0.4);
}

.social-icon.instagram {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.4);
}

.social-icon.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
}

.social-icon.youtube {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
}

.social-icon.facebook:hover {
    background: rgba(59, 89, 152, 0.4);
}

.social-icon.instagram:hover {
    background: rgba(225, 48, 108, 0.4);
}

.social-icon.whatsapp:hover {
    background: rgba(37, 211, 102, 0.4);
}

.social-icon.youtube:hover {
    background: rgba(255, 0, 0, 0.4);
}

/* Footer Titles */
.footer-title {
    font-family: var(--font-luxury);
    font-size: 1.3rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(205, 127, 50, 0.3);
}

.footer-title i {
    color: #CD7F32;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #b8a98f;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.footer-link i {
    color: #CD7F32;
    font-size: 0.9rem;
    width: 20px;
}

.footer-link:hover {
    color: #D4AF37;
    background: rgba(205, 127, 50, 0.1);
    border-left-color: #D4AF37;
    transform: translateX(5px);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info i {
    color: #CD7F32;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-detail strong {
    color: #D4AF37;
    font-size: 0.9rem;
    font-family: var(--font-modern);
    font-weight: 600;
}

.contact-detail span {
    color: #b8a98f;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Footer CTA */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-footer-cta,
.btn-footer-call {
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--font-modern);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-footer-cta {
    background: linear-gradient(135deg, #CD7F32, #D4AF37);
    color: #1a1208;
}

.btn-footer-call {
    background: transparent;
    color: #D4AF37;
    border-color: #CD7F32;
}

.btn-footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(205, 127, 50, 0.3);
}

.btn-footer-call:hover {
    background: rgba(205, 127, 50, 0.1);
    transform: translateY(-3px);
}

/* Newsletter */
.newsletter-desc {
    color: #b8a98f;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 0;
    margin-bottom: 0.8rem;
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(205, 127, 50, 0.3);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #e8d8b6;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
}

.input-group input::placeholder {
    color: #8b7d6b;
}

.btn-newsletter {
    padding: 0 20px;
    background: linear-gradient(135deg, #CD7F32, #D4AF37);
    border: none;
    border-radius: 0 8px 8px 0;
    color: #1a1208;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #D4AF37, #CD7F32);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8b7d6b;
    font-size: 0.85rem;
}

.form-note i {
    color: #CD7F32;
    font-size: 0.8rem;
}

/* Payment Methods */
.payment-methods {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(205, 127, 50, 0.2);
}

.payment-title {
    font-size: 1rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.8rem;
    color: #8b7d6b;
}

.payment-icons i {
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #D4AF37;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    background: #0c0803;
    padding: 30px 0;
    border-top: 1px solid rgba(205, 127, 50, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.copyright p {
    color: #8b7d6b;
    font-size: 0.9rem;
    margin: 0;
}

.footer-pages {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.page-link {
    color: #b8a98f;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: #D4AF37;
}

.divider {
    color: #8b7d6b;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.made-with {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #CD7F32;
    font-size: 0.9rem;
}

.made-with i {
    color: #e63946;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.developer-credit {
    color: #8b7d6b;
    font-size: 0.85rem;
    font-style: italic;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CD7F32, #D4AF37);
    border: none;
    border-radius: 50%;
    color: #1a1208;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(205, 127, 50, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(205, 127, 50, 0.4);
}

/* Floating Chat */
.floating-chat {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.chat-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #e63946;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(230, 57, 70, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-main {
        padding: 60px 0 40px;
    }
}

@media (max-width: 767.98px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-pages {
        justify-content: center;
    }

    .footer-credits {
        flex-direction: column;
        gap: 0.8rem;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
    }

    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 575.98px) {
    .footer-main {
        padding: 50px 0 30px;
    }

    .footer-wave {
        top: -80px;
        height: 80px;
    }

    .input-group {
        flex-direction: column;
        gap: 0;
    }

    .input-group input {
        border-radius: 8px 8px 0 0;
        border-right: 2px solid rgba(205, 127, 50, 0.3);
    }

    .btn-newsletter {
        border-radius: 0 0 8px 8px;
        padding: 15px;
    }
}


/* feature category css */

.furniture-categories-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #f8f5f0, #eee6d8);
}

.furniture-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.furniture-category-card {
    position: relative;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

.furniture-category-card:hover {
    transform: translateY(-8px);
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.furniture-category-card:hover .card-bg img {
    transform: scale(1.08);
}

.card-glass {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.4rem;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
}

.category-title {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0.4rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.category-description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #2f1b0c;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem; 
}

.section-subtitle {
    max-width: 720px;
    margin: 0.8rem auto 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #6b5f54;
}


@media (max-width: 576px) {
    .furniture-category-card {
        height: 320px;
    }

    .card-glass {
        padding: 1rem;
    }
}





.big-banner-section {
    margin-top: -20px;
}

.big-banner-section .banner-slide {
    height: 85vh;
    min-height: 700px;
    position: relative;
}

.big-banner-section .banner-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.big-banner-section .banner-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0;
}

.big-banner-section .banner-title {
    font-size: 4.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.big-banner-section .banner-subtitle {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.big-banner-section .carousel-control-prev,
.big-banner-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
}

.big-banner-section .carousel-indicators {
    bottom: 40px;
}

.big-banner-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}

@media (max-width: 1200px) {
    .big-banner-section .banner-title {
        font-size: 3.5rem;
    }
    
    .big-banner-section .banner-slide {
        height: 75vh;
        min-height: 600px;
    }
}

@media (max-width: 992px) {
    .big-banner-section .banner-title {
        font-size: 3rem;
    }
    
    .big-banner-section .banner-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .big-banner-section .banner-slide {
        height: 60vh;
        min-height: 500px;
    }
    
    .big-banner-section .banner-title {
        font-size: 2.5rem;
    }
    
    .big-banner-section .banner-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .big-banner-section .carousel-control-prev,
    .big-banner-section .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .big-banner-section .banner-slide {
        height: 50vh;
        min-height: 400px;
    }
    
    .big-banner-section .banner-title {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .big-banner-section .banner-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .big-banner-section .carousel-indicators {
        bottom: 20px;
    }
}

/* Video Banner Section Styles - More Attractive Design */
.video-banner-section {
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.video-banner-section .video-banner-slide {
    height: 90vh;
    min-height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-banner-section .video-banner-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    
}

.video-banner-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

.video-banner-section .video-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.video-banner-section .video-banner-title {
    font-size: 5rem;
    font-weight: 800;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.video-banner-section .video-banner-subtitle {
    font-size: 1.75rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    max-width: 800px;
    margin: 0 auto 35px;
    opacity: 0.95;
    animation: fadeInUp 1.2s ease-out;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.video-banner-section .video-banner-cta {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: fadeInUp 1.4s ease-out;
}

.video-banner-section .video-banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: white;
}

.video-banner-section .carousel-control-prev,
.video-banner-section .carousel-control-next {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.video-banner-section .carousel-control-prev:hover,
.video-banner-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.video-banner-section .carousel-indicators {
    bottom: 50px;
}

.video-banner-section .carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.video-banner-section .carousel-indicators button.active {
    background: white;
    transform: scale(1.3);
}

.video-banner-video {
    pointer-events: none;
    touch-action: none;
}

.video-banner-section .video-banner-slide {
    height: 90vh;
    height: 100svh;
}


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

@media (max-width: 1200px) {
    .video-banner-section .video-banner-title {
        font-size: 4rem;
    }
    
    .video-banner-section .video-banner-slide {
        height: 80vh;
        min-height: 650px;
    }
}

@media (max-width: 992px) {
    .video-banner-section .video-banner-title {
        font-size: 3.5rem;
    }
    
    .video-banner-section .video-banner-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-banner-section .video-banner-slide {
        height: 65vh;
        min-height: 550px;
    }
    
    .video-banner-section .video-banner-title {
        font-size: 2.8rem;
    }
    
    .video-banner-section .video-banner-subtitle {
        font-size: 1.3rem;
        padding: 0 20px;
    }
    
    .video-banner-section .carousel-control-prev,
    .video-banner-section .carousel-control-next {
        width: 60px;
        height: 60px;
        margin: 0 15px;
    }
}

@media (max-width: 576px) {
    .video-banner-section .video-banner-slide {
        height: 55vh;
        min-height: 450px;
    }
    
    .video-banner-section .video-banner-title {
        font-size: 2.2rem;
        padding: 0 15px;
    }
    
    .video-banner-section .video-banner-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .video-banner-section .video-banner-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .video-banner-section .carousel-indicators {
        bottom: 30px;
    }
}



/* furniture banner css */
.featured-slider {
    width: 100%;
    overflow: hidden;
}

.featured-slider .carousel,
.featured-slider .carousel-inner,
.featured-slider .carousel-item {
    height: 50vh;
    min-height: 30vh;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 5vw;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}

.project-overlay-content {
    max-width: 520px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 20px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.featured-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
}

.featured-overlay-contenth2 {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    margin-bottom: 12px;
}

.featured-overlay-content p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 22px;
}

.btn-view {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 30px;
    background: #ffffff;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-indicators .active {
    background-color: #fff;
}

@media (max-width: 768px) {
    .featured-slider .carousel-item {
        height: 45vh;
    }

    .featured-overlay-content {
        padding: 16px;
        max-width: 100%;
    }

    .featured-overlay-content p {
        font-size: 14px;
    }
}









.featured-furniture-section {
    background: linear-gradient(135deg, #f0e9df 0%, #e5d9cc 100%);
    padding: 80px 0;
    position: relative;
    border-top: 3px solid #4b2e1e;
    border-bottom: 3px solid #4b2e1e;
}

.featured-furniture-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.furniture-filter-tabs {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.filter-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #4b2e1e;
    border-radius: 30px;
    color: #4b2e1e;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab.active {
    background: #d4af37;
    color: #4b2e1e;
    border-color: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.filter-tab:hover:not(.active) {
    background: rgba(61, 43, 31, 0.1);
    transform: translateY(-3px);
}

.filter-tab i {
    font-size: 1.1rem;
}

.furniture-items-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.furniture-items-grid.active {
    display: grid;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-cta {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 28px;
    border-radius: 30px;
    background: #4b2e1e;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #3a2416;
}

.furniture-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.furniture-card-inner {
    display: flex;
    flex-direction: column;
}

.furniture-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.furniture-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: calc(100% - 24px);
    z-index: 2;
}

.furniture-badge {
    flex-shrink: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: #4b2e1e;
    background: rgba(212, 175, 55, 0.15);
}

.furniture-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.furniture-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0e9df;
    color: #b7a078;
    font-size: 48px;
}

.furniture-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.furniture-category {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-tag,
.style-tag {
    font-size: 11px;
    color: #4b2e1e;
    background: rgba(212, 175, 55, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.furniture-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.furniture-title a {
    color: #333;
    text-decoration: none;
}

.furniture-title a:hover {
    color: #d4af37;
}

.furniture-description {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin: 0;
}

.furniture-specs {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #555;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.furniture-price {
    margin-top: 6px;
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.price-discounted {
    font-weight: 700;
    color: #d4af37;
    font-size: 14px;
}

.price-original {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
}

.price-normal {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.furniture-actions .btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #4b2e1e;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.furniture-actions .btn-view-details:hover {
    background: #3a2416;
}

@media (max-width: 1199.98px) {
    .furniture-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 991.98px) {
    .featured-furniture-section {
        padding: 60px 0;
    }
    .furniture-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    .filter-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .furniture-image img,
    .furniture-placeholder {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .furniture-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .filter-tabs-nav {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    .filter-tab {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .featured-furniture-section {
        padding: 40px 0;
    }
    .furniture-items-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .furniture-image img,
    .furniture-placeholder {
        height: 160px;
    }
    .furniture-card {
        border-radius: 12px;
    }
}
