:root {
    --bg-dark: #0a0e1a;
    --bg-medium: #1a1f3a;
    --cyan-primary: #06b6d4;
    --cyan-light: #22d3ee;
    --purple-glow: rgba(168, 85, 247, 0.15);
    --cyan-glow: rgba(6, 182, 212, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.btn-journey{
    text-decoration: none;
}

/* Breadcrumbs */
.breadcrumb {
    margin-bottom: 2rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.breadcrumb-item {
    display: inline-block;
    color: #9ca3af;
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--cyan-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--cyan-primary);
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6b7280;
    padding: 0 0.5rem;
}

/* Cosmic Background */
.mb-4 {
    position: relative;
}

.cosmic-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cosmic-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--bg-dark), var(--bg-medium), var(--bg-dark));
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

.glow-orb-1 {
    top: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background: var(--cyan-glow);
    animation-delay: 0s;
}

.glow-orb-2 {
    top: 160px;
    right: 80px;
    width: 320px;
    height: 320px;
    background: var(--purple-glow);
    animation-delay: 1s;
}

.glow-orb-3 {
    bottom: 80px;
    left: 33%;
    width: 288px;
    height: 288px;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 2s;
}

.glow-orb-4 {
    top: 50%;
    right: 25%;
    width: 256px;
    height: 256px;
    background: rgba(34, 211, 238, 0.1);
    animation-delay: 3s;
}

.stars {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    margin-top: 6rem;
}

@media (max-width: 767px) {
    .main-content {
        margin-top: 5rem;
        margin-bottom: 80px;
    }
}

@media (max-width: 580px) {
    .main-content {
        margin-top: 4.5rem;
        margin-bottom: 75px;
    }
}

/* Mobile Top Bar */
.mobile-top-bar {
    background: rgba(10, 14, 26, 0.9);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 12px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(to bottom right, var(--cyan-primary), #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.logo-star {
    color: #fde047;
    font-size: 24px;
}

.site-name {
    display: flex;
    flex-direction: column;
}

.site-name-main {
    font-size: 14px;
    color: var(--cyan-primary);
    font-weight: 600;
}

.site-name-sub {
    font-size: 10px;
    color: #9ca3af;
}

/* Hero Section */
.hero-section {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hero-image {
    width: 100%;
    height: 256px;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(88, 28, 135, 0.5), rgba(29, 78, 216, 0.5), rgba(8, 145, 178, 0.5));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.btn-hero {
    background: white;
    color: #111827;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.btn-hero:hover {
    background: #e0f2fe;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Horizontal Scroll Container */
.scroll-container {
    overflow-x: auto;
    margin: 0 0;
    /* margin: 0 -1rem; */
    /* padding: 0 0 1rem 1rem; */
    padding: 0 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.scroll-flex {
    display: flex;
    gap: 0.75rem;
}

/* Practice Cards (3 at a time on mobile) */
.practice-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(234, 179, 8, 0.5);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.2);
    transition: all 0.3s;
    cursor: pointer;
    flex-shrink: 0;
    min-width: calc(33.333% - 8px);
}

.practice-card:hover {
    box-shadow: 0 8px 24px rgba(234, 179, 8, 0.4);
}

.practice-card img {
    width: 100%;
    height: 128px;
    object-fit: cover;
}

.practice-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
}

.practice-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
}

.practice-title {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.practice-duration {
    font-size: 0.75rem;
    color: #d1d5db;
}

.info-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Session Cards */
.session-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
    transition: all 0.3s;
    flex-shrink: 0;
    min-width: calc(33.333% - 8px);
}

.session-card:hover {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.session-card img {
    width: 100%;
    height: 128px;
    object-fit: cover;
}

.session-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #eab308;
    color: black;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Blog Cards */
.blog-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 1rem;
}

.blog-card:hover {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.blog-image-container {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.blog-content {
    padding: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* START: Review Cards Responsive Styling */
.review-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
    transition: all 0.3s;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    min-height: 180px;
}

.review-card:hover {
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cyan-primary);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    flex-shrink: 0;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star-icon {
    color: #eab308;
    font-size: 0.75rem;
}

/* Review Carousel Specific Styles */
.review-carousel .review-card {
    height: 100%;
    margin: 0;
}

.review-carousel .owl-stage {
    display: flex;
    align-items: stretch;
    padding-left: 0 !important;
}

.review-carousel .owl-item {
    display: flex;
    margin-left: 0 !important;
}

.review-carousel .owl-stage-outer {
    padding-left: 0 !important;
    overflow: hidden;
}

/* Remove left gap for all breakpoints */
.review-carousel .owl-stage-outer {
    margin-left: 0 !important;
}

.owl-carousel.review-carousel .owl-item img {
    width: 48px;
    height: 48px;
}

/* Responsive adjustments for review carousel */
@media (max-width: 479px) {
    .review-carousel .owl-stage-outer {
        padding-left: 0 !important;
    }

    .review-card {
        min-height: 160px;
        padding: 1.2rem;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .review-carousel .owl-stage-outer {
        padding-left: 0 !important;
    }

    .review-card {
        min-height: 170px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .review-carousel .owl-stage-outer {
        padding-left: 0 !important;
    }

    .review-card {
        min-height: 180px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .review-carousel .owl-stage-outer {
        padding-left: 0 !important;
    }

    .review-card {
        min-height: 180px;
    }
}

@media (min-width: 1200px) {
    .review-carousel .owl-stage-outer {
        padding-left: 0 !important;
    }

    .review-card {
        min-height: 180px;
        padding: 1.5rem;
    }
}

/* END: Review Cards Responsive Styling */


/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--cyan-primary);
    font-size: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(6, 182, 212, 0.3);
    color: var(--cyan-light);
}

.btn-book {
    background: linear-gradient(to right, var(--cyan-primary), #2563eb);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
    transition: all 0.3s;
}

.btn-book:hover {
    background: linear-gradient(to right, #0891b2, #1d4ed8);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: 1rem 0 1.5rem;
    position: relative;
}

.footer-explore-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link i {
    font-size: 1rem;
}

.footer-link:hover {
    color: var(--cyan-primary);
}

.footer-link.active {
    color: var(--cyan-primary);
    font-weight: 600;
}

.footer-link.active i {
    color: var(--cyan-primary);
}

.footer-social-top {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: var(--cyan-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.25rem;
}

.footer-social-icon:hover {
    background: var(--cyan-light);
    transform: scale(1.1);
}

.footer-social-bottom {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-subscribe {
    background: var(--cyan-primary);
    color: var(--bg-dark);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    width: 100%;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    transition: all 0.3s;
    margin: 2rem 0;
}

.btn-subscribe:hover {
    background: var(--cyan-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.6);
}

.footer-tagline {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* About US */

.about-section {
    position: relative;
    padding: 2rem 0 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
}

.about-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    width: 100%;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.about-features {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media(max-width: 414px){
    .about-features {
        grid-template-columns: repeat(1, 1fr);
    }
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
}
@media(max-width: 640px){
    .feature-item p {
        font-size: 14px;
    }
}

/* Wellness Center */
.wellness-centers {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.centers-carousel-container {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
    width: 100%;
}

.centers-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 0 0.5rem;
}

.center-card {
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.center-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 188, 212, 0.6);
}

.center-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1) 0%, rgba(63, 81, 181, 0.1) 100%);
    z-index: -1;
}

.center-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

.logo-mobile {
  display: none;
}

.logo-desktop {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }

  .logo-mobile {
    display: block;
  }
}

img.wa-img{
    height: 60px;
}

.whatsapp-icon-fixed {
    position: fixed;
    right: 30px;
    bottom: 150px;
    z-index: 9999;
}
.whatsapp-chat-bubble {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 16px;
    max-width: 300px;
    color: #111;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
    text-align: left;
    position: fixed;
    right: 30px;
    bottom: 225px;
    z-index: 9999;
}
.whatsapp-chat-bubble.small-bubble {
    position: fixed;
    right: 30px;
    bottom: 330px;
}
#close-chat-bubbles {
    background: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    font-weight: bold;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: fixed;
    right: 15px;
    font-size: 18px;
    z-index: 10000;
    bottom: 365px;
}

.map-box {
  width: 100%;
  height: 430px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.center-name {
    text-transform: capitalize;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.center-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.center-services {
    font-size: 0.8rem;
    color: var(--accent-color);
    background: rgba(0, 188, 212, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

/* Navbar Css Started */

.navbar-custom {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.navbar-custom.scrolled {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 80%, #0f3460 100%);
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand-custom {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white !important;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 45px;
    object-fit: contain;
    filter: brightness(1.1);
    border-radius: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-main {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.brand-sub {
    font-size: 0.75rem;
    color: #ffd700;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Desktop Navigation */
.navbar-nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

/* Mobile Top Navigation */
.navbar-nav-mobile-top {
    display: none;
    align-items: center;
    gap: 1rem;
}

/* Mobile Bottom Navigation */
.navbar-bottom-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-link-custom:hover {
    color: #00d4ff !important;
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* Horizontal Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.horizontal-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 80%, #0f3460 100%);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 140px;
    margin-top: 0.5rem;
}
@media(max-width: 768px){
    .horizontal-dropdown-mobile {
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 80%, #0f3460 100%);
        border-radius: 8px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1000;
        min-width: 140px;
        margin-top: 0.5rem;
    }
}

.nav-dropdown:hover .horizontal-dropdown,
.nav-dropdown:hover .horizontal-dropdown-mobile {
    opacity: 1;
    visibility: visible;
}

.dropdown-item-horizontal {
    padding: 8px;
    color: #00d4ff !important;
    text-decoration: none;
    font-size: 12px;
    text-align: center;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    /* border-right: 1px solid rgba(0, 212, 255, 0.2); */
    background: rgba(0, 212, 255, 0.05);
    display: block;
}

.dropdown-item-horizontal:last-child {
    border-right: none;
}

.dropdown-item-horizontal:hover {
    background: rgba(0, 212, 255, 0.15);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.nav-link-custom.active {
    color: #00d4ff !important;
    background: none;
}

.nav-link-custom.active .nav-icon::before {
    background: radial-gradient(
        circle at top,
        rgba(0, 229, 255, 0.35),
        rgba(0, 229, 255, 0.15),
        rgba(0, 229, 255, 0.05)
    );

    box-shadow:
        0 0 8px rgba(0, 229, 255, 0.8),
        0 0 16px rgba(0, 229, 255, 0.6),
        inset 0 0 6px rgba(255, 255, 255, 0.2);
    border-radius: 100%;
}


.nav-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.nav-text {
    font-size: 0.8rem;
}

.cart-icon {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cart-icon:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-nav-desktop {
        gap: 10px;
    }

    .brand-main {
        font-size: 1.2rem;
    }

    .brand-sub {
        font-size: 0.7rem;
    }

    .logo-img {
        height: 40px;
    }

    .nav-link-custom {
        padding: 0.4rem;
    }

    .nav-icon {
        font-size: 1.1rem;
    }

    .nav-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    /* Hide desktop navigation */
    .navbar-nav-desktop {
        display: none;
    }

    /* Show mobile top navigation */
    .navbar-nav-mobile-top {
        display: flex;
        gap: 1rem;
    }

    /* Show mobile bottom navigation */
    .navbar-bottom-mobile {
        display: block;
    }

    /* Adjust main content for bottom navbar */
    .main-content {
        margin-bottom: 80px;
    }

    .nav-link-custom {
        padding: 0.3rem 0.6rem;
    }

    .nav-icon {
        font-size: 1rem;
    }

    .nav-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    /* .navbar-custom {
        padding: 0.6rem 0;
    } */

    .brand-main {
        font-size: 1.1rem;
    }

    .brand-sub {
        font-size: 0.65rem;
    }

    .logo-img {
        height: 35px;
    }

    .nav-link-custom {
        padding: 0.3rem 0.5rem;
        min-width: 50px;
    }

    .nav-text {
        font-size: 0.65rem;
    }

    .nav-icon {
        font-size: 0.9rem;
    }

    .navbar-nav-mobile-top {
        gap: 0.5rem;
    }

    .main-content {
        margin-bottom: 75px;
    }
}

/* Animation for navbar items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.nav-link-custom {
    animation: fadeInUp 0.6s ease forwards;
}

.nav-link-custom:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-link-custom:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-link-custom:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-link-custom:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-link-custom:nth-child(5) {
    animation-delay: 0.5s;
}

.nav-link-custom:nth-child(6) {
    animation-delay: 0.6s;
}

/* Navbar Ended */

/* Responsive Design */
@media (min-width: 768px) {
    .hero-image {
        height: 320px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .practice-card,
    .session-card {
        width: auto;
        min-width: auto;
    }

    .practice-card img {
        height: 192px;
    }

    .session-card img {
        height: 160px;
    }

    .practice-title {
        font-size: 1.125rem;
    }

    .practice-duration {
        font-size: 0.875rem;
    }

    .practice-content {
        padding: 1rem;
    }

    .info-btn {
        width: 32px;
        height: 32px;
        top: 1rem;
        right: 1rem;
    }

    .session-badge {
        top: 0.75rem;
        right: 0.75rem;
    }

    .scroll-container {
        overflow: visible;
    }

    .scroll-flex {
        display: grid;
    }

    .mobile-top-bar {
        display: none;
    }
}

@media (min-width: 481px) {
    .center-card {
        width: 200px;
        min-width: 200px;
        max-width: 200px;
    }
}

@media (min-width: 321px) {
    .center-card {
        width: 100%;
        min-width: 95%;
        max-width: 95%;
        margin: 5px;
    }
}

.login-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 450px;
    padding: 1rem;
    margin: 0 auto;
}

.login-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.logo-tree {
    width: 56px;
    height: 56px;
}

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

.logo-text-main {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cyan-primary);
    letter-spacing: 2px;
}

.logo-text-sub {
    font-size: 0.875rem;
    color: var(--cyan-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.welcome-text {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--cyan-primary);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyan-primary);
    font-size: 1.125rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--cyan-primary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-input::placeholder {
    color: #6b7280;
}

.forgot-password {
    text-align: right;
    margin-top: 0.5rem;
}

.forgot-password a {
    color: var(--cyan-primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.forgot-password a:hover {
    color: var(--cyan-light);
}

.btn-login {
    width: 100%;
    padding: 1rem;
    background: var(--cyan-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-login:hover {
    background: var(--cyan-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.5);
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(6, 182, 212, 0.2);
}

.divider span {
    padding: 0 1rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    flex: 1;
    padding: 0.875rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-social:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--cyan-primary);
}

.signup-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.signup-link a {
    color: var(--cyan-primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.25rem;
}

.signup-link a:hover {
    color: var(--cyan-light);
}

@media (min-width: 768px) {
    .login-card {
        padding: 3rem 2.5rem;
    }
}

.register-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 1rem;
}

.register-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 24px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.3);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.logo-tree {
    width: 49px;
    height: 49px;
}

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

.logo-text-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan-primary);
    letter-spacing: 2px;
}

.logo-text-sub {
    font-size: 0.75rem;
    color: var(--cyan-primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.welcome-text {
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.welcome-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--cyan-primary);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyan-primary);
    font-size: 1.125rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    background: rgba(6, 182, 212, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--cyan-primary);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-input::placeholder {
    color: #6b7280;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: var(--cyan-primary);
    cursor: pointer;
    margin-top: 0.125rem;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--cyan-primary);
    text-decoration: none;
}

.checkbox-label a:hover {
    color: var(--cyan-light);
}

.login-btn-redirect {
    color: #7373e1;
    font-size: 18px;
    text-align: center;
    margin-top: 25px;
}

.btn-register {
    width: 100%;
    padding: 1rem;
    background: var(--cyan-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-section{
    width: 100%;
    padding: 8px;
    background: var(--cyan-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
    transition: all 0.3s;
    cursor: pointer;
    margin-top: 8px;
}

.btn-register:hover {
    background: var(--cyan-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(6, 182, 212, 0.5);
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #6b7280;
    font-size: 0.875rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(6, 182, 212, 0.2);
}

.divider span {
    padding: 0 1rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-social {
    flex: 1;
    padding: 0.875rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-social:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: var(--cyan-primary);
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #9ca3af;
}

.login-link a {
    color: var(--cyan-primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.25rem;
}

.login-link a:hover {
    color: var(--cyan-light);
}

@media (min-width: 768px) {
    .register-card {
        padding: 3rem 2.5rem;
    }
}

a{
    text-decoration: none;
    color: inherit;
}
.text-muted{
    color: #ffffff !important;
}

.blog-carousel .owl-stage,
.long-session-carousel .owl-stage,
.short-session-carousel .owl-stage,
.basic-session-carousel .owl-stage {
    display: flex;
}

.blog-carousel .owl-item,
.long-session-carousel .owl-stage,
.short-session-carousel .owl-stage,
.basic-session-carousel .owl-stage {
    display: flex;
}

.blog-carousel .blog-card,
.long-session-carousel .session-card,
.short-session-carousel .session-card,
.basic-session-carousel .session-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card > a,
.session-card > a {
    display: flex;
    flex-direction: column;
}

.customer_stars {
    color: #fbbf24;
}
.ratings{
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.payment-options img {
    margin-left: -25px;
    height: 50px;
}
@media (max-width: 640px) {
    .payment-options img {
        margin-left: -10px;
        height: 50px;
        max-width: 350px;
    }
}
 .session-card {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 6px rgba(6, 182, 212, 0.1);
    transition: all 0.3s;
    background: rgba(10, 14, 26, 0.8);
}

.session-card:hover {
    box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
    transform: translateY(-2px);
}

 .session-image-wrapper {
    position: relative;
    overflow: hidden;
}

.session-image {
    width: 100%;
    height: 6rem;
    object-fit: fill;
    display: block;
}
.session-content {
    position: relative;
    padding: 0.75rem 0.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(10, 14, 26, 0.95));
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

 .session-title {
    font-size: 16px;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.session-price {
    font-size: 0.75rem;
    color: #d1d5db;
    font-weight: 400;
}
@media (max-width: 640px){
    .about-section {
        min-height: 1980px;
    }
}