/* --- GLOBAL RESET & THEME VARIABLES --- */
:root {
    --primary-green: #162e5e;
    /* Deep elegant corporate tone */
    --light-cream: #f4f1ea;
    /* Warm premium backdrop color */
    --accent-gold: #c69235;
    /* Artisan branding gold */
    --text-dark: #2d312e;
    /* Clean dominant paragraph text */
    --text-muted: #64748b;
    /* Balanced secondary gray text */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a
{
    text-decoration: none;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
.serif-font {
    font-family: 'Playfair Display', serif;
}

/* 1. TOP HEADER */
.top-header {
    background-color: var(--primary-green);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-header a:hover {
    color: var(--accent-gold);
}

/* 2. STICKY MAIN HEADER */
.sticky-header-container {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.navbar-brand img {
    max-height: 45px;
}

.nav-link-custom {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link-custom.active-pill {
    background-color: #f6ebd4;
    color: var(--primary-green) !important;
}

.nav-link-custom:hover:not(.active-pill) {
    color: var(--accent-gold);
}

.btn-header-contact {
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 24px;
    transition: all 0.3s;
}

.btn-header-contact:hover {
    background-color: #bba27a;
    color: #ffffff;
}

/* 3. HERO SLIDER */
.hero-slider-section {
    background: url('../assets/image/banner-veena.jpg') center center/cover no-repeat;
    color: #ffffff;
    min-height: 520px;
    position: relative;
}

.carousel-item-content {
    padding: 100px 0;
}

.hero-subtitle {
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 15px;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 35px;
}

.btn-gold {
    background-color: var(--accent-gold);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: #ae7f2b;
    color: #ffffff;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 24px;
    background-size: 40%;
}

/* GENERAL SECTION LAYOUTS */
.section-padding {
    padding: 80px 0;
}

.section-bg-cream {
    background-color: #fcfaf6 !important;
}

.label-uppercase {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-main-heading {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
}

/* 4. ABOUT US SECTION */
.about-image-box {
    background: linear-gradient(135deg, #224939 0%, #877437 100%);
    border-radius: 16px;
    height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo-watermark {
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.08);
    font-weight: bold;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background-color: var(--accent-gold);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(198, 146, 53, 0.3);
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.about-icon-wrapper {
    background-color: #f7edd7;
    color: var(--accent-gold);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.btn-dark-green {
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-dark-green:hover {
    background-color: #bba27a;
    color: #ffffff;
}

/* 5. PRODUCT CATEGORY SECTION */
.product-card {
    background-color: #ffffff;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-container {
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.bg-card-mint img {
    width:100%;
    background-size: cover;
}

.bg-card-sand img {
     width:100%;
    background-size: cover;
}

.bg-card-lavender img {
     width:100%;
    background-size: cover;
}

.bg-card-sage img {
     width:100%;
    background-size: cover;
}

.product-image-container i {
    font-size: 70px;
    color: var(--primary-green);
    opacity: 0.8;
}

.product-meta-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.product-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.price-old {
    text-decoration: line-through;
    color: #8c918e;
    font-size: 14px;
    margin-right: 8px;
}

.price-new {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 16px;
}

.btn-add-cart {
    background-color: var(--primary-green);
    color: #ffffff;
    width: 100%;
    border: none;
    padding: 10px;
    font-weight: 600;
    border-radius: 6px;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background-color: #bba27a;
}

/* 6. WHY CHOOSE US SECTION */
.why-choose-section {
    background-color: var(--primary-green) !important;
    color: #ffffff;
}

.why-choose-section .section-main-heading {
    color: #ffffff;
}

.advantage-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 40px 25px;
    height: 100%;
    transition: all 0.3s;
}

.advantage-card.active-card {
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.06);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--accent-gold);
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.advantage-card.active-card .advantage-icon {
    background-color: rgba(198, 146, 53, 0.15);
}

/* 7. GALLERY SECTION */
.gallery-box {
    border-radius: 12px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.gallery-box i {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.7);
}

/* 8. TESTIMONIAL SECTION */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    height: 100%;
    position: relative;
}

.quote-icon-mark {
    font-size: 45px;
    color: #f3e6cc;
    font-family: serif;
    line-height: 1;
    position: absolute;
    top: 15px;
    left: 25px;
}

.stars-wrapper {
    color: var(--accent-gold);
    font-size: 13px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #555c57;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-green);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.indicator-dot {
    width: 10px;
    height: 6px;
    background-color: #d1cbd4;
    border-radius: 3px;
    display: inline-block;
    margin: 0 4px;
}

.indicator-dot.active-dot {
    width: 24px;
    background-color: var(--accent-gold);
}

/* 9. FOOTER SECTION */
footer {
    background-color: #162e5e;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-branding-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links list-unstyled li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-circle-btn {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-circle-btn:hover {
    background-color: var(--accent-gold);
    color: #ffffff;
}

.btn-footer-msg {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.btn-footer-msg:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 0;
    margin-top: 60px;
    font-size: 13px;
}

/* Floating Cart Widget */
.floating-cart-trigger {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background-color: #102b20;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 1040;
    text-decoration: none;
}

.count
{
    background-color: #162e5e;
    padding:60px 0 !important;
}



/* about page  */



/* --- BASIC GRID SYSTEM FOR RESPONSIVENESS --- */
.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.align-items-center {
    align-items: center;
}

.g-5 {
    padding: 10px;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* --- SECTION 1: BREADCRUMB HEADER BANNER --- */
.breadcrumb-banner {
    background-color: var(--primary-green);
    background-image:
        linear-gradient(rgba(22, 46, 94, 0.82), rgba(22, 46, 94, 0.82)),
        url('../assets/image/banner-veena.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 100px 5%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.breadcrumb a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb span.separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span.current {
    color: var(--accent-gold);
}

.banner-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    max-width: 900px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 650px;
    font-weight: 400;
    margin: 0 auto;
}

/* --- SECTION 2: ABOUT US CUSTOM STYLE --- */
.section-padding {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-image-box img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
    display: block;
}

.label-uppercase {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-main-heading {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--primary-green);
    line-height: 1.25;
    margin-bottom: 25px;
    font-weight: 700;
}

.text-muted {
    color: var(--text-muted);
    font-size: 1rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.about-icon-wrapper {
    background-color: rgba(22, 46, 94, 0.07);
    color: var(--primary-green);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.btn-dark-green {
    display: inline-block;
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-dark-green:hover {
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    color: #ffffff;
}

/* --- SECTION 3: DYNAMIC COUNTER SECTION --- */
.counter-section {
    padding: 0 5%;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: transform 0.3s ease;
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 16px 16px 0 0;
}

.counter-card:hover {
    transform: translateY(-5px);
}

.counter-number {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* --- SECTION 4: CORE VALUES SECTION --- */
.values-section {
    padding: 120px 5% 120px 5%;
    text-align: center;
    background-color: #faf9f6;
}

.values-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.values-heading {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 55px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 25px;
    text-align: left;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 3px solid var(--accent-gold);
    border-left: 3px solid var(--accent-gold);
    border-radius: 16px 0 0 0;
    pointer-events: none;
    width: 40px;
    height: 40px;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */
@media (max-width: 1200px) {

    .counter-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 2.8rem;
    }

    .section-main-heading {
        font-size: 2.3rem;
    }

    .about-image-box {
        margin-bottom: 35px;
    }
}

@media (max-width: 768px) {
    .breadcrumb-banner {
        padding: 80px 20px;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .counter-section {
        margin-top: -20px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .counter-number {
        font-size: 2.1rem;
    }

    .values-heading {
        font-size: 2.2rem;
        margin-bottom: 35px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }

    .counter-grid {
        grid-template-columns: 1fr;
    }

    .section-main-heading {
        font-size: 1.9rem;
    }
}



/* product page  */



        /* --- 4. CATALOG FILTER & SEARCH BAR --- */
        .catalog-controls {
            background-color: var(--light-bg);
            padding: 30px 0;
            border-bottom: 1px solid #eef0f3;
        }
        .filter-btn {
            background-color: #ffffff;
            color: var(--primary-navy);
            border: 1px solid rgba(22, 46, 94, 0.15);
            padding: 10px 22px;
            font-weight: 600;
            border-radius: 30px;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        .filter-btn:hover, .filter-btn.active {
            background-color: #c69235;
            color: #000;
            border-color: var(--primary-navy);
            box-shadow: 0 4px 12px rgba(22, 46, 94, 0.15);
        }
        .search-wrapper {
            position: relative;
        }
        .search-wrapper input {
            padding: 12px 20px 12px 45px;
            border-radius: 30px;
            border: 1px solid rgba(0,0,0,0.1);
            font-size: 0.95rem;
        }
        .search-wrapper input:focus {
            box-shadow: 0 0 0 3px rgba(198, 146, 53, 0.25);
            border-color: var(--accent-gold);
        }
        .search-wrapper i {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
        }

        /* --- 5. PRODUCT CATALOG TILES GRID --- */
        .product-section {
            padding: 70px 0 100px 0;
        }
        .product-card {
            background: #ffffff;
            border-radius: 16px;
            border: 1px solid #f1f3f7;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--accent-gold);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }
        .product-img-wrapper {
            background-color: #faf9f5;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 240px;
            overflow: hidden;
            border-bottom: 1px solid #f8f9fa;
        }
        .product-img-wrapper img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        .product-card:hover .product-img-wrapper img {
            transform: scale(1.06);
        }
        .product-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .product-category {
            font-size: 0.8rem;
            text-transform: uppercase;
            color: var(--accent-gold);
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }
        .product-title {
            font-family: var(--font-serif);
            font-size: 1.4rem;
            color: var(--primary-navy);
            font-weight: 700;
            margin-bottom: 10px;
        }
        .product-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 18px;
            line-height: 1.5;
        }
        .product-meta {
            margin-top: auto;
            border-top: 1px solid #f1f3f7;
            padding-top: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .product-spec {
            font-size: 0.85rem;
            color: var(--text-dark);
            font-weight: 600;
        }
        .product-spec span {
            color: var(--text-muted);
            font-weight: 400;
        }
        .btn-enquire {
            background-color: var(--primary-navy);
            color: #ffffff;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .btn-enquire:hover {
            background-color: var(--accent-gold);
            color: #ffffff;
        }

        /* --- 6. FLOATING CALL TO ACTION --- */
        .cta-banner {
            background: linear-gradient(135deg, #162e5e 0%, #0b1a38 100%);
            color: #ffffff;
            padding: 60px 0;
            text-align: center;
            position: relative;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(198, 146, 53, 0.15) 0%, transparent 50%);
        }
        .cta-title {
            font-family: var(--font-serif);
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .btn-cta-gold {
            background-color: var(--accent-gold);
            color: #ffffff;
            font-weight: 700;
            padding: 14px 36px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s;
        }
        .btn-cta-gold:hover {
            background-color: #ffffff;
            color: var(--primary-navy);
            transform: translateY(-2px);
        }

        /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
        @media (max-width: 991px) {
            .banner-title { font-size: 2.5rem; }
            .product-img-wrapper { height: 200px; }
        }
        @media (max-width: 767px) {
            .filter-btn { padding: 8px 16px; font-size: 0.9rem; }
            .cta-title { font-size: 1.8rem; }
        }
   



        /* gallery page  */

       /* ==========================
   Gallery Section
========================== */
.gallery-section {
    background: #fdfbf7;
}

.gallery-subtitle {
    display: inline-block;
    color: #c89b3c;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.gallery-description {
    max-width: 650px;
    margin: auto;
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Gallery Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.gallery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-overlay h5 {
    color: #fff;
    font-weight: 600;
    transform: translateY(20px);
    transition: 0.4s ease;
}

/* Hover Effects */
.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-card:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* Tablet */
@media (max-width: 991px) {
    .gallery-title {
        font-size: 34px;
    }

    .gallery-card img {
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gallery-title {
        font-size: 28px;
    }

    .gallery-description {
        font-size: 15px;
    }

    .gallery-card img {
        height: 250px;
    }
}


/* blog page  */

/* --- BLOG SECTION STYLING SYSTEM --- */
.blog-section {
    padding: 90px 0;
    background-color: #f8f9fa; /* Soft light background for contrast */
}

.blog-sub-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #c69235; /* Gold Accent */
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 8px;
}

.blog-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: #162e5e; /* Primary Navy */
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-title-divider {
    width: 60px;
    height: 3px;
    background-color: #c69235;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.blog-lead-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Structural Card Styling */
.blog-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eef0f3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(22, 46, 94, 0.08);
}

/* Image Wrapper and Category Tag Overlay */
.blog-img-box {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #0b1a38;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-box img {
    transform: scale(1.05);
}

.blog-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #c69235;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Card Content Structure */
.blog-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 700;
}

.blog-card-title a {
    color: #162e5e;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.blog-card-title a:hover {
    color: #c69235;
}

.blog-card-excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Clips summary text at line 3 cleanly */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Interactive Link Element */
.blog-read-more {
    margin-top: auto;
    font-size: 0.85rem;
    color: #162e5e;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.blog-read-more i {
    transition: transform 0.2s ease;
}

.blog-read-more:hover {
    color: #c69235;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Fluid Responsive Breakpoint Modifiers */
@media (max-width: 991px) {
    .blog-section { padding: 60px 0; }
    .blog-main-title { font-size: 2rem; }
}

@media (max-width: 575px) {
    .blog-body { padding: 20px; }
    .blog-card-title { font-size: 1.15rem; }
}


/* contact us page  */

/* --- CONTACT SECTION STYLING SYSTEM --- */
.contact-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.contact-sub-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #c69235; /* Gold Accent */
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 8px;
}

.contact-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: #162e5e; /* Primary Navy */
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-title-divider {
    width: 60px;
    height: 3px;
    background-color: #c69235;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.contact-lead-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Left Side: Contact Information Styling */
.contact-info-wrapper {
    padding-right: 20px;
}

.info-box-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #162e5e;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-box-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 30px;
}

.contact-detail-tiles {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-tile {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon-box {
    width: 44px;
    height: 44px;
    background-color: #f4ecdd; /* Super soft gold variant background Tint */
    color: #c69235;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.info-tile-text h5 {
    font-size: 1rem;
    color: #162e5e;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-tile-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.info-link {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-link:hover {
    color: #c69235;
}

.text-warning-custom {
    color: #ef4444; /* Explicit warning red fallback for closes */
    font-size: 0.85rem;
    font-weight: 500;
}

/* Right Side: Form Visual Box Card Elements */
.contact-form-card {
    background-color: #f8f9fa;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.form-box-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #162e5e;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-box-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Premium Form Elements Overrides */
.form-floating-custom {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label-custom {
    font-size: 0.85rem;
    font-weight: 600;
    color: #162e5e;
}

.form-control-custom, .form-select-custom {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    background-color: #ffffff;
    border: 1px solid rgba(22, 46, 94, 0.12);
    border-radius: 8px;
    color: #2d312e;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-control-custom:focus, .form-select-custom:focus {
    outline: none;
    border-color: #c69235;
    box-shadow: 0 0 0 3px rgba(198, 146, 53, 0.15);
}

.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23162e5e' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 12px;
}

.textarea-custom {
    resize: none;
}

/* Premium Action Submit Button */
.btn-submit-premium {
    background-color: #162e5e;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit-premium:hover {
    background-color: #c69235;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(198, 146, 53, 0.2);
}

/* Fluid Responsive Breakpoint Adjustments */
@media (max-width: 991px) {
    .contact-section { padding: 60px 0; }
    .contact-main-title { font-size: 2rem; }
    .contact-info-wrapper { padding-right: 0; }
    .contact-form-card { padding: 30px; }
}

@media (max-width: 575px) {
    .contact-form-card { padding: 20px; }
    .form-box-heading { font-size: 1.5rem; }
    .btn-submit-premium { width: 100%; }
}

/* --- MAP SECTION STYLING SYSTEM --- */
.map-section {
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #eef0f3;
    background-color: #ffffff;
    overflow: hidden;
}

/* Responsive Fluid Map Layout */
.map-iframe-container {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: flex;
}

.responsive-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 480px;
}

/* Fluid Responsive Breakpoint Overrides */
@media (max-width: 991px) {
    .map-iframe-container, .responsive-map-iframe {
        min-height: 380px;
    }
}

@media (max-width: 575px) {
    .map-iframe-container, .responsive-map-iframe {
        min-height: 300px;
    }
}


/* side bar icon  */

/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: #ff6b35;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.3);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* Tablet */
@media (max-width: 768px) {
    .floating-contact {
        right: 15px;
        bottom: 20px;
    }

    .contact-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .floating-contact {
        right: 12px;
        bottom: 15px;
        gap: 10px;
    }

    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

