/********** Template CSS **********/
/* Smooth scrolling for entire page - fix bouncing */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

body {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

:root {
    --primary: #FFD700; /* Gold to match logo */
    --light: #F1F8FF;
    --dark: #000000; /* Pure black */
}

/* Override Bootstrap primary color to gold */
.btn-primary {
    background-color: #FFD700 !important;
    border-color: #FFD700 !important;
    color: #000000 !important; /* Black text on gold buttons for better contrast */
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #FFC700 !important; /* Slightly darker gold on hover */
    border-color: #FFC700 !important;
    color: #000000 !important;
}

.text-primary {
    color: #FFD700 !important;
}

.bg-primary {
    background-color: #FFD700 !important;
}

.border-primary {
    border-color: #FFD700 !important;
}

/* Center navbar menu items */
.navbar-collapse.justify-content-center .navbar-nav {
    margin: 0 auto;
}

body > .container-fluid {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

/* Ensure header and hero are full width */
.container-fluid.bg-dark,
.hero-simple,
.page-header {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body > .container-fluid {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

/* Prevent bouncing in all containers */
.container-xxl,
.container {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

/* Prevent scroll jumps when passing carousel sections */
.container-xxl .owl-carousel,
.container .owl-carousel {
    position: relative;
    min-height: 500px;
    height: 500px;
    margin: 0;
    padding: 0;
}

/* Prevent layout shifts during carousel transitions */
.owl-carousel .owl-stage-outer {
    contain: layout style paint;
}

/* Prevent scroll position from being affected by carousel animations */
.owl-carousel,
.owl-carousel .owl-stage-outer,
.owl-carousel .owl-stage {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

/* Prevent scroll jumps - lock carousel container heights */
.container-xxl .owl-carousel,
.container .owl-carousel {
    contain: layout size style paint;
}

/* Ensure carousel sections don't affect scroll position */
.container-xxl .container .owl-carousel,
.container .owl-carousel {
    position: relative;
    min-height: 500px;
    height: 500px;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}

.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: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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: normal;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

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

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Hero Section - Elegant & Beautiful ***/
.hero-simple {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    z-index: 1;
}

/* Consistent spacing after hero section - remove all spacing */
.hero-simple {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Target any element immediately after hero section - add proper spacing */
.hero-simple + .container-xxl,
.hero-simple ~ .container-xxl:first-of-type {
    padding-top: 2rem !important;
    margin-top: 0 !important;
}

/* More aggressive - target any element after hero with proper spacing */
.hero-simple ~ .container-xxl:first-of-type {
    margin-top: 0 !important;
    padding-top: 2rem !important;
    margin-bottom: 0 !important;
}

/* Option 1: Add spacing to first section after hero */
.hero-simple ~ .container-xxl:first-of-type {
    margin-top: 0 !important;
    padding-top: 2rem !important;
}

/* Option 3: target the exact first section after hero */
.hero-simple + .container-xxl {
    margin-top: 0 !important;
    padding-top: 2rem !important;
}

/* Add proper spacing to first container after hero, including Bootstrap classes */
.hero-simple + .container-xxl.pb-5,
.hero-simple ~ .container-xxl.pb-5:first-of-type,
.hero-simple + .container-xxl.py-5,
.hero-simple ~ .container-xxl.py-5:first-of-type {
    padding-top: 2rem !important;
    margin-top: 0 !important;
    padding-bottom: 3rem !important; /* Keep bottom padding for content spacing */
}

/* ULTIMATE FIX - Target the exact structure in HTML and add proper spacing */
body > .container-fluid > .hero-simple + .container-xxl,
body > .container-fluid > .hero-simple ~ .container-xxl:first-of-type {
    margin-top: 0 !important;
    padding-top: 2rem !important;
    position: relative;
    z-index: 0;
}

/* Add proper spacing to first section after hero */
.hero-simple ~ .container-xxl:first-of-type {
    margin-top: 0 !important;
    padding-top: 2rem !important;
}

/* Also remove any gap from the container-fluid wrapper */
body > .container-fluid {
    margin: 0;
    padding: 0;
}

/* Make sure hero doesn't have any bottom spacing */
.hero-simple {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Add proper spacing between hero and next element */
.hero-simple + .container-xxl {
    margin-top: 0 !important;
    padding-top: 2rem !important;
    display: block; /* Ensure it's a block element */
}

/* Remove any default spacing from containers after hero */
.hero-simple ~ .container-xxl .container,
.hero-simple + .container-xxl .container,
.hero-simple ~ .container-xxl > .container,
.hero-simple + .container-xxl > .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Target page-header (for other pages) */
.page-header + .container-xxl,
.page-header ~ .container-xxl,
.page-header + div,
.page-header ~ div,
.page-header + .container,
.page-header ~ .container {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.page-header + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure no spacing on first section after hero/page-header */
body > .container-fluid > .hero-simple ~ .container-xxl:first-of-type,
body > .container-fluid > .page-header ~ .container-xxl:first-of-type {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Remove any potential spacing from body or html */
body {
    margin: 0;
    padding: 0;
}

/* Ensure container-fluid doesn't add spacing after hero */
.container-fluid > .hero-simple + *,
.container-fluid > .page-header + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#hero-carousel {
    height: 100%;
}

#hero-carousel.carousel-item,
#hero-carousel .carousel-item {
    height: 100%;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    transition: transform 10s ease-out, opacity 1.5s ease-in-out;
    will-change: transform, opacity;
}

#hero-carousel .carousel-item.active .hero-bg {
    transform: scale(1);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 43, 0.75) 0%, rgba(15, 23, 43, 0.5) 50%, rgba(15, 23, 43, 0.7) 100%);
}

.hero-content-simple {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 3rem 2rem;
    padding-top: 120px;
}

.hero-badge-elegant {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    padding-bottom: 1rem;
}

.hero-badge-elegant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.hero-title-simple {
    font-size: 5.5rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 2rem;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.hero-divider::before {
    left: -15px;
}

.hero-divider::after {
    right: -15px;
}

.hero-subtitle-simple {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero-simple {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 3.5rem;
    background: var(--primary);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35); /* Gold shadow */
    position: relative;
    overflow: hidden;
}

.btn-hero-simple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-simple:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-simple:hover {
    background: #FFD700; /* Gold */
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5); /* Gold shadow */
    color: #FFFFFF;
    text-decoration: none;
}

.btn-hero-simple span,
.btn-hero-simple i {
    position: relative;
    z-index: 1;
}

.btn-hero-simple i {
    transition: transform 0.3s ease;
}

.btn-hero-simple:hover i {
    transform: translateX(5px);
}

/* Carousel Controls */
#hero-carousel .carousel-control-prev,
#hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#hero-carousel .carousel-control-prev:hover,
#hero-carousel .carousel-control-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#hero-carousel .carousel-control-prev {
    left: 40px;
}

#hero-carousel .carousel-control-next {
    right: 40px;
}

#hero-carousel .carousel-control-prev-icon,
#hero-carousel .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) invert(1);
}

/* Carousel Fade - Smooth and beautiful transitions - prevent bouncing */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item-next:not(.carousel-item-start),
.carousel-fade .active.carousel-item-end {
    transform: none;
}

.carousel-fade .carousel-item-prev:not(.carousel-item-end),
.carousel-fade .active.carousel-item-start {
    transform: none;
}

/* Smooth transitions for all carousel items - prevent bouncing */
.carousel-item {
    transition: opacity 0.8s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.carousel-inner {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    height: 500px;
    min-height: 500px;
}

.carousel-fade {
    height: 500px;
    min-height: 500px;
    position: relative;
}

.carousel-fade .carousel-item {
    height: 500px;
    min-height: 500px;
}

.carousel-fade .carousel-item img {
    height: 500px;
    min-height: 500px;
    object-fit: cover;
    width: 100%;
}

/* Owl Carousel smooth transitions - prevent bouncing and scroll jumps */
.owl-carousel {
    position: relative;
    min-height: 500px;
    height: 500px;
}

.owl-carousel .owl-item {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    position: relative;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    height: 500px;
    min-height: 500px;
}

.owl-carousel .owl-stage {
    display: flex;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    height: 500px;
}

.owl-carousel .item {
    height: 500px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .item img {
    height: 500px;
    min-height: 500px;
    object-fit: cover;
    width: 100%;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-simple {
        height: 50vh;
        min-height: 500px;
        margin-top: 0;
    }
    
    .hero-content-simple {
        padding-top: 100px;
    }
    
    .hero-title-simple {
        font-size: 4rem;
    }
    
    .hero-subtitle-simple {
        font-size: 1.2rem;
    }
    
    .hero-badge-elegant {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }
}

@media (max-width: 768px) {
    .hero-simple {
        height: 50vh;
        min-height: 500px;
        margin-top: 0;
    }
    
    .hero-content-simple {
        padding-top: 80px;
    }
    
    .hero-title-simple {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle-simple {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-divider {
        width: 60px;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero-simple {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    #hero-carousel .carousel-control-prev,
    #hero-carousel .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    #hero-carousel .carousel-control-prev {
        left: 20px;
    }
    
    #hero-carousel .carousel-control-next {
        right: 20px;
    }
    
    .hero-badge-elegant {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-simple {
        height: 50vh;
        min-height: 500px;
        margin-top: 0;
    }
    
    .hero-content-simple {
        padding-top: 70px;
    }
    
    .hero-title-simple {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-simple {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-divider {
        width: 50px;
        margin-bottom: 1.5rem;
    }
    
    .btn-hero-simple {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
        gap: 0.7rem;
    }
    
    .hero-badge-elegant {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    #hero-carousel .carousel-control-prev,
    #hero-carousel .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    #hero-carousel .carousel-control-prev {
        left: 15px;
    }
    
    #hero-carousel .carousel-control-next {
        right: 15px;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -250px !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
    z-index: 1;
}

.booking .container {
    padding-top: 0;
    padding-bottom: 0;
}

.booking .bg-white {
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15) !important;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.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(--primary);
    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: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    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;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 2px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: #FFFFFF;
}


/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: .5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.footer {
    position: relative;
    margin-top: 0 !important;
    padding-top: 0 !important;
    background-color: transparent !important;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

.footer.bg-dark {
    background-color: transparent !important;
}

.container-fluid.bg-dark.footer {
    background-color: transparent !important;
}

.footer.text-light,
.footer .text-light,
.footer p,
.footer h6,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5 {
    color: #000000 !important;
}

.footer .section-title {
    color: var(--primary) !important;
}

.footer .bg-primary {
    background-color: var(--primary) !important;
    border: none !important;
}

.footer .bg-primary .text-white,
.footer .bg-primary h1,
.footer .bg-primary p,
.footer .bg-primary a {
    color: #000000 !important;
}

.footer .copyright,
.footer .copyright a {
    color: #000000 !important;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000000;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Hide all carousel dots and indicators */
.owl-dots,
.owl-dots .owl-dot {
    display: none !important;
}

.carousel-indicators {
    display: none !important;
}

.carousel-indicators [data-bs-target] {
    display: none !important;
}