:root {
    /* 🔥 CHANGE THEME HERE */
    --primary: #c9833a;
    /* orange/gold */
    --secondary: #121826;
    /* deep navy */

    /* neutrals */
    --ink: #1e2430;
    --muted: #6c7484;
    --line: rgba(0, 0, 0, .08);
    --shadow: 0 16px 40px rgba(0, 0, 0, .10);
}

body {
    background: linear-gradient(180deg, #f2eee7 0%, #efe9e0 30%, #f6f3ee 100%);
    color: var(--ink);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a,
button {
    cursor: pointer;
}

/* ✅ requirement */

/* Topbar */
.topbar {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    z-index: 20;
}

.brand-mark {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), #e6b07b);
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(201, 131, 58, .25);
}

.phone-link {
    color: var(--primary);
}

.nav-link {
    color: #2c3240 !important;
    font-weight: 500;
    opacity: .9;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero */
.hero-wrap {
    border-bottom: 1px solid var(--line);
}

.hero {
    min-height: 460px;
    border-radius: 22px;
    background:
        radial-gradient(1200px 500px at 15% 40%, rgba(255, 255, 255, .9), rgba(255, 255, 255, .35) 60%, rgba(255, 255, 255, 0) 75%),
        linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, .35)),
        url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.hero-title {
    font-family: Georgia, "Times New Roman", Times, serif;
    letter-spacing: .2px;
    font-size: clamp(32px, 3.6vw, 54px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.hero-sub {
    color: var(--muted);
    max-width: 520px;
}

/* Buttons */
.btn-brand {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 10px 22px rgba(201, 131, 58, .22);
}

.btn-brand:hover {
    background: color-mix(in srgb, var(--primary) 85%, black);
    border-color: color-mix(in srgb, var(--primary) 85%, black);
    color: #fff;
}

.btn-outline-brand {
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--primary) 55%, transparent);
    color: color-mix(in srgb, var(--primary) 85%, black);
    background: rgba(255, 255, 255, .65);
}

.btn-outline-brand:hover {
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    border-color: color-mix(in srgb, var(--primary) 70%, transparent);
}

/* Stats */
.stats-strip {
    margin-top: -26px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
    padding: 14px 16px;
    height: 100%;
}

.stat-num {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 0;
}

.stat-mini {
    font-weight: 500;
    color: var(--muted);
    font-size: 14px;
}

.stat-label {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
}

/* Section titles */
.section-title {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 34px;
    margin-bottom: 8px;
}

.section-sub {
    color: var(--muted);
    margin-bottom: 0;
}

/* Services */
.service-card {
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
    padding: 18px;
    height: 100%;
    transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.icon-pill {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: color-mix(in srgb, var(--primary) 80%, black);
}

/* Panels */
.panel {
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

.quote {
    font-style: italic;
    color: #3b4354;
}

.stars {
    color: #d4a017;
    letter-spacing: 1px;
}

.soft-divider {
    border-color: var(--line);
}

/* Consultation form */
.consult {
    background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 95%, white), var(--secondary));
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    border: 1px solid rgba(255, 255, 255, .08);
}

.consult-title {
    font-family: Georgia, serif;
}

.consult .form-control,
.consult .form-select {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    border-radius: 12px;
}

.consult .form-control::placeholder {
    color: rgba(255, 255, 255, .55);
}

.consult .form-control:focus,
.consult .form-select:focus {
    box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--primary) 22%, transparent);
    border-color: color-mix(in srgb, var(--primary) 65%, transparent);
}

/* Projects */
.project-card {
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .07);
    height: 100%;
}

.project-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.project-meta {
    padding: 12px 14px;
}

.project-title {
    font-weight: 700;
    margin: 0;
}

.project-loc {
    color: var(--muted);
    font-size: 12px;
    margin: 0;
}

/* Carousel indicators */
.carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: rgba(255, 255, 255, .82);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer-copy {
    opacity: .65;
}

/* Make hero height smaller on mobile */
@media (max-width: 576px) {
    .hero {
        min-height: 360px;
    }

    .section-title {
        font-size: 28px;
    }
}

.navbar-toggler {
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 12px;
    padding: 8px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .25rem rgba(0, 0, 0, .08);
}

.navbar-toggler-icon {
    filter: grayscale(1);
}

/* Project image height responsive */
@media (max-width: 576px) {
    .project-card img {
        height: 220px;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .project-card img {
        height: 190px;
    }
}

@media (min-width: 992px) {
    .project-card img {
        height: 170px;
    }
}


.form-select option {
    background: #020202 !important;
}

.consult-title {
    color: #fff;
}

.banner-strip {
    background: #fff;
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid rgba(0, 0, 0, .1);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.banner-inner {
    max-width: 900px;
    margin: 0 auto;
    font-weight: 600;
    color: #111;
}

@media(min-width:576px) {
    .project-complete {
        border-left: 2px solid rgba(0, 0, 0, 0.614);
        border-right: 2px solid rgba(0, 0, 0, 0.614);
    }


}

@media(max-width:575px) {
    .banner-strip .banner-inner .strip {
        font-size: 15px !important;
        padding: 20px, 0px;
    }

}

/* 
*
*
*
 Swiper  Style start from here
*
*
*
*/
.swiper {
    padding-bottom: 34px;
}

/* dots space */
.swiper .swiper-slide {
    height: auto;
}

.featured-nav,
.services-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(18, 24, 38, .45);
    backdrop-filter: blur(10px);
    color: #fff;
    display: grid;
    place-items: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    cursor: pointer;
}

.featured-nav:hover {
    background: rgba(18, 24, 38, .65) !important;
}

.featured-nav.prev,
.services-nav.prev {
    left: -6px !important;
}

.featured-nav.next,
.services-nav.next {
    right: -6px !important;
}

@media (max-width: 576px) {
    .featured-nav {
        display: none;
    }
}



/* === Testimonial Swiper (Scoped) === */
.tstm-theme {
    --brand: #c9a96e;
    --text: #111;
    --muted: rgba(17, 17, 17, .65);
    --border: rgba(17, 17, 17, .10);
    --soft: #f6f6f7;
}

.tstm-wrap {
    height: 100%;
}

.tstm-swiper {
    height: 100%;
}

.tstm-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tstm-head {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tstm-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 169, 110, .35);
}

.tstm-meta {
    line-height: 1.1;
}

.tstm-name {
    font-weight: 800;
    color: var(--text);
}

.tstm-role {
    font-size: 13px;
    color: var(--muted);
}

.tstm-stars {
    margin-left: auto;
    font-weight: 900;
    color: var(--brand);
    letter-spacing: 1px;
}

.tstm-quote {
    font-size: 15px;
    color: rgba(17, 17, 17, .78);
    line-height: 1.6;
    position: relative;
    padding-left: 14px;
}

.tstm-quote:before {
    content: "“";
    position: absolute;
    left: 0;
    top: -6px;
    font-size: 28px;
    color: var(--brand);
    font-weight: 900;
}

.tstm-badges {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.tstm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--soft);
    border: 1px solid var(--border);
    color: rgba(17, 17, 17, .72);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 999px;
}

/* Custom nav (scoped) */
.tstm-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.tstm-btn {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tstm-btn:hover {
    border-color: rgba(201, 169, 110, .7);
}

.tstm-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Swiper pagination bullets only inside .tstm-dots */
.tstm-dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: .35;
}

.tstm-dots .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--brand);
}

/* 
*
*
*
 Swiper  Style end here
*
*
*
*/
.pagination {
    justify-content: center
}

.accordion-button {
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    box-shadow: none;
}

.accordion-item {
    border: none;
    background-color: transparent;
}

.accordion-body {
    padding: 1rem 1.25rem;
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
}

.accordion-button::after {
    transform: scale(1.2);
}

.faq-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
}

.banner,
.banner img {
    height: 300px
}

.form-select option {
    color: #fff !important;
}