* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: "Avenir", sans-serif;
}

.container {
    width: 100%;
    max-width: 1440px;
    background: #fff;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: "Gilroy";
    src: url("./Fonts/Gilroy-Light.otf") format("opentype");
    font-weight: 400;
}

.heading,
h1,
h2,
h3,
h4 {
    font-family: Gilroy;
}


/* ================= HEADER ================= */

.navbar {
    width: 100%;
    height: 98px;
    background: #f5f2eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
}


/* Hamburger */

.menu-icon {
    width: 50px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
    margin: 9px 0;
    transition: 0.3s;
}

.menu-icon span:nth-child(2) {
    width: 70%;
}

.menu-icon span:nth-child(3) {
    width: 50%;
}


/* Logo */

.logo {
    text-align: center;
    img {
        width: 229px;
        height: 29px;
    }
    p {
        font-size: 12.7px;
        letter-spacing: 2px;
        color: #333;
        padding-top: 8px;
    }
}


/* Contact */

.contact {
    font-size: 14.8px;
    color: #222;
    cursor: pointer;
    letter-spacing: 1px;
}

.menu-icon {
    cursor: pointer;
}

@media (max-width: 576px) {
    .logo {
        img {
            width: 190px;
            height: 26px;
        }
        p {
            display: none;
        }
    }
}


/* Overlay */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 999;
}


/* Sidebar */

.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100vh;
    background: #03172d;
    padding: 30px;
    z-index: 1000;
    transition: .4s ease;
    display: flex;
    flex-direction: column;
    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        .sidebar-logo {
            h1 {
                color: #fff;
                font-size: 34px;
                font-weight: 300;
                letter-spacing: 4px;
            }
            p {
                color: #c7b79e;
                font-size: 11px;
                letter-spacing: 2px;
            }
        }
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 35px;
            cursor: pointer;
        }
    }
    .sidebar-menu {
        margin-top: 70px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        a {
            text-decoration: none;
            color: white;
            font-size: 22px;
            font-weight: 300;
            transition: .3s;
            &:hover {
                color: #c7b79e;
                transform: translateX(10px);
            }
        }
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        left: -100%;
    }
}


/* Active State */

.sidebar.active {
    left: 0;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ================= Navbar ================= */

@media(max-width:768px) {
    .navbar {
        padding: 0 20px;
        height: 80px;
    }
    .logo h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
    .logo p {
        font-size: 9px;
    }
}


/* ================= HERO ================= */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}


/* Video */

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Hero Content */

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media(max-width:576px) {
    .hero {
        height: 50vh;
    }
}


/* ================= ABOUT SECTION ================= */

.about-section {
    width: 100%;
    background: rgb(245, 242, 235);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0px 80px 68px;
    gap: 14px;
}


/* Left Content */

.about-content {
    /* width: 48%; */
    height: 670px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-content h4 {
    font-size: 30.2px;
    font-weight: 300;
    line-height: 1.2;
    color: #b8ae9d;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.about-content h1 {
    font-size: 58px;
    font-weight: 300;
    color: #0d1a27;
    margin-bottom: 73px;
    line-height: 1.1;
}

.about-content p {
    font-family: Avenir;
    font-size: 18.1px;
    line-height: 1.9;
    color: #3e3e3e;
    max-width: 650px;
    margin-bottom: 114px;
}


/* Learn More */

.learn-more {
    text-decoration: none;
    font-size: 23.4px;
    color: #0d1a27;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.learn-more span {
    color: #b7ab9b;
    font-size: 35px;
}

.learn-more:hover {
    transform: translateX(10px);
}


/* Right Image */

.about-image {
    width: 670px;
    height: 677px;
    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
        display: block;
        /* Animation Initial State */
        opacity: 0;
        transform: translateX(100px);
        transition: all 1s ease;
    }
}


/* Active Animation */

.about-image.show img {
    opacity: 1;
    transform: translateX(0);
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 60px 25px;
    }
    .about-content,
    .about-image {
        width: 100%;
        height: auto;
        img {
            border-radius: 12px;
        }
    }
    .about-content h4 {
        font-size: 22px;
    }
    .about-content h1 {
        font-size: 52px;
    }
    .about-content p {
        font-size: 18px;
        margin-bottom: 60px;
    }
}

@media(max-width: 576px) {
    .about-content h1 {
        font-size: 42px;
    }
    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }
    .learn-more {
        font-size: 22px;
    }
}


/* ================= OUR STORY ================= */

.story-section {
    width: 100%;
    background: #0d1a27;
    padding: 90px 30px 70px;
    text-align: center;
    .story-header {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        margin-bottom: 35px;
        .line {
            width: 160px;
            height: 1px;
            background: rgba(199, 183, 158, 0.8);
        }
        h2 {
            font-size: 57px;
            font-weight: 300;
            color: #b8ae9d;
            line-height: 1;
        }
    }
    .story-text {
        max-width: 850px;
        margin: auto;
        font-family: Avenir;
        color: #f5f2eb;
        font-size: 17.6px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    .about-link {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        color: #b8ae9d;
        font-size: 23.4px;
        margin-bottom: 50px;
        margin-top: 0;
        transition: 0.3s;
        span {
            font-size: 24px;
        }
        &:hover {
            transform: translateX(8px);
        }
    }
    .story-cards {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 12px;
        .story-card {
            opacity: 0;
            transition: all 1s ease;
            img {
                width: 100%;
                display: block;
                border-radius: 10px;
                object-fit: cover;
            }
            h3 {
                margin-top: 28px;
                color: #b8ae9d;
                font-family: Avenir;
                font-size: 18px;
                font-weight: 300;
            }
        }
        /* Left Card */
        .card-1 {
            width: 413px;
            transform: translateX(-120px);
            img {
                height: 517px;
            }
        }
        /* Center Card */
        .card-2 {
            width: 413px;
            transform: translateY(120px);
            img {
                height: 505px;
            }
        }
        /* Right Card */
        .card-3 {
            width: 413px;
            transform: translateX(120px);
            img {
                height: 517px;
            }
        }
        /* Active Animation */
        .story-card.show {
            opacity: 1;
        }
        .card-1.show {
            transform: translateX(0);
        }
        .card-2.show {
            transform: translateY(0);
        }
        .card-3.show {
            transform: translateX(0);
        }
        /* Delays */
        .card-1.show,
        .card-2.show,
        .card-3.show {
            opacity: 1;
            transform: translate(0, 0);
        }
    }
}


/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .story-section {
        .story-header {
            h2 {
                font-size: 48px;
            }
            .line {
                width: 90px;
            }
        }
        .about-link {
            margin-top: 20px;
            margin-bottom: 0;
        }
        .story-cards {
            flex-direction: column;
            align-items: center;
            gap: 30px;
            .card-2 {
                margin-top: 0;
            }
        }
    }
}

@media (max-width: 576px) {
    .story-section {
        padding: 70px 20px;
        .story-header {
            gap: 15px;
            h2 {
                font-size: 34px;
            }
            .line {
                width: 50px;
            }
        }
        .story-text {
            font-size: 15px;
        }
        .story-cards {
            .story-card {
                width: 100% !important;
                img {
                    height: 280px !important;
                }
                h3 {
                    font-size: 16px;
                }
            }
        }
    }
}


/* ================= STATS SECTION ================= */

.stats-section {
    width: 100%;
    padding: 63px 90px 74px;
    background: #c9c1b4;
    background-image: linear-gradient(rgb(173 161 142 / 90%)), url(bg-img.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    .stats-container {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 50px;
        position: relative;
        z-index: 2;
        .stat-box {
            text-align: center;
            color: #f5f2eb;
            h1 {
                font-size: 70.2px;
                font-weight: 200;
                line-height: 1;
                margin-bottom: 18px;
            }
            p {
                font-size: 16.5px;
                font-family: Avenir;
                line-height: 1.4;
                color: #f5f5f5;
                font-weight: 300;
                letter-spacing: 1px;
            }
        }
    }
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .stats-section {
        .stats-container {
            flex-direction: column;
            gap: 70px;
            .stat-box {
                h1 {
                    font-size: 90px;
                }
                p {
                    font-size: 20px;
                }
            }
        }
    }
}

@media(max-width: 576px) {
    .stats-section {
        padding: 70px 25px;
        .stats-container {
            .stat-box {
                h1 {
                    font-size: 65px;
                }
                p {
                    font-size: 17px;
                }
            }
        }
    }
}


/* ================= VALUES SECTION ================= */

.values-section {
    width: 100%;
    background: #f5f2eb;
    padding: 90px 40px;
    .values-header {
        text-align: center;
        max-width: 1000px;
        margin: auto;
        h2 {
            font-size: 57px;
            font-weight: 300;
            color: #0d1a27;
            margin-bottom: 25px;
        }
        p {
            font-size: 18.1px;
            line-height: 1.9;
            color: #3c3c3c;
            font-family: Avenir;
            max-width: 900px;
            margin: auto;
        }
    }
    .values-cards {
        margin-top: 60px;
        display: flex;
        justify-content: center;
        gap: 15px;
        .value-card {
            width: 20%;
            height: 656px;
            position: relative;
            overflow: hidden;
            border-radius: 10px 10px 0 0;
            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                filter: grayscale(100%);
                transition: .4s;
            }
            .overlay {
                position: absolute;
                inset: 0;
                background: linear-gradient( to top, rgba(0, 0, 0, .85), rgba(0, 0, 0, .15));
            }
            .card-content {
                position: absolute;
                inset: 0;
                padding: 52px 24px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                h3 {
                    color: white;
                    font-size: 20px;
                    font-weight: 300;
                    line-height: 1.3;
                }
                p {
                    color: white;
                    font-size: 16px;
                    line-height: 1.5;
                }
            }
            &:hover {
                img {
                    transform: scale(1.08);
                }
            }
        }
    }
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .values-section {
        .values-header {
            h2 {
                font-size: 48px;
            }
        }
        .values-cards {
            flex-wrap: wrap;
            .value-card {
                width: calc(50% - 10px);
            }
        }
    }
}

@media(max-width: 576px) {
    .values-section {
        padding: 70px 20px;
        .values-header {
            h2 {
                font-size: 36px;
            }
            p {
                font-size: 15px;
            }
        }
        .values-cards {
            .value-card {
                width: 100%;
                height: 380px;
            }
        }
    }
}


/* ================= PROJECT SECTION ================= */

.project-section {
    width: 100%;
    background: #f8f8f8;
    padding: 85px 0;
    .project-container {
        max-width: 1100px;
        margin: auto;
        text-align: center;
        /* Heading */
        h1 {
            font-size: 64px;
            font-weight: 300;
            color: #6d5130;
            letter-spacing: 3px;
            margin-bottom: 55px;
        }
        /* Description */
        p {
            font-size: 20px;
            line-height: 1.9;
            color: #1f2732;
            max-width: 1050px;
            margin: auto;
            font-weight: 300;
        }
        /* Button */
        .project-btn {
            margin-top: 65px;
            display: inline-flex;
            align-items: center;
            gap: 18px;
            text-decoration: none;
            color: #1f2732;
            font-size: 24px;
            font-weight: 300;
            transition: 0.3s;
            span {
                color: #b6a68e;
                font-size: 42px;
            }
            &:hover {
                transform: translateX(10px);
            }
        }
    }
    .project-slider {
        margin-top: 70px;
        .slider-track {
            display: flex;
            gap: 31px;
            padding: 0 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding-bottom: 15px;
            /* Hide scrollbar */
            &::-webkit-scrollbar {
                display: none;
            }
            scrollbar-width: none;
        }
        .project-card {
            min-width: 835px;
            flex-shrink: 0;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            img {
                width: 100%;
                height: 531px;
                object-fit: cover;
                display: block;
            }
            .project-info {
                padding: 29px 28px;
                text-align: left;
                background: #f5f2eb;
                h3 {
                    font-size: 22px;
                    font-weight: 400;
                    margin-bottom: 10px;
                    color: #0d1a27;
                }
                p {
                    font-size: 13px;
                    color: #0d1a27;
                    margin-bottom: 14px;
                }
                /* span {
                    font-size: 14px;
                    color: #888;
                } */
                .location {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    font-size: 13px;
                    color: #0d1a27;
                    font-family: Avenir;
                }
                .location img {
                    width: 20px;
                    height: 34px;
                    object-fit: contain;
                }
            }
        }
    }
    @media(max-width:768px) {
        .project-slider {
            .project-card {
                min-width: 90%;
            }
        }
    }
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .project-section {
        .project-container {
            h1 {
                font-size: 60px;
            }
            p {
                font-size: 22px;
                line-height: 1.7;
            }
            .project-btn {
                font-size: 28px;
                span {
                    font-size: 34px;
                }
            }
        }
    }
}

@media(max-width: 576px) {
    .project-section {
        padding: 80px 0 40px;
        .project-container {
            padding: 0 20px;
            h1 {
                font-size: 40px;
                margin-bottom: 35px;
            }
            p {
                font-size: 18px;
                line-height: 1.7;
            }
            .project-btn {
                margin-top: 45px;
                font-size: 22px;
                gap: 10px;
                span {
                    font-size: 28px;
                }
            }
        }
        .project-slider {
            .slider-track {
                gap: 16px;
                padding: 0 16px;
                overflow-x: hidden;
            }
            .project-card {
                min-width: calc(100vw - 26px);
                max-width: calc(100vw - 26px);
                border-radius: 12px;
                img {
                    height: 250px;
                }
                .project-info {
                    padding: 20px;
                    h3 {
                        font-size: 18px;
                    }
                    p {
                        font-size: 12px;
                    }
                }
            }
        }
    }
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    width: 100%;
    /* Heading */
    .contact-heading {
        padding: 76px 41px;
        text-align: center;
        h1 {
            font-size: 60px;
            font-weight: 300;
            color: #624A2E;
            letter-spacing: 3px;
        }
    }
    /* Form Container */
    .contact-container {
        width: 100%;
        padding: 80px 120px;
        position: relative;
        overflow: hidden;
        background-image: linear-gradient(rgb(173 161 142 / 90%)), url(bg-img.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        .contact-form {
            position: relative;
            z-index: 2;
            /* Rows */
            .form-row {
                display: flex;
                gap: 40px;
                margin-bottom: 22px;
                .input-box {
                    flex: 1;
                    input,
                    select {
                        width: 100%;
                        height: 57px;
                        background: rgba(98, 74, 46, 0.38);
                        backdrop-filter: blur(3px);
                        -webkit-backdrop-filter: blur(3px);
                        border: 1px solid rgba(255, 255, 255, 0.25);
                        outline: none;
                        padding: 0 22px;
                        color: #fff;
                        font-size: 15.4px;
                        font-weight: 300;
                        font-family: 'Public Sans', sans-serif;
                    }
                    input::placeholder,
                    textarea::placeholder {
                        color: rgba(255, 255, 255, 0.9);
                    }
                    select {
                        appearance: none;
                        cursor: pointer;
                    }
                    .input-box {
                        flex: 1;
                        position: relative;
                    }
                }
            }
            /* Message */
            .message-box {
                margin-bottom: 22px;
                font-family: 'Public Sans';
                textarea {
                    width: 100%;
                    height: 180px;
                    resize: none;
                    background: rgba(98, 74, 46, 0.38);
                    backdrop-filter: blur(3px);
                    -webkit-backdrop-filter: blur(3px);
                    border: 1px solid rgba(255, 255, 255, 0.25);
                    outline: none;
                    padding: 22px;
                    color: #fff;
                    font-size: 15.4px;
                    font-weight: 300;
                    font-family: 'Public Sans';
                }
                textarea::placeholder {
                    color: rgba(255, 255, 255, 0.9);
                }
            }
            .submit-btn {
                width: 100%;
                height: 57px;
                background: rgba(98, 74, 46, 0.38);
                backdrop-filter: blur(3px);
                -webkit-backdrop-filter: blur(3px);
                border: none;
                color: #fff;
                font-size: 16px;
                font-weight: 400;
                letter-spacing: 1px;
                cursor: pointer;
                transition: .3s ease;
                text-transform: uppercase;
                font-family: 'Public Sans', sans-serif;
            }
            .submit-btn:hover {
                background: #4e3921;
                /* color: #624A2E; */
            }
        }
    }
}

.select-box {
    position: relative;
    i {
        position: absolute;
        right: 20px;
        top: 50%;
        translate: 0 -50%;
        font-size: 24px;
        color: #fff;
        pointer-events: none;
    }
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .contact-section {
        .contact-heading {
            h1 {
                font-size: 60px;
            }
        }
        .contact-container {
            padding: 60px 40px;
            .contact-form {
                .form-row {
                    flex-direction: column;
                    gap: 22px;
                }
            }
        }
    }
}

@media(max-width: 576px) {
    .contact-section {
        .contact-heading {
            padding: 40px 15px;
            h1 {
                font-size: 30px;
            }
        }
        .contact-container {
            padding: 40px 20px;
            .contact-form {
                .form-row {
                    .input-box {
                        input,
                        select {
                            height: 58px;
                            font-size: 18px;
                        }
                    }
                }
                .message-box {
                    textarea {
                        height: 140px;
                        font-size: 18px;
                    }
                }
            }
        }
    }
}


/* ================= FOOTER ================= */

.footer {
    width: 100%;
    background: #0d1a27;
    padding: 80px 60px 40px;
    color: #fff;
    .footer-container {
        width: 100%;
    }
    /* ROW */
    .footer-row {
        display: flex;
        justify-content: space-between;
        gap: 50px;
    }
    /* TOP ROW */
    .footer-top {
        align-items: flex-start;
    }
    /* MIDDLE ROW */
    .footer-middle {
        margin-top: 60px;
        align-items: flex-start;
    }
    /* BOX */
    .footer-box {
        h2 {
            font-size: 28.2px;
            font-weight: 300;
            color: #b8ae9d;
            margin-bottom: 35px;
        }
        ul {
            list-style: none;
            li {
                margin-bottom: 12px;
                a {
                    text-decoration: none;
                    color: #fff;
                    font-size: 20px;
                    transition: 0.3s;
                    &:hover {
                        color: #c7b79e;
                    }
                }
            }
        }
        p {
            font-size: 20px;
            line-height: 1.8;
        }
        .mt {
            margin-top: 30px;
        }
    }
    .footer-box {
        h2 {
            font-size: 28px;
            font-weight: 300;
            color: #c7b79e;
            margin-bottom: 35px;
        }
        ul {
            list-style: none;
            li {
                margin-bottom: 12px;
                a {
                    text-decoration: none;
                    color: #fff;
                    font-size: 20px;
                    transition: 0.3s;
                    &:hover {
                        color: #c7b79e;
                    }
                }
            }
        }
        p {
            font-size: 20px;
            line-height: 1.8;
        }
        .mt {
            margin-top: 30px;
        }
    }
    .footer-box.last {
        width: 216px;
    }
    /* LOGO */
    .footer-logo {
        img {
            width: 220px;
            height: auto;
            display: block;
            object-fit: contain;
        }
    }
    /* SOCIAL */
    .social-icons {
        display: flex;
        gap: 18px;
        a {
            width: 48px;
            height: 48px;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: #fff;
            font-size: 20px;
            transition: 0.3s;
            &:hover {
                background: #fff;
                color: #03172d;
            }
        }
    }
    /* BOTTOM */
    .footer-bottom {
        margin-top: 60px;
        text-align: center;
        a {
            text-decoration: none;
            color: #c7b79e;
            font-size: 20.2px;
        }
        p {
            margin-top: 20px;
            color: #c7b79e;
            font-size: 20.2px;
        }
    }
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .footer {
        .footer-row {
            flex-direction: column;
            gap: 60px;
        }
        .footer-logo {
            text-align: left;
            h1 {
                font-size: 52px;
                letter-spacing: 6px;
            }
        }
        .footer-middle {
            margin-top: 60px;
        }
        .footer-bottom {
            margin-top: 60px;
        }
    }
}

@media(max-width: 576px) {
    .footer {
        padding: 60px 25px 30px;
        .footer-box {
            h2 {
                font-size: 24px;
            }
            p,
            a {
                font-size: 17px;
            }
        }
        .footer-logo {
            h1 {
                font-size: 40px;
            }
        }
        .social-icons {
            a {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }
        }
        .footer-bottom {
            a,
            p {
                font-size: 16px;
            }
        }
    }
}


/* Desktop */

.desktop-only {
    display: block;
}

.mobile-only {
    display: none !important;
}


/* Mobile */

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}