 :root {
     --gold: #dfa60b;
     --gold-light: #E4C97E;
     --gold-dark: #9A7A2E;
     --gold-faint: rgba(201, 168, 76, 0.08);
     --black: #0A0A0A;
     --black-soft: #141414;
     --black-card: #1A1A1A;
     --black-border: #2C2C2C;
     --text-main: #F0E8D5;
     --text-muted: #9A9080;
 }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


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

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

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

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

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

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

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 90px !important;
    width: auto;
}

.navbar .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 18px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-yellow);
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 64px !important;
    }

    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-collapse {
        background-color: rgba(10, 10, 10, 0.96);
        margin-top: 8px;
        padding: 0.5rem 1rem 0.75rem;
    }

    .navbar .navbar-nav {
        margin-top: 0;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

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

.content-copy {
    font-size: 1.08rem;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

.content-copy p {
    margin-bottom: 1.2rem;
}

.content-copy p:last-child {
    margin-bottom: 0;
}


/* welcome */
.demo-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10rem 3rem;
}

.demo-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(255, 174, 0); ;
    line-height: 1.1;
}

.demo-hero p {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}
/* welcome end */

/* ── Floating Background Decor ── */
.demo-hero {
    overflow: hidden;
}

.hero-floating {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.hero-floating--1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 174, 0, 0.5), transparent 70%);
    top: 250px;
    left: 100px;
    animation: floatA 14s ease-in-out infinite;
}

.hero-floating--2 {
    width: 350px;
    height: 350px;
    border: 2px solid rgba(255, 174, 0, 0.35);
    bottom: -60px;
    right: -80px;
    animation: floatB 18s ease-in-out infinite;
}

.hero-floating--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 100, 0.4), transparent 70%);
    top: 30%;
    right: 8%;
    animation: floatA 12s ease-in-out infinite reverse;
}

.hero-floating--4 {
    width: 120px;
    height: 120px;
    border: 1.5px solid rgba(255, 174, 0, 0.3);
    bottom: 20%;
    left: 5%;
    animation: floatB 16s ease-in-out infinite 2s;
}

@keyframes floatA {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -40px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes floatB {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-40px, 30px) rotate(5deg);
    }
    50% {
        transform: translate(20px, -50px) rotate(-3deg);
    }
    75% {
        transform: translate(-10px, 20px) rotate(4deg);
    }
}

/* ── Welcome Hero Animations ── */
.demo-hero :is(p, .btn-book) {
    opacity: 0;
    animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.demo-hero .welcome {
    opacity: 0;
    animation: heroFadeDown 0.7s ease forwards;
}

.demo-hero h1 {
    opacity: 0;
    animation: heroScaleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}

.demo-hero p:nth-of-type(1) {
    animation-delay: 0.4s;
}

.demo-hero p:nth-of-type(2) {
    animation-delay: 0.55s;
}

.demo-hero .btn-book {
    animation-delay: 0.7s;
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*Book us now form  */
 /* ── TRIGGER BUTTON ── */
 .btn-book {
     display: inline-flex;
     align-items: center;
     gap: 0.55rem;
     background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
     background-size: 200% 200%;
     color: var(--black);
     font-family: 'Montserrat', sans-serif;
     font-weight: 600;
     font-size: 0.82rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     border: none;
     padding: 1rem 2.6rem;
     border-radius: 0;
     clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
     transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s ease;
     box-shadow: 0 4px 30px rgba(201, 168, 76, 0.3);
     cursor: pointer;
     position: relative;
     overflow: hidden;
 }

 .btn-book::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 100%);
     opacity: 0;
     transition: opacity 0.3s;
 }

 .btn-book:hover {
     background-position: right center;
     transform: translateY(-2px);
     box-shadow: 0 8px 40px rgba(201, 168, 76, 0.45);
 }

 .btn-book:hover::after {
     opacity: 1;
 }

 .btn-book:active {
     transform: translateY(0);
 }

 .btn-book i {
     font-size: 1rem;
 }

 /* ── MODAL ── */
 .modal-dialog {
     max-width: 820px;
 }

 .modal-content {
     background: var(--black-soft);
     border: 1px solid var(--black-border);
     border-radius: 0;
     box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(201, 168, 76, 0.08);
     overflow: hidden;
 }

 /* Golden top bar */
 .modal-content::before {
     content: '';
     display: block;
     height: 3px;
     background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
 }

 .modal-header {
     background: var(--black-card);
     border-bottom: 1px solid var(--black-border);
     padding: 1.6rem 2rem 1.4rem;
     position: relative;
 }

 .modal-header::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 2rem;
     right: 2rem;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--gold), transparent);
     opacity: 0.4;
 }

 .modal-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.7rem;
     font-weight: 700;
     color: var(--gold-light);
     letter-spacing: 0.06em;
     display: flex;
     align-items: center;
     gap: 0.6rem;
 }

.modal-title .modal-title-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}

 .modal-subtitle {
     font-size: 0.72rem;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: var(--text-muted);
     margin-top: 0.15rem;
 }

 .btn-close {
     filter: invert(1) sepia(1) saturate(2) hue-rotate(10deg);
     opacity: 0.5;
     transition: opacity 0.2s, transform 0.2s;
 }

 .btn-close:hover {
     opacity: 1;
     transform: rotate(90deg);
 }

 .modal-body {
     padding: 2rem;
     background: var(--black-soft);
     max-height: 75vh;
     overflow-y: auto;
 }

 /* Custom scrollbar */
 .modal-body::-webkit-scrollbar {
     width: 4px;
 }

 .modal-body::-webkit-scrollbar-track {
     background: var(--black-card);
 }

 .modal-body::-webkit-scrollbar-thumb {
     background: var(--gold-dark);
     border-radius: 2px;
 }

 .modal-footer {
     background: var(--black-card);
     border-top: 1px solid var(--black-border);
     padding: 1.2rem 2rem;
 }

 /* ── SECTION HEADERS ── */
 .section-label {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.22em;
     text-transform: uppercase;
     color: var(--gold);
     margin-bottom: 1.2rem;
     padding-bottom: 0.6rem;
     border-bottom: 1px solid var(--black-border);
     position: relative;
 }

 .section-label::after {
     content: '';
     position: absolute;
     bottom: -1px;
     left: 0;
     width: 40px;
     height: 1px;
     background: var(--gold);
 }

 .section-label i {
     font-size: 0.95rem;
 }

 /* ── FORM FIELDS ── */
 .form-label {
     font-size: 0.75rem;
     font-weight: 500;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--text-muted);
     margin-bottom: 0.4rem;
 }

 .form-label span.req {
     color: var(--gold);
     margin-left: 2px;
 }

 .form-control,
 .form-select {
     background: var(--black-card);
     border: 1px solid var(--black-border);
     color: var(--text-main);
     border-radius: 0;
     font-family: 'Montserrat', sans-serif;
     font-size: 0.88rem;
     padding: 0.7rem 1rem;
     transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
 }

 .form-control::placeholder {
     color: #4A4540;
 }

 .form-control:focus,
 .form-select:focus {
     background: #1F1E1B;
     border-color: var(--gold);
     box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
     color: var(--text-main);
 }

 .form-select option {
     background: var(--black-card);
     color: var(--text-main);
 }

 /* Input group icons */
 .input-group-text {
     background: var(--black-border);
     border: 1px solid var(--black-border);
     border-right: none;
     color: var(--gold);
     border-radius: 0;
     font-size: 0.9rem;
 }

 .input-group .form-control {
     border-left: none;
 }

 .input-group .form-control:focus {
     border-left: none;
 }

 /* Date input — make calendar picker icon white on dark background */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* ── EQUIPMENT GRID ── */
 .equipment-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
     gap: 0.75rem;
 }

 .equip-item {
     background: var(--black-card);
     border: 1px solid var(--black-border);
     padding: 0.9rem 1rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
     transition: border-color 0.2s, background 0.2s, transform 0.15s;
     cursor: pointer;
     position: relative;
     overflow: hidden;
 }

 .equip-item::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     bottom: 0;
     width: 3px;
     background: var(--gold);
     transform: scaleY(0);
     transform-origin: bottom;
     transition: transform 0.25s ease;
 }

 .equip-item:hover {
     border-color: rgba(201, 168, 76, 0.4);
     background: #1F1E1B;
 }

 .equip-item.active {
     border-color: var(--gold);
     background: var(--gold-faint);
 }

 .equip-item.active::before {
     transform: scaleY(1);
 }

.equip-item .form-check-input {
    background-color: var(--black);
    border: 1.5px solid #888;
    border-radius: 0;
    width: 1.1em;
    height: 1.1em;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 0;
}

 .equip-item .form-check-input:checked {
     background-color: var(--gold);
     border-color: var(--gold);
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%230A0A0A' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
 }

 .equip-item .form-check-input:focus {
     box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
     border-color: var(--gold);
 }

 .equip-info {
     flex: 1;
     min-width: 0;
 }

 .equip-name {
     font-size: 0.82rem;
     font-weight: 500;
     color: var(--text-main);
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .equip-icon {
     font-size: 1.1rem;
     color: var(--gold-dark);
 }

 /* Quantity input (hidden until checked) */
 .equip-qty {
     width: 58px;
     display: none;
     flex-shrink: 0;
 }

 .equip-qty .form-control {
     padding: 0.3rem 0.5rem;
     font-size: 0.8rem;
     text-align: center;
     border-color: var(--gold-dark);
 }

 .equip-item.active .equip-qty {
     display: block;
 }

 /* ── PAYMENT SECTION ── */
 .payment-option {
     background: var(--black-card);
     border: 1px solid var(--black-border);
     padding: 1rem 1.2rem;
     display: flex;
     align-items: flex-start;
     gap: 0.8rem;
     cursor: pointer;
     transition: border-color 0.2s, background 0.2s;
 }

 .payment-option:hover {
     border-color: rgba(201, 168, 76, 0.35);
 }

 .payment-option.selected {
     border-color: var(--gold);
     background: var(--gold-faint);
 }

 .payment-option .form-check-input {
     background-color: var(--black);
     border: 1.5px solid var(--black-border);
     width: 1.1em;
     height: 1.1em;
     flex-shrink: 0;
     margin-top: 0.1em;
     cursor: pointer;
     border-radius: 50%;
 }

 .payment-option .form-check-input:checked {
     background-color: var(--gold);
     border-color: var(--gold);
 }

 .payment-option .form-check-input:focus {
     box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
 }

 .payment-label {
     font-size: 0.84rem;
     font-weight: 500;
     color: var(--text-main);
 }

 .payment-desc {
     font-size: 0.73rem;
     color: var(--text-muted);
     margin-top: 0.15rem;
 }

 /* ── NOTICE BANNER ── */
 .notice-banner {
     background: rgba(201, 168, 76, 0.07);
     border-left: 3px solid var(--gold);
     padding: 0.8rem 1rem;
     font-size: 0.78rem;
     color: var(--text-muted);
     display: flex;
     gap: 0.6rem;
     align-items: flex-start;
 }

 .notice-banner i {
     color: var(--gold);
     flex-shrink: 0;
     margin-top: 0.1rem;
 }

 /* ── SUBMIT BUTTON ── */
 .btn-submit {
     background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
     background-size: 200% 200%;
     color: var(--black);
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 0.78rem;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     border: none;
     padding: 0.85rem 2.5rem;
     border-radius: 0;
     clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
     transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.3s;
     box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
 }

 .btn-submit:hover {
     background-position: right center;
     transform: translateY(-1px);
     box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
     color: var(--black);
 }

 .btn-submit:active {
     transform: translateY(0);
 }

 .btn-cancel {
     background: transparent;
     border: 1px solid var(--black-border);
     color: var(--text-muted);
     font-family: 'Montserrat', sans-serif;
     font-size: 0.78rem;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     padding: 0.85rem 1.8rem;
     border-radius: 0;
     transition: border-color 0.2s, color 0.2s;
 }

 .btn-cancel:hover {
     border-color: var(--text-muted);
     color: var(--text-main);
 }

 /* ── SUCCESS MESSAGE ── */
 .booking-success {
     display: none;
     text-align: center;
     padding: 3rem 2rem;
 }

 .success-icon {
     width: 80px;
     height: 80px;
     border: 2px solid var(--gold);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     color: var(--gold);
     margin: 0 auto 1.5rem;
     animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
 }

 @keyframes popIn {
     from {
         transform: scale(0);
         opacity: 0;
     }

     to {
         transform: scale(1);
         opacity: 1;
     }
 }

 .success-title {
     font-family: 'Cormorant Garamond', serif;
     font-size: 2rem;
     font-weight: 700;
     color: var(--gold-light);
     margin-bottom: 0.5rem;
 }

 .success-msg {
     color: var(--text-muted);
     font-size: 0.85rem;
     line-height: 1.7;
 }

 /* ── STEP INDICATOR ── */
 .step-indicator {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0;
     margin-bottom: 2rem;
 }

 .step {
     display: flex;
     flex-direction: column;
     align-items: center;
     position: relative;
     flex: 1;
 }

 .step-dot {
     width: 28px;
     height: 28px;
     border: 1.5px solid var(--black-border);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.7rem;
     font-weight: 600;
     color: var(--text-muted);
     background: var(--black-card);
     transition: all 0.3s;
     z-index: 1;
 }

 .step.active .step-dot {
     border-color: var(--gold);
     color: var(--gold);
     background: rgba(201, 168, 76, 0.1);
 }

 .step.done .step-dot {
     border-color: var(--gold);
     background: var(--gold);
     color: var(--black);
 }

 .step-name {
     font-size: 0.6rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--text-muted);
     margin-top: 0.35rem;
 }

 .step.active .step-name {
     color: var(--gold);
 }

 .step-line {
     flex: 1;
     height: 1px;
     background: var(--black-border);
     margin-top: -14px;
     /* align with dot center */
     position: relative;
     z-index: 0;
 }

 .step-line.done {
     background: var(--gold-dark);
 }

 /* ── MULTI-STEP PANELS ── */
 .booking-step {
     display: none;
 }

 .booking-step.active {
     display: block;
     animation: fadeSlide 0.3s ease both;
 }

 @keyframes fadeSlide {
     from {
         opacity: 0;
         transform: translateX(12px);
     }

     to {
         opacity: 1;
         transform: translateX(0);
     }
 }

 /* ── RESPONSIVE TWEAKS ── */
 @media (max-width: 576px) {
     .modal-body {
         padding: 1.25rem;
     }

     .modal-header {
         padding: 1.2rem 1.25rem;
     }

     .modal-footer {
         padding: 1rem 1.25rem;
         flex-direction: column-reverse;
         gap: 0.5rem;
     }

     .btn-submit,
     .btn-cancel {
         width: 100%;
         justify-content: center;
     }

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

     .step-name {
         display: none;
     }
 }

 @media (max-width: 380px) {
     .equipment-grid {
         grid-template-columns: 1fr;
     }
 }
/*End of book us now  */

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

#header-carousel h1 {
    background-color: rgba(255, 174, 0, 0.7);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/* contact */
.info-item {
    padding: 20px 0px 30px 0;
    box-shadow: 0 0 20px rgba(255, 191, 0, 0.6);
    margin-top: 150px;
    border-radius: 20%;
    color: #fff;
    font-size: 20px;
    background-color: rgba(26, 25, 22, 0.3);
}

.info-item i {
  font-size: 20px;
  color: rgb(255, 255, 255);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-radius: 4px; */
  transition: all 0.3s ease-in-out;
  /* border-radius: 50%; */
  border: 2px dotted #ffee00;
} 

input[type="text"]:focus {
  border-color: #ffee00; /* New border color when clicked */
  outline: none; /* Removes the default browser outline */
}



/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2rem solid rgba(0, 0, 0, .2);
    border-radius: 300px;
    z-index: 1;
}

/*Service button disappear */
.hide-me[aria-expanded="true"] {display: none;}


/* .service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
} */

/* .service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
} */

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 100%;
    
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
    color: var(--bs-yellow);
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/ballons.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}
