:root {
    --primary: #1a1208;
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --cream: #f9f5ee;
    --dark: #0e0c07;
    --text: #3a3228;
    --muted: #7a6e5f;
    --white: #ffffff;
    --section-bg: #fdfaf4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cormorant Garamond', serif;


}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

/* ===== GOLD DIVIDER ===== */
.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0px auto 10px;
    border-radius: 2px;
}

.sticky_left {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.gold-divider.left {
    margin-left: 0;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--dark);
    color: var(--gold-light);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    padding: 8px 0;
}

.top-bar a {
    color: var(--gold);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white) !important;
    padding: 5px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-brand img {
    height: 56px;
    object-fit: contain;
    transition: height 0.3s;
}

.navbar.scrolled .navbar-brand img {
    height: 44px;
}

.nav-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    color: var(--primary) !important;
    text-transform: uppercase;
    padding: 8px 14px !important;
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover {
    color: var(--gold) !important;
}

.btn-quote {
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 2px;
    padding: 8px 20px !important;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: all 0.3s;
}

.btn-quote:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.btn-quote::after {
    display: none;
}

/* ===== HERO SLIDER ===== */
#heroSlider .carousel-item {
    height: 92vh;
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

#heroSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    transition: transform 7s ease;
    filter: brightness(0.55);
}

#heroSlider .carousel-item.active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(14, 12, 7, 0.75) 0%, rgba(14, 12, 7, 0.2) 100%);
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 0 40px;
    animation: fadeInUp 1s ease;
}

.hero-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.btn-hero-primary {
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 2px;
    padding: 12px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-hero-primary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.btn-hero-outline {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    border-radius: 2px;
    padding: 10px 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    margin-left: 16px;
}

.btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.carousel-indicators {
    display: none;
}

.carousel-indicators [data-bs-target] {
    width: 32px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.5);
}

.carousel-indicators .active {
    background: var(--gold);
    width: 48px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(201, 168, 76, 0.8);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    background-size: 50%;
    padding: 12px;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark);
    padding: 28px 0;
    border-top: 3px solid var(--gold);
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid rgba(201, 168, 76, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 50px 0;
    background: var(--section-bg);
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-img-main:hover {
    transform: scale(1.02);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--dark);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.about-badge .big {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
}

.about-badge .small {
    font-size: 0.65rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    color: #fff;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 10px;
}

.home_heading h1,
.home_heading h2,
.home_heading h3 {
    font-size: 38px;
    line-height: 40px;
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: var(--gold);
    font-size: 1rem;
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 2px;
    padding: 13px 32px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-gold:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 2px;
    padding: 11px 32px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-left: 16px;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ===== PRODUCTS / GALLERY ===== */
.products-section {
    padding: 50px 0;
    background: var(--white);
}

.product-card {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--white);

}

.product-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(14, 12, 7, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay-btn {
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 2px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.product-overlay-btn:hover {
    background: var(--dark);
    color: var(--white);
}

.category_btn a {
    text-transform: capitalize;
    padding: 8px 14px;
    font-size: 13px;
}

.product-card-body {
    padding: 20px 12px;
    border-top: 3px solid var(--gold);
}

.category_btn {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product-card-body h5 {
    font-size: 25px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}


.product-card-body p {
    font-size: 15px;
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* kitni lines dikhani hain */
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 8px;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.service-card h4 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 50px 0;
    background: var(--cream);
}

.why-card {
    background: var(--white);
    border-radius: 2px;
    padding: 18px 28px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 3px solid transparent;
}

.why-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 8px;
}

.why-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ===== GALLERY ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 12, 7, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay i {
    color: var(--gold);
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.4s;
}

.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 50px 0;
    background: var(--dark);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    padding: 20px 16px;
    height: 100%;
    transition: all 0.4s;
}

.testimonial-card:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-6px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.author-loc {
    font-size: 0.78rem;
    color: var(--gold);
}

/* ===== BLOG ===== */
.blog-section {
    padding: 50px 0;
    background: var(--section-bg);
}

.blog-card {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    background: var(--white);
    height: 100%;
}

.blog-card:hover {

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.blog-card-body h5 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-card-body h5 a {
    color: var(--primary);
    text-decoration: none;
}

.blog-card-body p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 16px;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 14px;
    color: var(--primary);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 50px 0;
    background: var(--white);
}

.accordion-button {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary) !important;
    background: var(--section-bg) !important;
    letter-spacing: 0.02em;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--gold) !important;
    background: var(--cream) !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(70%) sepia(40%) saturate(500%) hue-rotate(10deg);
}

.accordion-item {
    border: 1px solid rgba(201, 168, 76, 0.2) !important;
    margin-bottom: 8px;
    border-radius: 2px !important;
    overflow: hidden;
}

.accordion-body {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    background: var(--white);
}

/* ===== ENQUIRY ===== */
.enquiry-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1208 100%);
    position: relative;
    overflow: hidden;
}

.enquiry-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border: 60px solid rgba(201, 168, 76, 0.06);
    border-radius: 50%;
}

.enquiry-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border: 80px solid rgba(201, 168, 76, 0.04);
    border-radius: 50%;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--white);
    border-radius: 2px;
    padding: 14px 18px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-select option {
    background: var(--dark);
    color: var(--white);
}

.form-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.btn-submit {
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 2px;
    padding: 15px 48px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 100%;
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item p a {

    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item h6 {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
    font-family: 'Nunito Sans', sans-serif;
}

.contact-info-item p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.5;
}

/* ===== FOOTER ===== */
footer {
    background: #080604;
    padding: 70px 0 0;
    border-top: 3px solid var(--gold);
}

.footer-logo img {
    height: 60px;
    filter: invert(1);
    margin-bottom: 20px;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
    width: 100%;
}

.footer-about {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.9rem;
    margin-right: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(201, 168, 76, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 46px;
    height: 46px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 2px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

#backToTop:hover {
    background: var(--dark);
    color: var(--gold);
    transform: translateY(-3px);
}

#backToTop.show {
    display: flex;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 0.1s;
}

.fade-up-delay-2 {
    transition-delay: 0.2s;
}

.fade-up-delay-3 {
    transition-delay: 0.3s;
}

/* Default Bootstrap arrow remove */
.dropdown-toggle::after {
    display: none;
}

.dropdown-item {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    padding: 9px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .25s;
    border-left: 3px solid transparent;
}

.dropdown-item i {
    color: var(--gold);
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
}

.navbar-expand-lg .navbar-collapse {

    justify-content: space-around;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--gold);
    border-left-color: var(--gold);
    padding-left: 26px;
}

/* Default hidden */
.dropdown-menu {
    display: none;
    /* opacity: 0; */
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Jab open ho */
.dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


.iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    color: #fff;
}

/* ===== FLOAT ICON CSS ===== */

.float_icon_wrapper {
    position: fixed;
    left: 24px;


    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
    bottom: 30px;
}

.float_icon_btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    outline: none;
}


/* Tooltip */



.float_icon_btn .tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 6px 5px 0;
    border-style: solid;
    border-color: transparent #222 transparent transparent;
}

/* Icon Colors */
.icon-mail {
    background: linear-gradient(135deg, #c9a84c, #f1cc63);
}

.icon-call {
    background: linear-gradient(135deg, #000000, #191a19);
}

.icon-whatsapp {
    background: linear-gradient(135deg, #25D366, #075E54);
}

/* Pulse Ring Animation */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2.5s ease-out infinite;
    opacity: 0;
}

.page-hero {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/breadcumb.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 20, 0.62);
    z-index: 1;
}

.hero-contentt {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
}

.hero-title {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
    /* letter-spacing: -0.5px; */
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-family: 'Nunito Sans', sans-serif;
}

.breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
    padding: 8px 22px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
}

.breadcrumb li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.home-svg {
    vertical-align: -2px;
    margin-right: 5px;
}

.breadcrumb li+li::before {
    content: '/';
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.breadcrumb li.active span {
    color: var(--gold);
    font-weight: 600;
}

.category_wrap {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding-bottom: 20px;
}

.gallery_wrap img {
    width: 100%;
}

.gallery_wrap {

    padding-top: 50px;
}

.blog_details img {
    width: 100%;
    margin-bottom: 30px;
}

.blog_details {
    padding: 50px 0px;
    background: var(--section-bg);
}

.related_blog a {
    text-decoration: none;
    font-size: 19px;
    line-height: 21px;
    font-weight: 500;
    color: #000;

}

.details_btn {
    margin-top: 10px;
}

.details_btn a {
    text-transform: capitalize;
    font-size: 13px;
    padding: 8px 14px;
    color: var(--white);
}

.related_blog {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 10px;
    padding-bottom: 18px;
    margin-bottom: 20px;
}

.blog_details p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--muted);

    margin-bottom: 10px;
}

.icon-mail .pulse-ring {
    background: rgba(234, 67, 53, 0.35);
    animation-delay: 0s;
}

.icon-call .pulse-ring {
    background: rgba(52, 168, 83, 0.35);
    animation-delay: 0.8s;
}

.icon-whatsapp .pulse-ring {
    background: rgba(37, 211, 102, 0.35);
    animation-delay: 1.6s;
}
.site_map_area_sec {
    padding: 50px 0px;
}

h2.title-default-left {
    padding-left: 10px;
    padding-bottom: 10px;
}
.sitemap_page {
    float: left;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    background: #ffffff;
}
.sitemap {
    border-left: 1px solid #666;
    padding: 0;
}
.sitemap li {
    list-style: none !important;
    background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0 9px;
    padding: 0 0 0 15px;
    margin-bottom: 5px;
    font-size: 15px;
}
.sitemap li a {
    color: #292828;
    text-decoration: none;
}
.sitemap li ul {
    border-left: 1px solid #666;
    padding: 6px 0px;
}
.wmt_right {
   
    width: 100%;
    margin-bottom: 20px;
}
.market-list {
    float: left;
    width: 100%;
    margin: 0 !important;
    padding: 0;
}
.market-list li {
    list-style: none;
    padding-right: 10px;
    line-height: 20px;
    width: 25%;
    float: left;
}
.market-list li a {
    width: auto;
    height: auto;
    padding: 10px 0 10px 12px;
    margin: 0 0 9px;
    display: block !important;
    color: #333 !important;
    font-size: 14px;
    background-color: #ddd;
    text-decoration: none;
        transition: 0.5s;
}
.market-list li a:hover {
    background: #c9a84c;
    color: #fff !important;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.75);
        opacity: 0;
    }
}

/* Desktop hover */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(0); */
    }
}


/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
    .nav-link:hover {
        color: inherit !important;
        /* ya jo default color ho */
    }


    .about-badge {
        display: none;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }
}

@media(max-width:767px) {
    #heroSlider .carousel-item {
        height: 70vh;
    }

    .btn-hero-outline {
        display: none;
    }


}

@media(max-width:575px) {}