/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.8s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-primary-outline-0 {
    border: 0;
    color: var(--bs-white) !important;
}

.btn-light-outline-0 {
    border: 0;
    color: var(--bs-primary) !important;
}

.btn-primary-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.btn-light-outline-0:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.sticky-top {
    transition: 0.5s;
    background: var(--bs-white);
}

.topbar {
    padding: 10px 0;
    background: var(--bs-secondary) !important;
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.sticky-top.bg-white .navbar .navbar-nav .nav-link:hover,
.sticky-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: 0.5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: 0.5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .navbar-collapse .border-top {
        border-top: none !important;
    }
}

#searchModal .modal-content {
    background: rgba(250, 250, 250, 0.6);
}
/*** Navbar End ***/

/*** Carousel Start ***/
.carousel-item {
    position: relative;
    min-height: 100vh;
}

.carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.5)
    );
    background-size: cover;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 0;
}

.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
    background: transparent;
}

#carouselId .carousel-indicators {
    padding-bottom: 30px;
}

#carouselId .carousel-indicators li {
    border-top: 10px solid var(--bs-white);
    border-bottom: 10px solid var(--bs-white);
    border-right: 5px solid var(--bs-white);
    border-left: 5px solid var(--bs-white);
    margin-right: 10px;
    border-radius: 10px;
    transition: 0.5s;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    border-right: 15px solid var(--bs-primary);
    border-left: 15px solid var(--bs-primary);
}
/*** Carousel End ***/

.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Services Start ***/
.services .services-item {
    transition: 0.5s;
}

.services .services-item:hover {
    background: var(--bs-primary) !important;
    border-color: var(--bs-secondary) !important;
}

.services .services-item:hover .services-content p,
.services .services-item:hover .services-content h3 {
    color: var(--bs-white);
    transition: 0.5s;
}

.services .services-item:hover .services-content a.btn {
    background: var(--bs-white);
    color: var(--bs-primary) !important;
}

.services .services-item:hover .services-content a.btn:hover {
    color: var(--bs-white) !important;
}

.services .services-item .services-img {
    overflow: hidden;
}

.services .services-item .services-img img {
    transition: 0.5s;
}

.services .services-item .services-img img:hover {
    transform: scale(1.3);
}

/* === SERVICES STYLE VERSION 2 ONLY === */
.services-v2 .service-card {
    border: none;
    border-radius: 8px;
    background: #fff;
    padding: 20px;
    text-align: left;
    transition: 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.services-v2 .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.services-v2 img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.services-v2 h4 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.services-v2 p {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
}

.services-v2 .btn-more {
    background: #b5345f !important;
    border: none;
    border-radius: 30px;
    padding: 8px 22px;
    color: #fff !important;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
}

.services-v2 .btn-more:hover {
    opacity: 0.8;
}

/* ================================================================================================================================= */
/* HERO SECTION */
.hero-header {
    width: 100%;
    height: 180px;
    background-image: url("/assets/img/header.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

/* FLOWER ICON — naik ke atas */
/* WRAPPER UNTUK OVERLAPPING */
.hero-wrapper {
    width: 100%;
    position: relative;
}

/* HERO BACKGROUND */
.hero-header {
    width: 100%;
    height: 190px;
    background-image: url("/assets/img/header.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
}

/* FLOWER DI ATAS HERO (tidak dipotong section) */
.hero-flower {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95px;
    z-index: 9999; /* pastikan di atas header */
    pointer-events: none;
}

/* Membungkus breadcrumb agar ada garis kiri/kanan */
.breadcrumb-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 20px;
}

/* Garis kiri–kanan */
.breadcrumb-line {
    flex: 1;
    max-width: 110px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb text */
.breadcrumb {
    margin: 0;
    font-size: 17px;
    font-family: "Work Sans", sans-serif;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    white-space: nowrap;
}

/* ================================================================================================================================= */

/* === DIVIDER WRAP === */
.divider-wrap {
    width: 100%;
    max-width: 900px;
    margin: 10px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* garis kiri dan kanan */
.divider-line {
    height: 1px;
    background: #e6e6e6;
    flex: 1;
}

/* ikon tengah */
.divider-icon {
    width: 40px; /* ukuran asli kecil */
    opacity: 0.65; /* seperti desain original */
}

/* hr costomize */
.custom-hr {
    height: 0;
    border: 0;
    display: block;
    outline: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: 8px solid #b5345f;
    width: 100%;
}

/* Responsive tweak */
@media (max-width: 768px) {
    .services-v2 img {
        height: 200px;
    }
}

/* =============================================================================== */
/* WRAPPER */
/* =============================================================================== */

.service-item {
    display: flex;
    align-items: stretch;
    gap: 28px;
    margin-top: 40px; /* atur sesuai kebutuhan */
    margin-bottom: 80px; /* atur sesuai kebutuhan */
}

/* big image column (kiri) */
.img-col-main {
    width: 40%;
    display: block;
}
.img-col-main .big-circle img {
    display: block;
    width: 100%;
    height: auto; /* biarkan image natural men-set height parent */
    object-fit: cover;
    border-radius: 20px;
}

/* mini column (kanan) */
/* gunakan flex column + space-between agar item pertama top dan item terakhir bottom */
.img-col-mini {
    width: 12%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* <--- kunci: first=top, last=bottom */
    align-items: stretch;
    gap: 0; /* matikan gap jika ada */
    box-sizing: border-box;
}

/* hapus margin-bottom yang mengganggu */
.img-col-mini .mb-20 {
    margin-bottom: 0 !important;
}

/* setiap box kecil jangan paksa flex:1 — biarkan ukurannya natural
     space-between akan menaruh first di atas, last di bawah, tengah di tengah */
.img-col-mini .news-item {
    flex: 0 0 auto; /* jangan stretch tiap mini item */
}

/* gambar kecil mengisi kotak masing-masing */
.img-col-mini .small-circle {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
}
.img-col-mini .small-circle img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* RESPONSIVE: saat mobile susun jadi kolom */
@media (max-width: 992px) {
    .service-item {
        flex-direction: column;
        gap: 10px;
    }
    .img-col-main,
    .img-col-mini,
    .service-info {
        width: 100%;
    }
    .img-col-mini {
        flex-direction: row;
        justify-content: center;
    }
    .img-col-mini .news-item {
        flex: none;
        width: 30%;
    }
}

/* ========================================================================================================================================================================================
   PRICE BOX / BADGE BUTTONS
   ======================================================================================================================================================================================= */
.price-box {
    position: absolute;
    right: 0;
    top: 50%; /* tengah secara vertikal */
    transform: translateY(-50%);
    display: flex;
    gap: 8px; /* jarak antar tombol */
    align-items: center; /* tombol sejajar rapi */
}

/* ----- DISCOUNT BADGE ----- */
.price-box .discount {
    padding: 4px 10px; /* diperkecil */
    border-radius: 4px;
    font-size: 13px; /* diperkecil */
    border: 1px solid transparent;
    display: inline-block;
    line-height: 1;
    transition: all 0.25s ease-in-out;
}

/* Default (pink) */
.price-box .discount:not(.green):not(.pink) {
    background: #f7c9d3;
    color: #b25e79;
    border-color: #f7c9d3;
}

.price-box .discount.green {
    background: #d0e5d0;
    color: #5a8b5c;
    border-color: #d0e5d0;
}

.price-box .discount.pink {
    background: #f7c9d3;
    color: #b25e79;
    border-color: #f7c9d3;
}

/* Hover outline */
.price-box .discount:hover {
    background: transparent !important;
    color: inherit;
    border-color: currentColor;
}

/* ----- PRICE BUTTON ----- */
.price-box .price {
    display: inline-block;
    padding: 4px 12px; /* lebih kecil */
    border-radius: 4px;
    font-size: 13px; /* match tombol lainnya */
    line-height: 1;
    background: #7ebb88;
    color: #fff;
    font-weight: 600;
    border: 1px solid #7ebb88;
    transition: all 0.25s ease-in-out;
}

/* Hover outline */
.price-box .price:hover {
    background: transparent;
    color: #7ebb88;
}

/* Column layout */
.price-box-column {
    display: flex;
    flex-direction: column;
    gap: 2px; /* gap lebih kecil */
}
/* ============================================================================== PRICE BOX / BADGE BUTTONS ========================================================================== */

/* ============================================================================== HEADER ========================================================================== */
.service-header {
    text-align: center;
    padding-top: 70px;
}

.service-header h2 {
    font-size: 42px;
    font-family: "Playfair Display", serif;
    color: #b5345f;
}

.service-header h4 {
    margin-top: -10px;
    color: #c6c6c6;
    font-family: "Playfair Display", serif;
}

.service-header .desc {
    max-width: 760px;
    margin: 20px auto;
    color: #8b8b8b;
    line-height: 1.7;
}

.service-menu li {
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.service-menu li.active {
    background: #b5345f;
    color: white;
}

.service-menu li {
    display: inline-block;
    margin: 0 10px;
    color: #b6b6b6;
    cursor: pointer;
    font-size: 14px;
}

.service-menu li.active {
    color: #ffffff;
}

.hr-line {
    margin: 40px auto 60px;
}

.hr-line img {
    width: 140px;
    opacity: 0.6;
}

/* ===== RIGHT CONTENT ===== */
.right-col {
    width: 48%;
}

.right-col h3 {
    font-size: 26px;
    color: #b5345f;
    margin-bottom: 20px;
}

.right-col .text {
    color: #888;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ===== LIST ===== */
.service-list {
    padding-right: 200px; /* ruang untuk tombol */
    margin-bottom: 18px;
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 15px;
}

.service-list li:before {
    content: "○";
    position: absolute;
    left: 0;
    top: 1px;
    color: #9ac59b;
}

.service-list .title {
    color: #777;
}

/* ===== BUTTONS ===== */
.buttons {
    float: right;
}

.save-btn {
    background: #f7bfd0;
    padding: 4px 14px;
    border-radius: 4px;
    color: #c86a74;
    margin-right: 8px;
    font-size: 13px;
    transition: 0.25s;
}

.price-btn {
    background: #6dbc7a;
    color: white;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 13px;
    transition: 0.25s;
}

/* hover effects */
.save-btn:hover {
    background: #dfa1b7;
}

.price-btn:hover {
    background: #4a9e5e;
}
/* ======================================================================================================================================== */
/*** Services End ***/

/*** About Start ***/
/*** Youtube Video start ***/
.video {
    position: relative;
    padding-right: 70px;
    padding-bottom: 70px;
    border-radius: 10px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
    margin-left: -35px;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** About End ***/

/*** Appointment  Start ***/
/* .appointment {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */

.appointment .appointment-form {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    object-fit: cover;
    border-radius: 10px;
}

.appointment .appointment-time {
    background: linear-gradient(
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.2)
    );
    object-fit: cover;
    border-radius: 10px;
}
/*** Appointment End ***/

/*** Counter Start ***/
.counter-section .counter-item .counter-content {
    position: relative;
    margin-bottom: 60px;
    background-image: linear-gradient(
        rgba(252, 152, 195, 0.3),
        rgba(255, 255, 255, 0.3),
        rgba(136, 76, 210, 0.3)
    );
    border-radius: 10px;
    z-index: 9;
}

.counter-section .counter-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.5) !important;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    object-fit: cover;
    border-radius: 0 25% 0 25%;
}

.counter-section .counter-item .counter-content .svg-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -50px;
    margin-left: -45px;
    transform: rotate(180deg);
}

.counter-section .counter-item .counter-quantity {
    width: 110px;
    height: 110px;
    border-radius: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}
/*** Counter End ***/

/*** Events Start ***/
.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}
/*** Events End ***/

/*** Pricing Start ***/
/* .pricing {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */

.pricing .pricing-item {
    color: var(--bs-white);
}

.pricing .pricing-item .pricing-content {
    background: rgba(255, 255, 255, 0.4);
}

.pricing .owl-carousel.pricing-carousel {
    position: relative;
}

.pricing .owl-carousel.pricing-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.pricing .owl-carousel.pricing-carousel .owl-nav .owl-prev:hover,
.pricing .owl-carousel.pricing-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** Pricing End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.team .team-item .team-text {
    background: var(--bs-primary);
}

.team .team-item .team-social {
    position: absolute;
    top: -180px;
    left: 20px;
    opacity: 0;
    transition: 0.5s;
}

.team .team-item:hover .team-social {
    top: 20px;
    left: 20px;
    opacity: 1;
}

.team .team-item .team-img {
    position: relative;
    width: 100%;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.team .team-item:hover .team-img::after {
    bottom: 0;
    height: 100%;
}

.team .team-item .team-text {
    transition: 0.5s;
}

.team .team-item:hover .team-text {
    background: var(--bs-secondary);
}
/*** Team End ***/

/*** testimonial Start ***/
/* .testimonial {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../img/testimonial-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} */

.testimonial .testimonial-item {
    background: rgba(0, 0, 0, 0.4);
}

.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-white);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-primary);
}
/*** testimonial end ***/

/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url(../img/appointment-background.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact .contact-form {
    background: rgba(255, 255, 255, 0.6);
}
/*** Contact End ***/

/*** footer start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a,
.footer .footer-item p {
    color: var(--bs-white);
    line-height: 40px;
    font-size: 17px;
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/
