body {
    font-family: "Lato", sans-serif;
    font-weight: 400;

}

p {
    font-size: 19px;
    line-height: 26px;
}


.card-01 {
    min-height: 210px;

}


/* top bar */

.topbar {
    background: #c6a96b;
    color: #000;
    padding: 5px 0;
    font-weight: 600;
    font-size: 17px;
    text-align: center;
}

/* navbar */

.navbar {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar-nav .nav-link {
    color: #d4b87a;
    font-weight: 600;
    font-size: 17px;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        color: #333;
        margin-left: 0;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar-toggler {
        background: rgba(255, 255, 255, 0.8);
    }
}

/* hero */

.hero {
    background: url(../images/slider.jpg) top/cover no-repeat;
    height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 38%);
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1.5s ease;
}

.hero-title {
    color: #d4b87a;
    font-size: 52px;
    font-weight: 500;
    animation: zoomIn 1.5s ease;
}

.hero-content h1 {
    font-size: 70px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;

}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-content h1 {
        font-size: 40px;
    }
}

.btn-gold {
    background: #c6a96b;
    border: none;
    padding: 12px 28px;
}

.btn-gold:hover {
    background: #b79656;
}

@keyframes fadeUp {

    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes zoomIn {

    0% {
        transform: scale(.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }

}

/* inner hero */
.inner-hero {
    background: url(../images/ineer.jpg) center top / cover no-repeat;
    height: 522px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-hero .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 45%);
    top: 0;
    left: 0;
}

.inner-hero .hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease;
}

.inner-hero .hero-title {
    color: #d4b87a;
    font-size: 52px;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    margin: 0;
    animation: zoomIn 1.5s ease;
}

.check-list {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 500;
    color: var(--text);
}

.check-list li::before {
    content: '✔';
    color: #2f6f6d;
    font-size: 19px;
    flex-shrink: 0;
}

.check-list01 {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.check-list01 li {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.check-list01 li:last-child {
    border-bottom: none;
}

.check-list01 li::before {
    content: '✔';
    color: #2f6f6d;
    font-size: 19px;
    flex-shrink: 0;
}

/* button */

.btn-gold {
    background: #c6a96b;
    border: none;
    font-weight: 600;
    font-size: 17px;
    padding: 12px 25px;
    border-radius: 43px;
}

/* about */

.about {
    padding: 80px 0;
}

.about h1 {
    font-size: 36px;
    font-family: "Playfair Display", serif;
    font-weight: 400;
    color: #3B3A3B;
    font-size: 53px;
}

/* services */

.services {
    background: #2e6b69;
    color: #fff;
    padding: 80px 0;
}

.services h2 {
    font-family: "Playfair Display", serif;
    color: #fff;
    font-size: 54px;
    font-weight: 400;
}

.service-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 6px;
    transition: all .35s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card h5 {
    font-family: "Playfair Display", serif;
    color: #2e6b69;
    font-size: 26px;
}

.service-card p {
    color: #000;
    font-size: 18px;
}

.service-card img {
    width: 100%;
    transition: transform .5s ease;
}

.service-img {
    overflow: hidden;
}


/* hover effects */

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* image zoom */

.service-card:hover img {
    transform: scale(1.1);
}

/* button hover */

.service-card .btn {
    margin-top: auto;
    transition: .3s;
}

.service-card:hover .btn {
    background: #b79656;
}

/* subtle top border animation */

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #c6a96b;
    transition: .4s;
}

.service-card:hover::before {
    width: 100%;
}



/* testimonial */

.testimonial-section {
    background: #c6a96b;
    padding: 80px 0;
}

.testimonial-section h2 {
    font-family: "Playfair Display", serif;
    color: #3B3A3B;
    font-size: 54px;
}

.swiper-slide {
    height: auto;
}

.testimonial-card {
    height: 100%;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    margin: auto;
    position: relative;
    border-top: 4px solid #2e6b69;
}

.testimonial-card p {
    font-size: 18px;
    color: #555;
    font-style: italic;
}

.testimonial-card h6 {
    margin-top: 20px;
    font-weight: 600;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    color: #c6a96b;
}

/* footer */

.footer {
    background: #222;
    color: #ddd;
    padding: 50px 0;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer h5 {
    font-family: "Playfair Display", serif;
}


.footer p {
    font-size: 17px;
    line-height: 29px;
}

.copyright {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 10px;
    font-size: 13px;
}

.copyright a {
    color: #aaa;
    text-decoration: none;

}