@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

html,
body {
    background: var(--bs-neutral-100);
    font-family: "Plus Jakarta Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.container-fluid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.mobile-nav-toggler {
    display: none;
}

.mobile-menu {
    display: none;
}

.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: -86px;
    /* Adjusted for better visibility */
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 10%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

header {
    background: transparent;
    padding: 4px 5%;
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

header .navbar-brand {
    flex: 0 0 auto;
    min-width: 0;
}

header .navbar-brand img {
    width: 200px;
    max-width: 100%;
    height: auto;
}

.desktop-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
}

header .nav-link {
    color: #fff !important;
    margin: 0;
    padding: 8px 10px;
    font-weight: 500;
}

.desktop-menu .dropdown {
    flex: 0 0 auto;
}

.header-cta {
    flex: 0 0 auto;
    white-space: nowrap;
}

.booking-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 20px 0px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    margin: 0 auto;
    margin-top: -46px;
    position: relative;
    z-index: 99;

    .btn {
        width: 120px;
    }
}

.service .icon-circle {
    width: 54px;
    height: 54px;
}
.service {
    .row {
        margin: 0 -12px;
        .col-md-6 {
            padding: 0 12px;
        }
    }
}

.btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    outline: 0;
}

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

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 40px;
    height: 40px;
    background: var(--bs-white);

    border-radius: 50%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    left: 2px;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 12px solid var(--bs-primary-500);
    border-top: 8px solid transparent;
    border-bottom: 8px 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;
    }
}

.video-guide .video .overlay {
    position: absolute;
    bottom: 0;
    background: #000000;
    width: 100%;
    opacity: 24%;
    height: 100%;
    border-radius: 12px;
}

.video-guide .video img {
    border-radius: 12px;
}

.video-guide .video {
    cursor: pointer;
}
.video-thumbnail {
    width: 100%;
    height: 340px;
    border-radius: 12px;
}

/* #videoModal .btn-close {
  border: 1px solid var(--bg-neutral-600);
}

#videoModal .modal-content {
  background-color: transparent;
  border: 0;
}

#videoModal .modal-content iframe {
  border: 0;
  border-radius: 10px;
  width: 100%;
  height: 350px;
} */

.slick-dots,
.slick-arrow {
    display: none !important;
}
.clients-card {
    height: 54px;
    width: auto;
}

.subscribe-section {
    background: var(--bs-white);
    padding: 10px 20px 2px 20px;
    border-radius: 10px;
    margin-bottom: -60px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}
footer {
    background: var(--bs-primary-500);
    color: #fff;
    padding: 100px 0 20px;
}
/* footer {
  background: url("../images/footer_bg.svg") center center / cover no-repeat;
  color: #fff;
  padding: 120px 0 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */

footer a {
    color: #d1d5db;
    text-decoration: none;
}
footer a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    margin-top: 20px;
    font-size: 14px;
    color: #d1d5db;
}

.scroll-top-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--bs-primary-500);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(2, 8, 23, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease,
        background-color 0.2s ease;
    z-index: 1300;
}

.scroll-top-btn:hover {
    background: var(--bs-primary-600);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-section {
    background: url("../images/banner/header_raaj_1.jpg") center center / cover
        no-repeat;
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: -86px;
}
.feature-bar {
    background-color: var(--bs-primary-500); /* orange bar */
    padding: 15px 0;
}
.feature-bar i {
    color: #000;
    margin-right: 8px;
}
.hero-images img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-images .row {
    gap: 15px;
}

.team-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.team-info {
    padding: 15px;
    text-align: center;
}
.team-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--bs-neutral-900);
}
.team-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--bs-neutral-600);
    margin-top: 4px;
}

.team-section {
    .row {
        .col-md-4 {
            padding: 0 8px;
        }
        margin: 0 -8px;
    }
}
