﻿@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");

html,
body {
    background-color: #fef8f61a;
    background-size: cover;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #1d1b1a1a;
    font-family: Montserrat;
}

.navbar-image {
    width: 120px;
    height: 34px;
}

@media (max-width: 1024px) {
    .navbar-image {
        width: 80px;
        height: 25px;
    }
}

.nav-link {
    color: #4c433a !important;
    font-weight: 550;
    font-size: 16px;
    padding: 5px;
    width: 90px;
    height: 35px;
    text-align: center;
    border-radius: 5px;
    transition: 0.3s ease, color 0.3s ease;
    margin: 0 15px;
    position: relative;
    text-decoration: none;
}

/* Active page underline */
@media (min-width: 1025px) {
    .nav-link.active::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -3px;
        width: 30px;
        height: 2px;
        background-color: #645a51;
        border-radius: 2px;
    }

    .nav-link.active {
        font-weight: 600;
    }

    /* Hover underline effect */
    .nav-link:hover::after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 30px;
        height: 2px;
        background-color: #645a51;
        border-radius: 2px;
    }
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
    .nav-link.active {
        font-weight: 700;
    }

        .nav-link.active::after {
            display: none;
        }
}

@media (max-width: 992px) {
    .nav-link {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .nav-link {
        margin-left: 10px !important;
        font-size: 12px;
    }
}

.brown-button {
    background-color: #645a51;
    border: none;
    border-radius: 10px;
    width: max-content;
    font-size: 16px;
}

@media (max-width: 767px) {
    .brown-button {
        font-size: 12px;
    }
}

.brown-button:focus {
    outline: none;
}

.banner-section {
    position: relative;
    overflow: hidden;
}

/* Reduce banner height on desktop */
@media (min-width: 1024px) {
    .banner-image {
        width: 100%;
        height: 75vh; /* adjust as needed */
        object-fit: cover;
        display: block;
    }
}

/* Mobile & tablet */
@media (max-width: 1024px) {
    .banner-image {
        width: 100%;
        height: auto;
        display: block;
    }
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 2;
}

.banner-text {
    color: #fff;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    margin-bottom: 10px;
}

.banner-heading {
    font-family: "EB Garamond", serif;
    font-size: 60px;
    color: #ffffff;
    margin-bottom: 15px;
}

.sub-banner-heading {
    font-family: "EB Garamond", serif;
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .banner-text {
        color: #fff;
        font-size: 12px;
        font-family: "Inter", sans-serif;
        margin-bottom: 10px;
    }

    .banner-heading {
        font-family: "EB Garamond", serif;
        font-size: 34px;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .sub-banner-heading {
        font-family: "EB Garamond", serif;
        font-size: 30px;
        color: #ffffff;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .banner-text {
        color: #fff;
        font-size: 8px;
        font-family: "Inter", sans-serif;
        margin-bottom: 10px;
    }

    .banner-heading {
        font-family: "EB Garamond", serif;
        font-size: 20px;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .sub-banner-heading {
        font-family: "EB Garamond", serif;
        font-size: 18px;
        color: #ffffff;
        margin-bottom: 15px;
    }
}

.precision-section {
    background-color: #e5e2e0;
}

.precision-label {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #755a25; /* golden brown */
}

.precision-heading {
    font-family: "EB Garamond", serif;
    font-size: 35px;
    font-weight: 600;
    color: #2f241d; /* dark brown */
}

.viola-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #4e4540; /* gray brown */
    margin-bottom: 0;
}
/* Banner Slider */
.banner-slider-track {
    display: flex;
    width: max-content;
    animation: bannerScroll 30s linear infinite;
}

.banner-slide {
    position: relative;
    flex-shrink: 0;
    width: 100vw;
}

    .banner-slide .banner-image {
        width: 100vw;
    }

@keyframes bannerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.banner-slider-track:hover {
    animation-play-state: paused;
}

@media (max-width: 991px) {
    .precision-heading {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .viola-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .precision-label {
        font-size: 8px;
    }

    .precision-heading {
        font-size: 18px;
    }

    .viola-text {
        font-size: 12px;
    }
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: max-content;
    gap: 20px;
    animation: scrollSlider 24s linear infinite;
}

.slider-card {
    position: relative;
    flex: 0 0 280px;
}

    .slider-card img {
        width: 280px;
        height: 350px;
        object-fit: cover;
        border-radius: 18px;
        display: block;
    }

    .slider-card span {
        position: absolute;
        bottom: 15px;
        left: 18px;
        color: #fff;
        font-family: "EB Garamond", serif;
        font-size: 18px;
        z-index: 2;
    }

@keyframes scrollSlider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.slider-wrapper:hover .slider-track {
    animation-play-state: paused;
}

/* =========================
   Tablet (<992px)
========================= */
@media (max-width: 991.98px) {
    .slider-track {
        gap: 15px;
        animation-duration: 22s;
    }

    .slider-card {
        flex: 0 0 220px;
    }

        .slider-card img {
            width: 220px;
            height: 300px;
        }

        .slider-card span {
            font-size: 16px;
            left: 15px;
            bottom: 12px;
        }
}

/* =========================
   Mobile (<767px)
========================= */
@media (max-width: 767.98px) {
    .slider-track {
        gap: 12px;
        animation-duration: 18s;
    }

    .slider-card {
        flex: 0 0 170px;
    }

        .slider-card img {
            width: 170px;
            height: 240px;
            border-radius: 14px;
        }

        .slider-card span {
            font-size: 14px;
            left: 12px;
            bottom: 10px;
        }
}

.livingJourney-image {
    width: 100%;
    object-fit: cover;
    display: block;
}

.white-button {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    color: #4c433a;
    font-size: 16px;
    max-width: max-content;
}

    .white-button:focus {
        outline: none;
    }

@media (max-width: 767.98px) {
    .white-button {
        font-size: 12px;
    }
}

.brand-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #7c746d;
}

.brand-title {
    font-family: "EB Garamond", serif;
    font-size: 35px;
    color: #2f241d;
    margin-bottom: 0;
    font-weight: bold;
}

.brand-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.brand-slider-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: brandScroll 25s linear infinite;
}

.brand-logo {
    flex-shrink: 0;
}

    .brand-logo img {
        height: auto;
        width: 80px;
        object-fit: contain;
        display: block;
    }

@keyframes brandScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-slider-wrapper:hover .brand-slider-track {
    animation-play-state: paused;
}

@media (max-width: 991.98px) {
    .brand-subtitle {
        font-size: 10px;
    }

    .brand-title {
        font-size: 30px;
    }

    .brand-slider-track {
        gap: 60px;
        animation-duration: 20s;
    }

    .brand-logo img {
        height: auto;
        width: 60px;
    }
}

@media (max-width: 767.98px) {
    .brand-slider-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .brand-logo img {
        height: auto;
        width: 60px;
    }
}

.footer-section {
    background: #645a51;
    color: #fff;
}

.footer-logo {
    width: 230px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(255,255,255,0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: 0.3s;
    }

        .social-icons a i {
            font-size: 18px;
            color: #fff;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
        }

            .social-icons a:hover i {
                color: #fff;
            }

.footer-heading {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    color: #fff;
    position: relative;
    margin-bottom: 25px;
}

    .footer-heading::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 40px;
        height: 2px;
        background: #fff;
    }

.footer-links,
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #ebebeb;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        text-decoration: none;
    }

    .contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 18px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        columns: #ebebeb;
    }

    .contact-list i {
        color: #ebebeb;
        margin-top: 4px;
        font-size: 14px;
        width: 16px;
    }

.footer-bottom {
    font-family: "Inter", sans-serif;
    font-size: 10px;
    color: #ebebeb;
    letter-spacing: 2px;
}

    .footer-bottom a {
        font-family: "Inter", sans-serif;
        font-size: 10px;
        color: #ebebeb;
        letter-spacing: 2px;
    }

@media (max-width: 991px) {
    .footer-logo {
        width: 200px;
    }

    .footer-heading {
        font-size: 20px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .contact-list li {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .contact-list i {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 8px;
    }

        .footer-bottom a {
            font-size: 10px;
        }

    .footer-links li {
        margin-bottom: 4px;
    }
}

@media (max-width: 767px) {
    .social-icons {
        justify-content: center;
    }

    .footer-heading::after {
        left: 0;
        transform: none;
    }
}

.about-heading {
    font-family: "EB Garamond", serif;
    color: #4c433a;
    font-size: 22px;
}

.about-sub-heading {
    color: #4c433a;
    font-size: 16px;
    font-family: Montserrat;
}

.about-img {
    width: 400px;
    height: 250px;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .about-heading {
        font-family: "EB Garamond", serif;
        color: #4c433a;
        font-size: 18px;
    }

    .about-sub-heading {
        color: #4c433a;
        font-size: 12px;
        font-family: Montserrat;
    }

    .about-img {
        width: 300px;
        height: 180px;
        border-radius: 15px;
    }
}

/* =========================
   Timeline Wrapper
========================= */
.timeline-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 100px;
}



/* =========================
   Dot + Year — Desktop: dot on top, year below (column)
========================= */
.timeline-top {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: #4e433c;
    border-radius: 50%;
    display: block;
    margin-bottom: 14px;
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

/* =========================
   Typography
========================= */
.timeline-year {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    color: #4e433c;
    margin-bottom: 4px;
}

.timeline-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 500;
    color: #4e433c;
    margin-bottom: 10px;
    margin-top: 0;
}

.timeline-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.8;
    color: #7a7069;
    max-width: 280px;
    margin: 0;
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .timeline-title {
        font-size: 16px;
    }

    .timeline-desc {
        font-size: 12px;
    }

    .timeline-wrapper {
        gap: 0px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
    .timeline-wrapper {
        flex-direction: column;
        gap: 32px;
    }

        .timeline-wrapper::before {
            display: none;
        }

    /* Dot + Year side by side on mobile */
    .timeline-top {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        margin-bottom: 8px;
    }

    .timeline-dot {
        margin-bottom: 0;
        width: 10px;
        height: 10px;
    }

    .timeline-year {
        margin-bottom: 0;
        font-size: 18px;
    }

    .timeline-title {
        font-size: 16px;
        margin-bottom: 6px;
        padding-left: 26px;
    }

    .timeline-desc {
        padding-left: 26px;
        max-width: 100%;
        font-size: 11px;
    }
}

.vision-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vision-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 12px;
    object-fit: contain;
}

.stats-section {
    position: relative;
    padding: 30px 0;
}

    .stats-section::before,
    .stats-section::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 1px;
        background: #e5dfda;
    }

    .stats-section::before {
        top: 0;
    }

    .stats-section::after {
        bottom: 0;
    }

.stats-number {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 600;
    color: #4e433c;
    line-height: 1;
    margin-bottom: 10px;
}

.stats-label {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #7a7069;
    margin: 0;
}

@media (max-width: 767px) {
    .stats-section {
        padding: 20px 0;
    }

    .stats-number {
        font-size: 30px;
    }

    .stats-label {
        font-size: 8px;
    }
}

.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .expertise-item img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        margin-top: 3px;
    }

    .expertise-item p {
        font-family: "Montserrat", sans-serif;
        font-size: 14px;
        line-height: 1.5;
        color: #7a7069;
        margin: 0;
    }

@media (max-width: 991px) {
    .expertise-item p {
        font-family: "Montserrat", sans-serif;
        font-size: 12px;
        line-height: 1.5;
        color: #7a7069;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .expertise-item p {
        font-family: "Montserrat", sans-serif;
        font-size: 11px;
        line-height: 1.5;
        color: #7a7069;
        margin: 0;
    }
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 300px;
    cursor: pointer;
}

    .service-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .service-card:hover img {
        transform: scale(1.05);
    }

    .service-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0) 100% );
    }

.service-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
}

    .service-overlay small {
        display: block;
        font-size: 10px;
        letter-spacing: 1.5px;
        opacity: 0.8;
        margin-bottom: 4px;
        text-transform: uppercase;
    }

    .service-overlay h5 {
        margin: 0;
        font-size: 22px;
        font-weight: 400;
        font-family: "Cormorant Garamond", serif;
    }

@media (max-width: 1024px) {
    .service-card {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .service-card {
        height: 180px;
    }

    .service-overlay h5 {
        font-size: 18px;
    }
}

.service-detail-camera-img {
    width: 100%;
    border-radius: 10px;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #64584d;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.automation-brand-img {
    width: 100px;
}

@media (max-width: 767px) {
    .automation-brand-img {
        width: 60px;
    }
}

.gallery-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-slider-track {
    display: flex;
    gap: 15px;
    width: max-content;
    animation: galleryScroll 22s linear infinite;
}

.gallery-card {
    flex: 0 0 auto;
}

    .gallery-card img {
        width: 300px;
        height: 180px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

@keyframes galleryScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.gallery-slider-wrapper:hover .gallery-slider-track {
    animation-play-state: paused;
}

@media (max-width: 991.98px) {
    .gallery-card img {
        width: 240px;
        height: 150px;
    }

    .gallery-slider-track {
        gap: 12px;
        animation-duration: 20s;
    }
}

@media (max-width: 767.98px) {
    .gallery-card img {
        width: 180px;
        height: 120px;
        border-radius: 14px;
    }

    .gallery-slider-track {
        gap: 10px;
        animation-duration: 16s;
    }
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #d4ccc5;
    color: #6d6259;
    padding: 10px 28px;
    border-radius: 30px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .filter-btn.active,
    .filter-btn:hover {
        background: #6d6259;
        color: #fff;
        border-color: #6d6259;
    }

    .filter-btn:focus {
        outline: none;
    }


@media (max-width: 991px) {
    .gallery-filters {
        gap: 10px;
    }
}

@media (max-width: 767px) {
    .gallery-filters {
        gap: 6px;
    }


    .filter-btn {
        font-size: 12px;
        padding: 8px 18px;
    }
}

.atmos-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
    height:350px;
}

    .atmos-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 24px;
    }

.atmos-card-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient( to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.05) 100% );
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.atmos-card-title {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
}

.atmos-card-description {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Desktop Hover */
.atmos-card:hover .atmos-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Click State */
.atmos-card.atmos-active .atmos-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {

    .atmos-card-overlay {
        padding: 10px;
    }

    .atmos-card-title {
        font-size: 14px;
    }

    .atmos-card-description {
        font-size: 10px;
    }
}
@media(max-width: 1024px){
    .atmos-card{
        height:180px;
    }
}
@media (max-width: 767px) {

    .atmos-card,
    .atmos-card img {
        border-radius: 12px;
        height:180px;
    }

    .atmos-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .atmos-card-description {
        font-size: 10px;
    }
}

.custom-input {
    background: #f5f3f1;
    border: none;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #6d6259;
    box-shadow: none !important;
}

    .custom-input::placeholder {
        color: #c9c0b9;
    }

    .custom-input:focus {
        background: #f5f3f1;
    }

.map-container {
    overflow: hidden;
    border-radius: 14px;
}

    .map-container iframe {
        display: block;
        border-radius: 14px;
    }

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

    .detail-item i {
        color: #5d5148;
        margin-top: 5px;
    }

    .detail-item h6 {
        font-family: "Inter", sans-serif;
        font-weight: 600;
        margin-bottom: 4px;
        color: #4d4138;
    }

.business-hours-heading {
    letter-spacing: 2px;
    font-family: "Inter", sans-serif;
}

.subscribe-input {
    background: #fff;
    border: none;
    border-radius: 6px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #6d6259;
    box-shadow: none !important;
}

    .subscribe-input:focus {
        background: #fff;
    }

.getAQuote-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff1a;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.getAQuote-img {
    width: 100%;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .custom-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 5px;
    }

        .custom-list li::before {
            content: "–";
            margin-right: 5px;
        }


.error-message {
    color: red;
    font-size: 12px;
}
