:root {
            --primary-yellow: #FFC107;
            --secondary-green: #28a745;
            --dark-bg: #121212;
            --light-bg: #f8f9fa;
            --text-light: #ffffff;
            --text-dark: #212529;
            --border-color: #333;
        }

        html {
            scroll-behavior: smooth;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            .aos-init {
                transform: none !important;
                opacity: 1 !important;
            }
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-light);
        }

        h1,
        h2,
        h3,
        .navbar-brand,
        .offcanvas-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .fw-black {
            font-weight: 900 !important;
        }

        /* --- Navigation Bar --- */
        .navbar {
            transition: background-color 0.4s ease, padding 0.4s ease;
        }

        .navbar-scrolled {
            background-color: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .navbar-dark .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            position: relative;
        }

        .navbar-dark .navbar-nav .nav-link:hover,
        .navbar-dark .navbar-nav .nav-link.active {
            color: var(--primary-yellow);
        }

        .navbar-dark .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--primary-yellow);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-dark .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        .btn-pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
            }
        }

        /* --- Offcanvas Mobile Menu --- */
        .navbar-toggler {
            border: 1px solid var(--border-color);
            
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.25rem var(--primary-yellow);
        }

        .offcanvas {
            background-color: var(--dark-bg);
            color: var(--text-light);
            border-left: 1px solid var(--border-color);
        }

        .offcanvas-header {
            border-bottom: 1px solid var(--border-color);
        }

        .offcanvas-title {
            color: var(--primary-yellow);
        }

        .offcanvas-body .navbar-nav .nav-link {
            font-size: 1.1rem;
            padding: 0.8rem 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .offcanvas-body .navbar-nav .nav-item:last-child .nav-link {
            border-bottom: 0;
        }

        .offcanvas-footer {
            padding: 1rem;
            border-top: 1px solid var(--border-color);
            background-color: var(--dark-bg);
        }

        .offcanvas-footer .btn {
            width: 100%;
        }

        /* --- Hero Section --- */
        #hero {
            background: url('hero.jpg') no-repeat center center/cover;
            background-attachment: fixed;
            position: relative;
            min-height: 100vh;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.9));
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content .display-3 {
            color: var(--primary-yellow);
        }

        /* --- General & Section Styles --- */
        .btn-yellow {
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            border: 2px solid var(--primary-yellow);
            font-weight: 700;
            transition: all .3s ease;
            box-shadow: 0 4px 15px rgba(255, 193, 7, .4)
        }

        .btn-yellow:hover {
            background-color: transparent;
            color: var(--primary-yellow);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, .6)
        }

        .btn-green {
            background-color: var(--secondary-green);
            color: var(--text-light);
            border: 2px solid var(--secondary-green);
            font-weight: 700;
            transition: all .3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, .4)
        }

        .btn-green:hover {
            background-color: transparent;
            color: var(--secondary-green);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, .6)
        }

        .section-heading {
            color: var(--primary-yellow);
            font-weight: 900
        }

        .section-subheading {
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, .8)
        }

        .light-section {
            background-color: var(--light-bg);
            color: var(--text-dark)
        }

        .light-section .section-heading {
            color: var(--text-dark)
        }

        .light-section .section-subheading {
            color: #6c757d
        }

        .service-card {
            background: linear-gradient(145deg, #fff, #e6e6e6);
            border: 1px solid #e9ecef;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            position: relative;
            transition: all .4s cubic-bezier(.175, .885, .32, 1.275)
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, .15)
        }

        .service-card .icon-box {
            width: 80px;
            height: 80px;
            margin: -40px auto 20px;
            background-color: var(--secondary-green);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(40, 167, 69, .5);
            transition: all .3s ease
        }

        .service-card:hover .icon-box {
            transform: rotate(360deg) scale(1.1);
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            box-shadow: 0 5px 15px rgba(255, 193, 7, .6)
        }

        .fleet-card {
            overflow: hidden;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
            position: relative
        }

        .fleet-card img {
            transition: transform .5s ease
        }

        .fleet-card:hover img {
            transform: scale(1.1)
        }

        .fleet-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            font-weight: 700
        }

        .fleet-card-body {
            background: linear-gradient(to top, rgba(0, 0, 0, .95) 20%, transparent);
            transition: transform .4s ease
        }

        .fleet-card-body .card-title,
        .fleet-card-body .card-text {
            transition: transform .4s ease
        }

        .fleet-card:hover .fleet-card-body {
            transform: translateY(-10px)
        }

        .fleet-card:hover .card-title {
            transform: translateY(-5px)
        }

        .tour-card {
            background-color: #2c2c2c;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
            transition: transform .3s ease, box-shadow .3s ease
        }

        .tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(255, 193, 7, .2)
        }

        .tour-card .card-header {
            background-color: var(--primary-yellow);
            color: var(--text-dark);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            border-bottom: 0;
            border-top-left-radius: 1rem;
            border-top-right-radius: 1rem
        }

        .achievement-counter h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 3.5rem;
            color: var(--secondary-green)
        }

       
        .destination-card {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
        }

        .destination-card:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
        }

        .destination-card img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .destination-card:hover img {
            transform: scale(1.1);
        }

        .destination-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem 1.5rem 1.5rem;
            color: white;
            background: linear-gradient(to top, rgba(0, 0, 0, 1) 20%, transparent);
        }

        .destination-card-overlay h3 {
            font-weight: 900;
        }

        .destination-card-overlay .btn {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            font-weight: bold;
        }

        .destination-card:hover .destination-card-overlay .btn {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Footer --- */
        #main-footer {
            background-color: #000;
            color: #ccc;
            border-top: 5px solid var(--primary-yellow)
        }

        #main-footer h5 {
            color: var(--primary-yellow);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem
        }

        #main-footer a {
            color: #ccc;
            text-decoration: none;
            transition: color .3s ease
        }

        #main-footer a:hover {
            color: var(--primary-yellow)
        }

        #main-footer .footer-links li {
            margin-bottom: .5rem
        }

        #main-footer .social-icons a {
            font-size: 1.5rem;
            margin: 0 .5rem
        }

        .footer-bottom {
            background-color: #000;
            border-top: 1px solid var(--border-color)
        }

        /* --- Responsive Adjustments --- */
        @media (max-width: 768px) {
            .display-3 {
                font-size: 2.8rem;
            }

            .display-4 {
                font-size: 2.2rem;
            }

            .hero-content p.display-5 {
                font-size: 1.8rem;
            }

            section {
                padding-top: 3rem !important;
                padding-bottom: 3rem !important;
            }

            #hero {
                background-attachment: scroll;
            }
        }

/* my css  */

/* Floating Buttons Base */
/* Floating Buttons - Left Middle */
.floating-buttons {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Button Styles */
.floating-buttons a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: bounceIn 1.2s ease, pulse 2s infinite;
}

/* Individual Button Colors */
.call-btn {
  background-color: #007bff; /* Blue for Call */
  animation: bounceIn 1.2s ease, pulseBlue 2s infinite;
}

.whatsapp-btn {
  background-color: #25D366; /* Green for WhatsApp */
  animation: bounceIn 1.2s ease, pulseGreen 2s infinite;
}

/* Hover Effects */
.floating-buttons a:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Bounce In Animation */
@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

/* Blue Pulse (Call) */
@keyframes pulseBlue {
  0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(0, 123, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

/* Green Pulse (WhatsApp) */
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

