.top-contact {
    display: flex !important;
    justify-content: center !important;
}
@media (max-width:600px) {

    .destinations-bar,
    marquee,
    .header-contact {
        display: none !important;
    }
}

       /* ========== GLOBAL STYLES ========== */
     /* ========== GLOBAL STYLES ========== */
        :root {
            --main: #87016c;
            --yellow: #ddff00;
            --white: #ffffff;
            --black: #000000;
            --orange: #ff6200;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #fff2aa;
            overflow-x: hidden;
            width: 100%;
            min-height: 100vh;
        }

        .container, .container-fluid {
            padding-left: 11px;
            padding-right: 11px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* ========== DESTINATIONS BAR ========== */
        .destinations-bar {
            background: var(--main);
            color: var(--white);
            padding: 8px 0;
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            width: 100%;
        }

        .destinations-scroll {
            display: flex;
            gap: 14px;
            padding: 0 12px;
            align-items: center;
            min-width: max-content;
        }

        .destinations-scroll a {
            color: var(--white);
            font-size: 14px;
            text-decoration: none;
            white-space: nowrap;
        }

        .proprietor-text {
            margin-left: auto;
            font-size: 13px;
            white-space: nowrap;
        }

        /* ========== MARQUEE ========== */
        marquee {
            background: #ffa801;
            padding: 6px 0;
            font-size: 14px;
            width: 100%;
        }

        /* ========== TOP CONTACT ========== */
        .top-contact {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin-bottom: 2px;
            margin-left: 25 0px;
            margin-right: 0px;
        }

        .top-contact a {
            background: #2e1364;
            color: var(--white);
            padding:1px 12px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 18px;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .top-contact i {
            color: #5eff00;
        }

        /* ========== HEADER & NAVBAR ========== */
        .main-header {
            background: var(--main);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 0px 1;
        }

        /* Logo Container */
        .navbar-brand {
            display: flex !important;
            align-items: center !important;
            margin-right: 0 !important;
        }

        .nav-logo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(#ffffff);
        }

        /* Brand Text */
        .brand-text {
            line-height: 1.2;
            margin-left: 15px;
        }

        .brand-title {
            display: block;
  font-size: 38px;
  font-weight: 800;
  color: #fffffc;
  letter-spacing: 1px;
        }

        .brand-tagline {
            display: block;
            font-size: 14px;
            color: var(--white);
            letter-spacing: 0.5px;
        }

        /* Navigation Menu */
        .navbar-nav {
            gap: 5px;
        }

        .navbar-nav .nav-link {
            background: var(--yellow);
            color: var(--black) !important;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 15px;
            text-align: center;
            margin: 2px 0;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            background: #ffeb3b;
            transform: translateY(-2px);
        }

        /* Toggle Button */
        .navbar-toggler {
            border: 2px solid var(--yellow);
            padding: 6px 10px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ========== RESPONSIVE DESIGN ========== */

        /* Tablet (768px - 991px) */
        @media (max-width: 991px) {
            .brand-title {
                font-size: 22px;
            }
            
            .brand-tagline {
                font-size: 12px;
            }
            
            .nav-logo {
                width: 60px;
                height: 60px;
            }
            
            .navbar-collapse {
                background: var(--main);
                padding: 15px;
                border-radius: 10px;
                margin-top: 15px;
                max-height: 70vh;
                overflow-y: auto;
            }
            
            .navbar-nav .nav-link {
                width: 100%;
                text-align: left;
                padding: 12px 15px;
            }
            
            .proprietor-text {
                display: none;
            }
        }

        /* Mobile (576px - 767px) */
        @media (max-width: 767px) {
            .brand-title {
                font-size: 20px;
            }
            
            .brand-tagline {
                font-size: 11px;
            }
            
            .nav-logo {
                width: 55px;
                height: 55px;
            }
            
            .top-contact {
                flex-direction: column;
                align-items: center;
            }
            
            .top-contact a {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
            
            .destinations-scroll {
                gap: 10px;
            }
            
            .destinations-scroll a {
                font-size: 12px;
            }
        }

        /* Small Mobile (max-width: 575px) */
        @media (max-width: 575px) {
            .navbar-brand {
                width: calc(100% - 60px);
            }
            
            .brand-text {
                margin-left: 10px;
            }
            
            .brand-title {
                font-size:45px;
            }
            
            .brand-tagline {
                font-size: 17px;
            }
            
            .nav-logo {
                width: 50px;
                height: 50px;
            }
            
            .navbar-toggler {
                position: absolute;
                right: -4px;
              top:0%;
                transform: translateY(50%);
            }.top-contact
            
            .destinations-scroll {
                gap: 8px;
            }
            
            .destinations-scroll a {
                font-size: 11px;
            }
            
            marquee {
                font-size: 12px;
            }
        }

        /* Extra Small Mobile (max-width: 400px) */
        @media (max-width: 400px) {
            .brand-title {
                font-size: 35px;
            }
            
            .brand-tagline {
                font-size: 12px;
            }
            
            .nav-logo {
                width: 45px;
                height: 45px;
            }
            
            .brand-text {
                margin-left: 8px;
            }
            
            .destinations-scroll a {
                font-size: 10px;
            }
            
            .top-contact a {
                font-size: 20px;
                padding: 0px 0px;
            }
        }

        /* ========== FLOATING BUTTONS ========== */
        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 9999;
        }

        .floating-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--white);
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .floating-btn:active {
            transform: scale(0.95);
        }

        /* Button Colors */
        .whatsapp-btn {
            background: #25D366;
        }

        .call-btn {
            background: #ffa801;
        }

        .back-to-top {
            background: #ff029e;
        }

        /* Responsive Floating Buttons */
        @media (max-width: 767px) {
            .floating-buttons {
                right: 15px;
                bottom: 15px;
            }
            
            .floating-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
        }

        @media (max-width: 400px) {
            .floating-buttons {
                right: 10px;
                bottom: 10px;
            }
            
            .floating-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        /* ========== UTILITY CLASSES ========== */
        .btn {
            text-decoration: none;
            background-color: #0800ff;
            color: var(--white);
            border-radius: 8px;
            padding: 10px 20px;
            font-size: 16px;
            display: inline-block;
            margin-top: 10px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: #0600d6;
            transform: translateY(-2px);
        }

        /* ========== SCROLLBAR STYLING ========== */
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--main);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #6a0158;
        }
    /* header  section  css end */