body {
    font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Style Script", cursive;
}

/* ===============================
   Home Header
================================= */
.home-header {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 9999;
    background-color: #0005 !important;
    backdrop-filter: blur(1rem);
    box-shadow: none !important;
}

.home-header .home-logo {
    padding: 0;
    margin: 0;
}

.home-header .home-logo img.custom-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
}

.home-header .home-navigation a {
    color: #027cfe;
    color: #8e13e7;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    text-decoration: none;
}

/* ===============================
   HERO SECTION
================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(2, 124, 254, 0.85),
        rgba(142, 19, 231, 0.85)
    ),
    url("hero-image.jpg") center/cover no-repeat;
}


.hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}


.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 124, 254, 0.25),
        rgba(142, 19, 231, 0.25)
    );
    z-index: 1;
}


.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(2, 124, 254, 0.25), rgba(142, 19, 231, 0.25)), url(https://demo-webagency.com/grooventonic/wp-content/uploads/2026/02/image-SJ8X3J5-scaled.jpg) center / cover no-repeat;
    background-attachment: fixed;
}


.hero__inner {
    position: relative;
    z-index: 5;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.hero__description {
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
    color: #f5f5f5;
    margin: 0 auto;
}



.hero__actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.hero__btn--primary {
    background: #ffffff;
    color: #027cfe;
    border: 2px solid #ffffff;
}

.hero__btn--primary:hover {
    background: #027cfe;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


.hero__btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.hero__btn--outline:hover {
    background: #ffffff;
    color: #8e13e7;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}



.hero__social {
    margin-top: 50px;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__social li a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.hero__social li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.hero__social li a:hover::after {
    width: 100%;
}

.hero__social li a:hover {
    opacity: 0.8;
}


@media (max-width: 992px) {
    .hero {
        padding: 80px 20px 50px;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__description {
        font-size: 16px;
    }
}


@media (max-width: 576px) {
    .hero {
        padding: 70px 15px 40px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .hero__actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero__btn {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .hero__social {
        gap: 15px;
        margin-top: 40px;
    }
}

/* ==========================================
   OUR VIBES SECTION
========================================== */

.our-vibes-block {
    position: relative;
    padding: 130px 0;
    background-color: #f7f8f6;
    overflow: hidden;
}

.our-vibes-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 90px 90px;
    z-index: 0;
}

.our-vibes-block .container {
    position: relative;
    z-index: 2;
}

.our-vibes-block h2 {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #9c27b0;
    margin-bottom: 80px;
}

.vibes-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.vibes-text {
    flex: 1;
}

.vibes-text p {
    font-size: 17px;
    line-height: 2;
    color: #3e4a44;
    max-width: 420px;
}

.vibes-divider {
    position: relative;
    width: 1px;
    background: rgb(156 39 176 / 25%);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vibes-star {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #9C27B0;
    border-radius: 50%;
}

.vibes-star::before,
.vibes-star::after {
    content: "";
    position: absolute;
    background: #9c27b0;
}

.vibes-star::before {
    width: 2px;
    height: 28px;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
}

.vibes-star::after {
    height: 2px;
    width: 28px;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
}

.our-vibes-block .ratio {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.our-vibes-block video {
    object-fit: cover;
    transition: transform 0.5s ease;
}

.our-vibes-block .ratio:hover {
    transform: translateY(-6px);
}

.our-vibes-block .ratio:hover video {
    transform: scale(1.04);
}

@media (max-width: 992px) {

    .our-vibes-block {
        padding: 90px 0;
        text-align: center;
    }

    .our-vibes-block h2 {
        font-size: 38px;
        letter-spacing: 5px;
        margin-bottom: 60px;
    }

    .vibes-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .vibes-divider {
        height: 80px;
        width: 1px;
    }

    .vibes-text p {
        max-width: 100%;
    }

}

@media (max-width: 576px) {

    .our-vibes-block {
        padding: 70px 0;
    }

    .our-vibes-block h2 {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .vibes-text p {
        font-size: 15px;
        line-height: 1.8;
    }

}


/* ===============================
   HOME FOOTER
================================= */

.home-footer {
    background: #0f172a;
    color: #ffffff;
    position: relative;
    font-family: "Poppins", Arial, sans-serif;
}


.home-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #027cfe, #8e13e7);
}


.home-footer h5 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 18px;
}

.home-footer h6 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #e2e8f0;
}


.home-footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
    max-width: 320px;
}


.home-footer .navbar-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.home-footer .navbar-nav li {
    margin-bottom: 10px;
}

.home-footer .navbar-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #cbd5e1;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}


.home-footer .navbar-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #027cfe, #8e13e7);
    transition: width 0.3s ease;
}

.home-footer .navbar-nav a:hover {
    color: #ffffff;
}

.home-footer .navbar-nav a:hover::after {
    width: 100%;
}


.home-footer .d-flex a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.home-footer .d-flex a:hover {
    background: linear-gradient(135deg, #027cfe, #8e13e7);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.home-footer hr {
    opacity: 0.2;
    margin: 40px 0 20px;
}


.home-footer .text-center {
    font-size: 13px;
    color: #94a3b8;
}

/* =========================================================
   BOOK US SECTION
   ========================================================= */

.book-us-block {
    position: relative;
    overflow: hidden;
    background-color: #f8fbff;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.book-us-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 124, 254, 0.90),
        rgba(142, 19, 231, 0.90)
    );
    z-index: 1;
}

.book-us-block .container {
    position: relative;
    z-index: 2;
}

.book-us-block__parallax-bg {
    z-index: 0;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.book-us-block:hover .book-us-block__parallax-bg {
    transform: scale(1.1);
}

.book-us-block h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.book-us-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.book-us-block h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.book-us-block ul {
    padding: 0;
    margin: 0;
}

.book-us-block ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.book-us-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #e0e0ff);
    transition: all 0.3s ease;
}

.book-us-block ul li:hover {
    transform: translateX(5px);
    color: #ffffff;
}

.book-us-block ul li:hover::before {
    background: #ffffff;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
}

@media (max-width: 991.98px) {

    .book-us-block {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
        text-align: center;
    }

    .book-us-block h3 {
        margin-top: 2rem;
    }

    .book-us-block ul li {
        padding-left: 22px;
    }
}

@media (max-width: 575.98px) {

    .book-us-block {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .book-us-block h2 {
        font-size: 1.8rem;
    }

    .book-us-block p {
        font-size: 0.95rem;
    }

    .book-us-block ul li {
        font-size: 0.9rem;
    }
}

/* =====================================================
   Custom Content + Image Block
===================================================== */

.custom-content-image-block {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


.custom-content-image-block::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #027cfe, #8e13e7);
    opacity: 0.05;
    border-radius: 50%;
    z-index: 0;
}

.custom-content-image-block .container {
    position: relative;
    z-index: 2;
}


.custom-content-image-block h2 {
    color: #111;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.custom-content-image-block h3 {
    color: #8e13e7 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-content-image-block p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
}


@media (max-width: 991px) {
    .custom-content-image-block p {
        margin-left: auto;
        margin-right: auto;
    }
}


.custom-content-image-block .btn-success {
    background: linear-gradient(135deg, #027cfe, #8e13e7);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(2, 124, 254, 0.25);
}

.custom-content-image-block .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(142, 19, 231, 0.35);
    opacity: 0.95;
}

.custom-content-image-block img {
    border-radius: 20px !important;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.custom-content-image-block img:hover {
    transform: scale(1.04);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1200px) {
    .custom-content-image-block {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }
}

@media (max-width: 991px) {
    .custom-content-image-block h2 {
        font-size: 2rem;
    }

    .custom-content-image-block .lead {
        font-size: 1rem;
    }

    .custom-content-image-block img {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .custom-content-image-block {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .custom-content-image-block h2 {
        font-size: 1.7rem;
    }

    .custom-content-image-block h3 {
        font-size: 0.95rem;
    }

    .custom-content-image-block p {
        font-size: 0.95rem;
    }

    .custom-content-image-block .btn-success {
        width: 100%;
    }
}

/* =====================================================
   GALLERY HEADER
   ===================================================== */

.gallery-block__title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #027cfe, #8e13e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.gallery-block__title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #027cfe, #8e13e7);
}

.gallery-block__text {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .gallery-block__title {
        font-size: 2.1rem;
    }
}

@media (max-width: 767px) {
    .gallery-block__title {
        font-size: 1.8rem;
    }

    .gallery-block__text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-block__title {
        font-size: 1.6rem;
    }
}



/* =====================================================
   GALLERY BLOCK
   ===================================================== */

.gallery-block {
    background: #f9fbff;
    position: relative;
    overflow: hidden;
}


.gallery-block::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(142, 19, 231, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.gallery-block .container {
    position: relative;
    z-index: 2;
}


.gallery-block__slider {
    position: relative;
}


.gallery-block__slide-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-block__slide-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.6s ease, filter 0.4s ease;
}


.gallery-block__slide-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(2, 124, 254, 0.0) 40%,
        rgba(2, 124, 254, 0.25) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}


.gallery-block__slide-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}

.gallery-block__slide-item:hover::after {
    opacity: 1;
}

.gallery-block__slide-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


.gallery-block .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.gallery-block .owl-dot span {
    width: 10px;
    height: 10px;
    background: #dcdcdc;
    display: inline-block;
    margin: 0 6px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gallery-block .owl-dot.active span {
    background: linear-gradient(135deg, #027cfe, #8e13e7);
    width: 26px;
    border-radius: 20px;
}

.gallery-block .owl-nav button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #ffffff !important;
    border-radius: 50% !important;
    width: 44px;
    height: 44px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.gallery-block .owl-nav button:hover {
    background: linear-gradient(135deg, #027cfe, #8e13e7) !important;
    color: #ffffff !important;
}

.gallery-block .owl-nav .owl-prev {
    left: -20px;
}

.gallery-block .owl-nav .owl-next {
    right: -20px;
}

@media (max-width: 1199px) {
    .gallery-block__slide-item img {
        height: 360px;
    }
}

@media (max-width: 991px) {
    .gallery-block__slide-item img {
        height: 320px;
    }

    .gallery-block .owl-nav .owl-prev {
        left: 0;
    }

    .gallery-block .owl-nav .owl-next {
        right: 0;
    }
}

@media (max-width: 767px) {
    .gallery-block {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .gallery-block__slide-item img {
        height: 260px;
    }

    .gallery-block .owl-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .gallery-block__slide-item img {
        height: 220px;
    }
}



