:root {
    --bg: #f5f5f5;
    --surface: #ffffff;
    --text: #171717;
    --muted: #404040;
    --line: #d4d4d4;
    --brand: #0066cc;
    --brand-dark: #004c99;
    --accent: #0066cc;
    --shadow: 0 14px 34px rgba(26, 20, 14, 0.14);
    --radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 84px 0;
}

#about.section {
    padding: 0;
}

.eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 800;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
}

.eyebrow,
.btn,
.nav a {
    font-family: "Poppins", sans-serif;
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(7px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 102, 204, 0.12);
}

.nav-wrap {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo-link img {
    height: 50px;
    width: auto;
}

.nav {
    list-style: none;
    display: flex;
    gap: 22px;
}

.nav a {
    font-weight: 700;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--brand);
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.menu-btn span {
    width: 18px;
    height: 2px;
    background: #2c231d;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.26);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 102, 204, 0.25);
    box-shadow: none;
}

.btn-small {
    padding: 9px 16px;
}

.btn-block {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 86px;
    background: url("images/Mandir img1.png") center center / cover no-repeat;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(0, 102, 204, 0.06));
    mask-image: radial-gradient(circle at 20% 20%, black 20%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(10, 18, 30, 0.78) 0%, rgba(10, 18, 30, 0.5) 48%, rgba(0, 102, 204, 0.28) 100%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: center;
}

.hero-copy {
    color: #fff;
}

.hero-copy h1 {
    margin-top: 10px;
    font-size: clamp(2rem, 4.8vw, 3.8rem);
    font-weight: 700;
    max-width: 18ch;
    line-height: 1.12;
}

.hero-copy p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.92);
    max-width: 54ch;
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-cta-row {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-stats {
    margin-top: 30px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.quick-stats li {
    padding: 14px 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    display: grid;
    gap: 3px;
    backdrop-filter: blur(4px);
}

.quick-stats strong {
    font-size: 1.28rem;
    font-weight: 700;
}

.quick-stats span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.86);
}

.hero-form-wrap {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid #d8e6f7;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.lead-form h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.lead-form label {
    display: block;
    margin-top: 10px;
}

.lead-form span {
    display: inline-block;
    margin-bottom: 5px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2a37;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid #d4d4d4;
    background: #ffffff;
    font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.14);
}

.section-head {
    margin-bottom: 24px;
}

.section-head h2 {
    margin-top: 8px;
    font-size: clamp(1.6rem, 3.3vw, 2.55rem);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.about-media {
    min-height: 620px;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-panel {
    background: #f7f7f7;
    padding: clamp(28px, 4vw, 62px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-panel h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #2c3440;
    max-width: 18ch;
}

.about-intro {
    margin-top: 18px;
    color: #5f6368;
    font-size: 1.06rem;
    line-height: 1.8;
}

.about-divider {
    height: 1px;
    background: #d7d7d7;
    margin: 26px 0 22px;
}

.about-list-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-list-wrap h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #323a44;
    margin-bottom: 8px;
}

.about-list {
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 17px;
    margin-top: 10px;
    color: #5f6368;
    font-size: 1.05rem;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d39f4a;
}

.services {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.7));
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.service-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-media-track {
    display: flex;
    height: 100%;
    transition: transform 0.35s ease;
}

.service-media-slide {
    min-width: 100%;
    height: 100%;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    cursor: zoom-in;
    transition: transform 0.45s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.06);
}

.service-media-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    cursor: pointer;
    z-index: 3;
}

.service-media-btn.prev {
    left: 8px;
}

.service-media-btn.next {
    right: 8px;
}

.service-media-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 3;
}

.service-media-dots button {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
}

.service-media-dots button.active {
    background: #fff;
}

.service-body {
    padding: 14px;
}

.service-body h3 {
    font-size: 1.2rem;
}

.service-body p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.94rem;
}

.service-meta {
    margin-top: 6px;
    color: #4b5563;
    font-size: 0.86rem;
    font-weight: 600;
}

.service-points {
    margin-top: 10px;
    list-style: none;
    display: grid;
    gap: 6px;
}

.service-points li {
    position: relative;
    padding-left: 14px;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.why-choose {
    background: #f5f5f5;
}

.why-choose .section-head {
    text-align: center;
}

.why-choose .section-head h2 {
    font-size: clamp(2rem, 4vw, 2.4rem)!important;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.why-card {
    border-radius: 14px;
    background: #efefef;
    padding: 28px 18px;
    text-align: center;
    border: 1px solid #e8e8e8;
    min-height: 290px;
}

.why-card.active {
    background: var(--brand);
    color: #fff;
}

.why-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: #f6f6f6;
    color: var(--brand);
    display: grid;
    place-items: center;
    font-size: 2rem;
    line-height: 1;
}

.why-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.why-card p {
    font-size: 0.96rem;
    color: #3f3f46;
    line-height: 1.55;
}

.why-card.active p {
    color: rgba(255, 255, 255, 0.92);
}

.why-copy {
    max-width: 980px;
    margin: 42px auto 0;
    text-align: center;
    color: #1f2937;
    font-size: 1.02rem;
    line-height: 1.8;
}

.why-copy p + p {
    margin-top: 18px;
}

.testimonials {
    position: relative;
    background:
        linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
        url("images/Stone Slabs img2.png") center center / cover no-repeat;
}

.test-head-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.test-head-row .section-head {
    margin-bottom: 0;
}

.test-divider {
    margin-top: 22px;
    margin-bottom: 18px;
    height: 1px;
    background: #d9d9d9;
}

.test-slider {
    position: relative;
    margin-top: 0;
    display: grid;
    grid-template-columns: 52px 1fr 52px;
    align-items: center;
    gap: 12px;
}

.test-window {
    overflow: hidden;
    border-radius: 16px;
}

.test-track {
    display: flex;
    gap: 12px;
    transition: transform 0.45s ease;
}

.test-card {
    min-width: calc((100% - 24px) / 3);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.test-avatar {
    width: 62px;
    height: 62px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #e8edf5;
    background: #f8fafc;
}

.test-content {
    position: relative;
    padding-right: 22px;
}

.test-quote {
    font-size: 0.95rem;
    line-height: 1.68;
    color: #364152;
    margin-bottom: 10px;
}

.test-author {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #243447;
}

.test-qmark {
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d39f4a;
    font-size: 2.9rem;
    line-height: 1;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    opacity: 0.9;
}

.test-btn {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #0b4fc7);
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
}

.test-dots {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.test-dots button {
    width: 30px;
    height: 4px;
    border-radius: 999px;
    border: none;
    background: #d8d8d8;
    cursor: pointer;
}

.test-dots button.active {
    background: #d39f4a;
}

.slider {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 10px;
}

.slider-window {
    border-radius: 18px;
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slider-track {
    display: flex;
    transition: transform 0.42s ease;
}

.slide-card {
    min-width: 100%;
    aspect-ratio: 16 / 9;
    background: #f1ece3;
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #2a3e44, #14252b);
    color: #fff;
    cursor: pointer;
}

.slider-dots {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #b09275;
    background: transparent;
    cursor: pointer;
}

.slider-dots button.active {
    background: var(--brand);
    border-color: var(--brand);
}

.slide-card {
    cursor: zoom-in;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(8, 9, 10, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox-figure {
    width: min(1000px, 92vw);
    max-height: 88vh;
    display: grid;
    gap: 10px;
    justify-items: center;
}

.lightbox-figure img {
    width: 100%;
    max-height: calc(88vh - 30px);
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-figure figcaption {
    color: #efefef;
    font-size: 0.95rem;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    border: none;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.lightbox-close {
    right: 22px;
    top: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.7rem;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.cta-box {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: linear-gradient(130deg, #fff8ed, #f4e6d6 66%, #dbeff2);
}

.cta-box p {
    margin-top: 8px;
    color: var(--muted);
}

.footer,
.site-footer {
    border-top: 1px solid var(--line);
    padding: 18px 0 24px;
}

.footer-wrap,
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

.delay {
    transition-delay: 0.12s;
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

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

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

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-media {
        min-height: 360px;
    }

    .btn-small {
        display: none;
    }
}

@media (max-width: 760px) {
    .menu-btn {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        left: 4vw;
        right: 4vw;
        top: 76px;
        padding: 10px;
        flex-direction: column;
        background: #fff9ef;
        border: 1px solid var(--line);
        border-radius: 14px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.28s ease, opacity 0.28s ease;
    }

    .nav.open {
        max-height: 260px;
        opacity: 1;
        pointer-events: auto;
    }

    .slider {
        grid-template-columns: 1fr;
    }

    .test-slider {
        grid-template-columns: 1fr;
    }

    .test-head-row {
        align-items: flex-start;
    }

    .test-card {
        min-width: 100%;
    }

    .test-avatar {
        width: 56px;
        height: 56px;
    }

    .slider-btn {
        position: absolute;
        z-index: 4;
        top: 50%;
        transform: translateY(-50%);
    }

    .slider .prev {
        left: 10px;
    }

    .slider .next {
        right: 10px;
    }

    .test-btn {
        position: absolute;
        z-index: 4;
        top: 50%;
        transform: translateY(-50%);
    }

    .test-btn.prev {
        left: 10px;
    }

    .test-btn.next {
        right: 10px;
    }

    .quick-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .lightbox-nav {
        width: 38px;
        height: 38px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 72px 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .about-list-wrap {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrap,
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
