* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f8fbff;
            color: #333;
        }

        /* ===== TOPBAR ===== */
        .topbar {
            background: #0077C8;
            color: #fff;
            padding: 10px 0;
            font-size: 14px;
        }

        .topbar a {
            color: #fff;
            margin-left: 15px;
            transition: 0.3s;
        }

        .topbar a:hover {
            color: #2DBE60;
        }

        /* ===== NAVBAR ===== */
        .navbar-main {
            background: #ffffff;
            padding: 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-main .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 7px 15px;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }

        .nav-logo img {
            height: 45px;
        }

        .search-bar {
            flex: 1;
            max-width: 450px;
            margin: 0 15px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 10px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 30px;
            font-size: 14px;
            transition: 0.3s;
            background: #f5f7fa;
        }

        .search-bar input:focus {
            border-color: #0077C8;
            outline: none;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(0, 119, 200, 0.1);
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: #2DBE60;
            border: none;
            color: #fff;
            padding: 6px 18px;
            border-radius: 30px;
            font-weight: 500;
            transition: 0.3s;
        }

        .search-bar button:hover {
            background: #005fa3;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .nav-actions a {
            text-decoration: none;
            color: #333;
            font-size: 13px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 8px;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-actions a i {
            font-size: 16px;
        }

        .nav-actions a:hover {
            background: #f0f7ff;
            color: #0077C8;
        }

        .nav-actions .btn-book {
            background: #2DBE60;
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
        }

        .nav-actions .btn-book:hover {
            background: #1fa84a;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 190, 96, 0.3);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: #0077C8;
            cursor: pointer;
            padding: 5px 10px;
        }

        /* ===== MEGA MENU - FIXED ===== */
        .mega-menu-wrapper {
            background: #2dbe60;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
        }

        .mega-menu {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0;
            margin: 0;
            list-style: none;
            gap: 5px;
            position: relative;
        }

        /* FIXED: Each menu item needs position: relative for dropdown positioning */
        .mega-menu>li {
            position: relative;
            /* Changed from static to relative */
        }

        .mega-menu>li>a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            border-radius: 8px;
            transition: 0.3s;
            white-space: nowrap;
            position: relative;
        }

        .mega-menu>li>a i {
            color: white;
            font-size: 15px;
        }

        .mega-menu>li>a .arrow {
            font-size: 10px;
            margin-left: 4px;
            transition: 0.3s;
        }

        .mega-menu>li:hover>a {
            background: #f0f7ff;
            color: #0077C8;
        }

        .mega-menu>li:hover>a i {
            color: #0077C8;
        }

        .mega-menu>li:hover>a .arrow {
            transform: rotate(180deg);
        }

        /* Dropdown Indicator Line */
        .mega-menu>li>a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: #0077C8;
            transition: 0.3s;
            border-radius: 3px;
        }

        .mega-menu>li:hover>a::after {
            width: 60%;
        }

        /* Regular Dropdown - FIXED positioning */
        .dropdown-menu-custom {
            position: absolute;
            top: calc(100% + 5px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: #ffffff;
            min-width: 260px;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            border: 1px solid #f0f0f0;
            pointer-events: none;
        }

        .mega-menu>li:hover .dropdown-menu-custom {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            pointer-events: auto;
        }

        /* Mega Dropdown - Full Width - FIXED */
        .mega-dropdown {
            position: absolute;
            top: calc(100% + 5px);
            left: 0;
            right: 0;
            width: 100%;
            background: #ffffff;
            padding: 30px 40px;
            border-radius: 0 0 16px 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            border-top: 3px solid #0077C8;
            pointer-events: none;
            overflow: hidden;
        }

        /* FIXED: Position relative container for mega dropdown */
        .mega-menu>li.mega-menu-item {
            position: static;
            /* Only for mega dropdown items */
        }

        .mega-menu>li.mega-menu-item:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Mega Dropdown Grid */
        .mega-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .mega-grid .col h5 {
            font-size: 14px;
            font-weight: 700;
            color: #0077C8;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mega-grid .col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-grid .col ul li {
            margin-bottom: 8px;
        }

        .mega-grid .col ul li a {
            color: #555;
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 6px 10px;
            border-radius: 6px;
            transition: 0.3s;
        }

        .mega-grid .col ul li a i {
            color: #0077C8;
            font-size: 14px;
            width: 20px;
        }

        .mega-grid .col ul li a:hover {
            background: #f0f7ff;
            color: #0077C8;
            padding-left: 15px;
        }

        /* Dropdown Items */
        .dropdown-menu-custom ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .dropdown-menu-custom ul li {
            margin-bottom: 5px;
        }

        .dropdown-menu-custom ul li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            color: #555;
            text-decoration: none;
            font-size: 13px;
            border-radius: 8px;
            transition: 0.3s;
        }

        .dropdown-menu-custom ul li a i {
            color: #0077C8;
            width: 20px;
            font-size: 14px;
        }

        .dropdown-menu-custom ul li a:hover {
            background: #f0f7ff;
            color: #0077C8;
        }

        .badge-new {
            background: #FF6B35;
            color: #fff;
            font-size: 9px;
            padding: 2px 8px;
            border-radius: 20px;
            font-weight: 700;
            margin-left: 5px;
        }

        /* ===== MOBILE SEARCH ===== */
        .mobile-search-bar {
            display: none;
            /*padding: 12px 15px;*/
            background: #f8fbff;
            border-bottom: 1px solid #e8eef5;
        }

        .mobile-search-bar .search-input-wrapper {
            position: relative;
            max-width: 100%;
        }

        .mobile-search-bar input {
            width: 100%;
        /*    padding: 12px 50px 12px 20px;*/
            border: 2px solid #e0e0e0;
            /*border-radius: 30px;*/
            font-size: 14px;
            background: #ffffff;
            transition: 0.3s;
        }

        .mobile-search-bar input:focus {
            border-color: #0077C8;
            outline: none;
            box-shadow: 0 0 0 4px rgba(0, 119, 200, 0.1);
        }

        .mobile-search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: #0077C8;
            border: none;
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 14px;
            transition: 0.3s;
        }

        .mobile-search-bar button:hover {
            background: #005fa3;
        }

        /* ===== MOBILE MENU ===== */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            opacity: 0;
            transition: 0.3s;
        }

        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }

        .mobile-menu-panel {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 400px;
            height: 100%;
            background: #ffffff;
            z-index: 2001;
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            padding: 20px 0;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        }

        .mobile-menu-panel.open {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .mobile-menu-header img {
            height: 40px;
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 30px;
            color: #333;
            cursor: pointer;
        }

        .mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-list>li {
            border-bottom: 1px solid #f5f5f5;
        }

        .mobile-menu-list>li>a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: 0.3s;
        }

        .mobile-menu-list>li>a i:first-child {
            color: #0077C8;
            width: 25px;
            font-size: 16px;
        }

        .mobile-menu-list>li>a .arrow-mobile {
            transition: 0.3s;
            font-size: 12px;
        }

        .mobile-menu-list>li>a:hover {
            background: #f0f7ff;
            color: #0077C8;
        }

        .mobile-submenu {
            display: none;
            background: #f8fbff;
            padding: 10px 0;
        }

        .mobile-submenu.open {
            display: block;
        }

        .mobile-submenu li {
            list-style: none;
        }

        .mobile-submenu li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 20px 10px 55px;
            color: #555;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .mobile-submenu li a i {
            color: #0077C8;
            width: 20px;
            font-size: 14px;
        }

        .mobile-submenu li a:hover {
            background: #e8f0fe;
            color: #0077C8;
        }

        .mobile-submenu .sub-title {
            font-weight: 700;
            color: #0077C8;
            padding: 12px 20px 8px 55px;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-actions {
            padding: 20px;
            border-top: 2px solid #f0f0f0;
            margin-top: 10px;
        }

        .mobile-actions a {
            display: block;
            padding: 12px 20px;
            text-align: center;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            margin-bottom: 10px;
            transition: 0.3s;
        }

        .mobile-actions .btn-call {
            background: #0077C8;
            color: #fff;
        }

        .mobile-actions .btn-book-mobile {
            background: #2DBE60;
            color: #fff;
        }

        .mobile-actions .btn-call:hover,
        .mobile-actions .btn-book-mobile:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* ==========================================================
           IMAGE SLIDER
        ========================================================== */
        .image-slider {
            padding: 0;
            margin: 0;
            background: #f8fbff;
        }

        .image-slider .carousel-item {
            padding: 0;
        }

        .image-slider .carousel-item img {
            width: 100%;
            height: auto;
            max-height: 600px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
            background: #f8fbff;
        }

        .image-slider .carousel-control-prev,
        .image-slider .carousel-control-next {
            width: 50px;
            height: 50px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 119, 200, 0.15);
            border-radius: 50%;
            border: 2px solid rgba(0, 119, 200, 0.2);
            opacity: 0.6;
            transition: 0.3s;
        }

        .image-slider:hover .carousel-control-prev,
        .image-slider:hover .carousel-control-next {
            opacity: 1;
        }

        .image-slider .carousel-control-prev {
            left: 20px;
        }

        .image-slider .carousel-control-next {
            right: 20px;
        }

        .image-slider .carousel-control-prev i,
        .image-slider .carousel-control-next i {
            font-size: 22px;
            color: #0077C8;
        }

        .image-slider .carousel-control-prev:hover,
        .image-slider .carousel-control-next:hover {
            background: #0077C8;
            border-color: #0077C8;
        }

        .image-slider .carousel-control-prev:hover i,
        .image-slider .carousel-control-next:hover i {
            color: #fff;
        }

        /* ==========================================================
           MODERN HERO SECTION
        ========================================================== */
        .hero-modern {
            padding: 60px 0 70px;
            background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-modern::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 119, 200, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-modern .container {
            position: relative;
            z-index: 1;
        }

        .hero-modern .hero-badge {
            display: inline-block;
            background: rgba(45, 190, 96, 0.15);
            color: #2DBE60;
            font-weight: 600;
            font-size: 13px;
            padding: 6px 20px;
            border-radius: 40px;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
            border: 1px solid rgba(45, 190, 96, 0.2);
        }

        .hero-modern h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.15;
            color: #0b1f33;
            margin-bottom: 18px;
        }

        .hero-modern h1 span {
            color: #2DBE60;
            position: relative;
        }

        .hero-modern h1 span::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(0, 119, 200, 0.15);
            border-radius: 4px;
            z-index: -1;
        }

        .hero-modern .hero-desc {
            font-size: 17px;
            color: #555;
            max-width: 500px;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .hero-modern .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 30px;
        }

        .hero-modern .hero-buttons .btn {
            padding: 12px 34px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 15px;
            transition: 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-modern .hero-buttons .btn-primary-modern {
            background: #0077C8;
            color: #fff;
            border: 2px solid #0077C8;
            box-shadow: 0 8px 28px rgba(0, 119, 200, 0.25);
        }

        .hero-modern .hero-buttons .btn-primary-modern:hover {
            background: #005fa3;
            border-color: #005fa3;
            transform: translateY(-3px);
            box-shadow: 0 12px 36px rgba(0, 119, 200, 0.35);
        }

        .hero-modern .hero-buttons .btn-outline-modern {
            background: transparent;
            color: #0077C8;
            border: 2px solid #0077C8;
        }

        .hero-modern .hero-buttons .btn-outline-modern:hover {
            background: #0077C8;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 119, 200, 0.2);
        }

        .hero-modern .hero-stats {
            display: flex;
            gap: 35px;
            flex-wrap: wrap;
        }

        .hero-modern .hero-stats .stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-modern .hero-stats .stat-item .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(0, 119, 200, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0077C8;
            font-size: 18px;
        }

        .hero-modern .hero-stats .stat-item .stat-text strong {
            display: block;
            font-size: 20px;
            font-weight: 700;
            color: #0b1f33;
            line-height: 1.2;
        }

        .hero-modern .hero-stats .stat-item .stat-text span {
            font-size: 13px;
            color: #777;
        }

        .hero-modern .hero-image-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-modern .hero-image-wrapper img {
            max-width: 100%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
            animation: float 5s ease-in-out infinite;
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        /* ===== OTHER SECTIONS ===== */
        .feature-box {
            background: #fff;
            padding: 35px;
            text-align: center;
            border-radius: 20px;
            transition: .4s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-box i {
            font-size: 50px;
            color: #2DBE60;
            margin-bottom: 20px;
        }

        .about-section {
            background: #f8fbff;
        }

        .about-section img {
            border-radius: 25px;
        }

        .service-card {
            background: #fff;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            text-align: center;
            transition: .4s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-12px);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            margin: auto;
            border-radius: 50%;
            background: #0077C8;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .service-icon i {
            font-size: 38px;
            color: #fff;
        }

        .service-card h4 {
            font-weight: 600;
            margin-bottom: 15px;
        }

        .equipment-section {
            background: #fff;
        }

        .equipment-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
            transition: .4s;
            height: 100%;
        }

        .equipment-card:hover {
            transform: translateY(-10px);
        }

        .equipment-card img {
            height: 300px;
            width: 100%;
            object-fit: cover;
        }

        .equipment-content {
            padding: 25px;
        }

        .icu-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #eef8ff, #ffffff);
        }

        .counter-section {
            padding: 80px 0;
            background: #0077C8;
            color: #fff;
        }

        .counter {
            font-size: 48px;
            font-weight: 700;
        }

        .step-box {
            background: #fff;
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
            height: 100%;
        }

        .step-box span {
            width: 60px;
            height: 60px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #2DBE60;
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .testimonial-card {
         /*   max-width: 700px;*/
            margin: auto;
            background: #fff;
            padding: 40px;
            border-radius: 20px;
          /*  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);*/
            text-align: center;
        }

        .testimonial-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            margin-bottom: 20px;
            object-fit: cover;
        }

        .cta-section {
            background: linear-gradient(90deg, #0077C8, #2DBE60);
            padding: 70px 0;
        }

        .footer {
            background: #0b1f33;
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        #scrollTop {
            position: fixed;
            left: 20px;
            bottom: 30px;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            background: #2DBE60;
            color: #fff;
            display: none;
            cursor: pointer;
            z-index: 999;
        }

        .btn-success {
            background: #2DBE60;
            border: none;
        }

        .btn-primary {
            background: #0077C8;
            border: none;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .search-bar {
                max-width: 250px;
                margin: 0 10px;
            }
            .search-bar input {
                padding: 8px 15px;
                font-size: 12px;
            }
            .search-bar button {
                padding: 4px 12px;
                font-size: 11px;
            }
            .nav-actions a span {
                display: none;
            }
            .nav-actions .btn-book {
                padding: 6px 14px;
                font-size: 12px;
            }
            .nav-actions .btn-book span {
                display: inline;
            }
            .mega-menu>li>a {
                padding: 6px 10px;
                font-size: 12px;
            }
            .mega-menu>li>a span {
                display: none;
            }
            .mega-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .mega-dropdown {
                padding: 20px;
            }
            .image-slider .carousel-item img {
                max-height: 450px;
            }
            .image-slider .carousel-control-prev {
                left: 10px;
            }
            .image-slider .carousel-control-next {
                right: 10px;
            }
            .hero-modern h1 {
                font-size: 36px;
            }
            .hero-modern .hero-image-wrapper {
                margin-top: 30px;
            }
        }

        @media (max-width: 767px) {
            .mobile-toggle {
                display: block;
            }
            .mega-menu-wrapper {
                display: none;
            }
            .search-bar {
                display: none;
            }
            .mobile-search-bar {
                display: block;
            }
            .navbar-main .container {
                padding: 8px 12px;
            }
            .nav-logo img {
                height: 35px;
            }
            .nav-actions {
                gap: 5px;
            }
            .nav-actions a {
                padding: 5px 8px;
                font-size: 12px;
            }
            .nav-actions a i {
                font-size: 14px;
            }
            .nav-actions .btn-book {
                padding: 5px 12px;
                font-size: 11px;
            }
            .nav-actions .btn-book span {
                display: none;
            }
            .topbar {
                font-size: 11px;
                padding: 6px 0;
            }
            .topbar .col-md-6 {
                text-align: center !important;
            }
            .topbar .row .col-md-6:first-child {
                margin-bottom: 4px;
            }
            .image-slider .carousel-item img {
                max-height: 300px;
            }
            .image-slider .carousel-control-prev,
            .image-slider .carousel-control-next {
                width: 36px;
                height: 36px;
                opacity: 0.5;
            }
            .image-slider .carousel-control-prev {
                left: 6px;
            }
            .image-slider .carousel-control-next {
                right: 6px;
            }
            .image-slider .carousel-control-prev i,
            .image-slider .carousel-control-next i {
                font-size: 16px;
            }
            .hero-modern {
                padding: 40px 0 50px;
                text-align: center;
            }
            .hero-modern h1 {
                font-size: 30px;
            }
            .hero-modern .hero-desc {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-modern .hero-buttons {
                justify-content: center;
            }
            .hero-modern .hero-stats {
                justify-content: center;
            }
            .hero-modern .hero-image-wrapper img {
                max-height: 280px;
                object-fit: contain;
            }
        }

        @media (max-width: 480px) {
            .nav-logo img {
                height: 30px;
            }
            .nav-actions a {
                padding: 4px 6px;
                font-size: 11px;
            }
            .nav-actions a i {
                font-size: 12px;
            }
            .nav-actions .btn-book {
                padding: 4px 10px;
                font-size: 10px;
            }
            .mobile-menu-panel {
                width: 100%;
                max-width: 100%;
            }
            .mobile-search-bar input {
                padding: 10px 45px 10px 15px;
                font-size: 13px;
            }
            .mobile-search-bar button {
                padding: 6px 15px;
                font-size: 12px;
            }
            .feature-box {
                padding: 25px;
            }
            .service-card {
                padding: 25px;
            }
            .equipment-card img {
                height: 300px;
            }
            .counter {
                font-size: 32px;
            }
            .image-slider .carousel-item img {
                max-height: 220px;
            }
            .hero-modern h1 {
                font-size: 24px;
            }
            .hero-modern .hero-buttons .btn {
                padding: 10px 24px;
                font-size: 13px;
            }
            .hero-modern .hero-stats {
                gap: 20px;
            }
            .hero-modern .hero-stats .stat-item .stat-text strong {
                font-size: 17px;
            }
        }

        @media (max-height: 500px) and (orientation: landscape) {
            .mobile-menu-panel {
                padding: 10px 0;
            }
            .mobile-menu-list>li>a {
                padding: 10px 20px;
                font-size: 14px;
            }
            .mobile-submenu li a {
                padding: 8px 20px 8px 55px;
            }
            .image-slider .carousel-item img {
                max-height: 350px;
            }
            .hero-modern {
                padding: 30px 0;
            }
            .hero-modern h1 {
                font-size: 28px;
            }
        }

        .whatsapp-float{
    position: fixed;
    right: 20px;
    bottom: 90px;      /* Above scroll top button */
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    z-index: 999;
    transition: all .3s ease;

    /* Hidden initially */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-float.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



.whatsapp-float:hover{
    color:#fff;
    background:#1ebe5d;
    transform: scale(1.08);
}

.whatsapp-float.show{
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse{
    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,.7);
    }
    70%{
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}


.music-btn{
    position: fixed;
    left: 20px;
    bottom: 88px; /* Above WhatsApp button */
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#198754);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    transition: .3s ease;

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.music-btn.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: musicPulse 2s infinite;
}

.music-btn:hover{
    transform: scale(1.08);
}

.music-btn.playing{
    background: linear-gradient(135deg,#198754,#20c997);
}

@keyframes musicPulse{
    0%{
        box-shadow:0 0 0 0 rgba(13,110,253,.5);
    }
    70%{
        box-shadow:0 0 0 15px rgba(13,110,253,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(13,110,253,0);
    }
}

/* Hide default cursor (optional) */
/* body{
    cursor:none;
} */

.cursor{
    position:fixed;
    width:40px;
    height:40px;
    border:2px solid #2DBE60;
    border-radius:50%;
    pointer-events:none;
    transform:translate(-50%,-50%);
    transition:width .3s,height .3s,border-color .3s;
    z-index:999999;
    mix-blend-mode:difference;
}

.cursor-dot{
    position:fixed;
    width:8px;
    height:8px;
    background:#2DBE60;
    border-radius:50%;
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:999999;
}
