  /* CSS Variables */
        :root {
            --primary: #0f172a;
            --secondary: #f59e0b;
            --accent: #06b6d4;
            --light: #f8fafc;
            --dark: #0f172a;
            --text: #334155;
            --gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --radius: 16px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            line-height: 1.2;
            color: var(--light);
                margin-bottom: 20px;

        }

       .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}


        section {
            padding: 34px 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--gradient-accent);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 1rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
        }

        .btn-outline:hover {
            background: var(--secondary);
            color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
    background: linear-gradient(135deg, #e1d322 0%, var(--secondary) 100%);
                -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }

        .section-title p {
            color: #efefef;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

       /* Header Styles */
header {
    position: absolute;   /* NOT sticky */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;

}



/* Background Image Overlay */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('http://localhost/hotel/uploads/images/360_F_581897975_DLw9vTi0W52gbODjNdkPOap322Tnqs3M.jpg')
        center / cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding-top: 160px;
    max-width: 800px;
}


/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
}

.logo {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 155px;   /* increase from 42px */
    width: auto;
    object-fit: contain;
}

.footer-logo {
    margin: -32px 0px -1px;
    max-width: 124px;
    height: auto;
    display: block;
}


.navbar.scrolled .logo img {
    max-height: 48px;
}


/* Add solid background on scroll (optional aesthetic) */
/* .navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    padding: 15px 0;
} */

/* Logo */


.logo i {
    color: var(--secondary);
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Header Content */
.header-content {
    position: relative;
    z-index: 10;
    margin-top: 120px;
    max-width: 800px;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: white;
    line-height: 1.1;
}

.header-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #e2e8f0;
}

/* Action Buttons */
.header-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
        margin-top: 23px;
}

/* Stats Section */
.stats {
    display: flex;
    gap: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 25;
}

/* ==========================
   Responsive Design
   ========================== */

/* Tablets & smaller devices */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.4s ease-in-out;
        z-index: 15;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        justify-content: space-between;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 1rem;
    }

    .header-actions {
        flex-direction: column;
        gap: 15px;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
}

/* Very small devices (phones) */
@media (max-width: 576px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .nav-links {
        width: 94%;
    }
}


        /* Services Section */



        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient);
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover i,
        .service-card:hover h3,
        .service-card:hover p {
            color: white;
        }

        .service-card i {
            font-size: 3rem;
            margin-bottom: 25px;
            color: var(--secondary);
            transition: var(--transition);
        }

        .service-card h3 {
            margin-bottom: 15px;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .service-card p {
            color: #252527;
            transition: var(--transition);
        }

        /* Packages Section */
         .packages {
            background: var(--light);
        }

        .package-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .tab-btn {
            padding: 12px 30px;
            background: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .tab-btn.active {
            background: var(--gradient-accent);
            color: white;
        }

        .tab-btn:hover:not(.active) {
            background: var(--accent);
            color: white;
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .package-category {
            margin-bottom: 70px;
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .category-title {
            font-size: 2rem;
            background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .scroll-controls {
            display: flex;
            gap: 10px;
        }

        .scroll-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: none;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .scroll-btn:hover {
            background: var(--secondary);
            color: white;
        }

        .package-scroll-container {
            position: relative;
            overflow: hidden;
        }

        .package-scroll {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 10px 5px 25px;
            scrollbar-width: thin;
            scrollbar-color: var(--secondary) transparent;
        }

        .package-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .package-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .package-scroll::-webkit-scrollbar-thumb {
            background: var(--secondary);
            border-radius: 10px;
        }

        .package-card {
            background: white;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            flex: 0 0 302px;
            display: flex;
            flex-direction: column;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .package-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .package-card:hover .package-image img {
            transform: scale(1.1);
        }

        .package-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gradient-accent);
            color: white;
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .package-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .package-content h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .package-content p {
            color: #64748b;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .package-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .package-price {
            color: var(--secondary);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .package-duration {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #64748b;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .scroll-controls {
                align-self: flex-end;
            }

            .package-card {
                flex: 0 0 280px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .category-title {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 576px) {
            .package-card {
                flex: 0 0 300px;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .category-title {
                font-size: 1.5rem;
            }
        }
        /* Popup Modal */
       .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px; /* Added for mobile spacing */
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: var(--radius);
    width: 100%;
    max-width: 500px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(50px);
    transition: transform 0.5s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary);
}

.modal-title {
    text-align: center;
    margin-bottom: 25px;
}

.modal-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary);
    line-height: 1.2;
}

.modal-title p {
    color: #64748b;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.offer-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    font-size: 0.95rem;
}
/* Tablets (up to 992px) */
@media (max-width: 992px) {
    .modal {
        max-width: 450px;
        padding: 35px;
    }

    .modal-title h2 {
        font-size: 1.8rem;
    }

    .modal-title p {
        font-size: 0.95rem;
    }

    .form-control {
        font-size: 0.95rem;
    }
}

/* Mobiles (up to 576px) */
@media (max-width: 576px) {
    .modal {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
        border-radius: 15px;
    }

    .modal-title h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .modal-title p {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-control {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .offer-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }

    .close-modal {
        font-size: 1.3rem;
        top: 10px;
        right: 10px;
    }
}

/* Very small devices (up to 400px) */
@media (max-width: 400px) {
    .modal {
        padding: 20px 15px;
    }

    .modal-title h2 {
        font-size: 1.3rem;
    }

    .modal-title p {
        font-size: 0.85rem;
    }

    .form-control {
        font-size: 0.85rem;
    }
}


        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            color: white;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }

        .footer-column p {
            color: #94a3b8;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-column ul li a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #94a3b8;
        }

        /* Responsive Design */


        /* @media (max-width: 1024px) {
            .header-content h1 {
                font-size: 3.5rem;
            }

            .section-title h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 20px;
            }

            .nav-links {
                gap: 20px;
            }

            .header-content {
                margin-top: 80px;
                text-align: center;
            }

            .header-content h1 {
                font-size: 2.8rem;
            }

            .header-actions {
                justify-content: center;
            }

            .stats {
                justify-content: center;
            }

            .section-title h2 {
                font-size: 2.3rem;
            }
        }

        @media (max-width: 576px) {
            .header-content h1 {
                font-size: 2.2rem;
            }

            .header-actions {
                flex-direction: column;
                align-items: center;
            }

            .stats {
                flex-wrap: wrap;
                gap: 30px;
            }

            .package-grid {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        } */


        /* Uttarakhand Section */
.uttarakhand-section {
  background: linear-gradient(to bottom, #ffffff, #f2f7f9);
  padding: 15px 2px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b3954;
  margin-bottom: 10px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #0b3954;
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
}

.package-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 20px;
  text-align: left;
}

.package-content h3 {
  font-size: 1.3rem;
  color: #0b3954;
  margin-bottom: 8px;
}

.package-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-weight: 600;
  color: #e63946;
  font-size: 1rem;
}

.btn {
  background: #0b3954;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #e63946;
}

 /* CTA Section - Static with transitions */
        .cta {
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #0f172a;
            padding: 20px;
        }

        /* Container for image and content */
        .cta-container {
            position: relative;
            width: 100%;
            height: 100%;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Background images container */
        .cta-images {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* Individual background images */
        .cta-bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            z-index: 0;
        }

        .cta-bg-image.active {
            opacity: 1;
        }

        /* Dark overlay for text readability */
        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
            z-index: 1;
        }

        /* Content container */
        .cta-content-container {
            position: relative;
            z-index: 2;
            width: 90%;
            max-width: 700px;
            padding: 30px 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            backdrop-filter: blur(5px);
        }

        .cta-content-container.active {
            opacity: 1;
            transform: translateY(0);
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 15px;
            color: white;
            line-height: 1.2;
        }

        .cta p {
            font-size: 1rem;
            color: #f1f5f9;
            line-height: 1.6;
            margin-bottom: 25px;
            padding: 0 10px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: white;
            color: var(--primary);
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            border: 2px solid transparent;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
            background-color: #f0f9ff;
            border-color: var(--primary);
        }

        .btn i {
            transition: transform 0.3s ease;
        }

        .btn:hover i {
            transform: translateX(4px);
        }

        /* Navigation arrows */
        .cta-nav-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 15px;
            z-index: 3;
            pointer-events: none;
        }

        .nav-arrow {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            pointer-events: auto;
        }

        .nav-arrow:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
            border-color: white;
        }

        /* Navigation dots */
        .cta-nav-dots {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            gap: 10px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-dot.active {
            background-color: white;
            transform: scale(1.2);
        }

        .nav-dot:hover {
            transform: scale(1.2);
            background-color: rgba(255, 255, 255, 0.8);
        }

        /* Content indicators */
        .content-indicator {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            min-width: 160px;
            max-width: 90%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .content-indicator span {
            font-weight: 600;
            color: #fbbf24;
        }

        /* Auto-play toggle */
        .autoplay-toggle {
            position: absolute;
            top: 20px;
            right: 15px;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .autoplay-toggle:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .toggle-switch {
            width: 36px;
            height: 18px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 9px;
            position: relative;
            transition: background-color 0.3s ease;
        }

        .toggle-switch.active {
            background-color: var(--primary);
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            width: 14px;
            height: 14px;
            background-color: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
        }

        .toggle-switch.active::after {
            transform: translateX(18px);
        }

        /* Tablet devices (768px to 1024px) */
        @media (min-width: 768px) {
            .content-section {
                padding: 80px 40px;
            }

            .content-section h1 {
                font-size: 2.5rem;
            }

            .content-section p {
                font-size: 1.1rem;
            }

            .cta {
                height: 85vh;
                padding: 30px;
            }

            .cta-content-container {
                width: 80%;
                max-width: 800px;
                padding: 40px 30px;
            }

            .cta h2 {
                font-size: 2.8rem;
                margin-bottom: 20px;
            }

            .cta p {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }

            .btn {
                padding: 16px 32px;
                font-size: 1.1rem;
            }

            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .cta-nav-arrows {
                padding: 0 25px;
            }

            .content-indicator, .autoplay-toggle {
                top: 25px;
            }

            .content-indicator {
                font-size: 1rem;
                padding: 10px 20px;
            }

            .autoplay-toggle {
                font-size: 0.9rem;
                padding: 8px 15px;
            }

            .cta-nav-dots {
                bottom: 30px;
                gap: 12px;
            }

            .nav-dot {
                width: 14px;
                height: 14px;
            }
        }

        /* Desktop devices (1025px and above) */
        @media (min-width: 1025px) {
            .cta {
                height: 90vh;
                padding: 40px;
            }

            .cta-content-container {
                max-width: 900px;
                padding: 50px 40px;
            }

            .cta h2 {
                font-size: 3.5rem;
                margin-bottom: 25px;
            }

            .cta p {
                font-size: 1.2rem;
                margin-bottom: 35px;
            }

            .nav-arrow {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .cta-nav-arrows {
                padding: 0 40px;
            }

            .content-indicator, .autoplay-toggle {
                top: 30px;
            }

            .content-indicator {
                font-size: 1.1rem;
                min-width: 200px;
            }

            .autoplay-toggle {
                right: 30px;
                padding: 10px 18px;
            }

            .cta-nav-dots {
                bottom: 35px;
                gap: 15px;
            }

            .nav-dot {
                width: 16px;
                height: 16px;
            }
        }

        /* Small mobile devices (up to 480px) */
        @media (max-width: 480px) {
            .cta {
                height: 75vh;
                padding: 15px;
            }

            .cta-content-container {
                width: 95%;
                padding: 25px 15px;
            }

            .cta h2 {
                font-size: 1.8rem;
                margin-bottom: 12px;
            }

            .cta p {
                font-size: 0.95rem;
                margin-bottom: 20px;
                padding: 0;
            }

            .btn {
                padding: 12px 24px;
                font-size: 0.95rem;
                gap: 6px;
            }

            .nav-arrow {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .cta-nav-arrows {
                padding: 0 10px;
            }

            .content-indicator {
                font-size: 0.8rem;
                padding: 6px 12px;
                min-width: 140px;
                top: 15px;
            }

            .autoplay-toggle {
                top: 15px;
                right: 10px;
                padding: 5px 10px;
                font-size: 0.8rem;
                gap: 6px;
            }

            .toggle-switch {
                width: 32px;
                height: 16px;
            }

            .toggle-switch::after {
                width: 12px;
                height: 12px;
            }

            .toggle-switch.active::after {
                transform: translateX(16px);
            }

            .cta-nav-dots {
                bottom: 20px;
                gap: 8px;
            }

            .nav-dot {
                width: 10px;
                height: 10px;
            }
        }

        /* Landscape orientation for mobile */
        @media (max-height: 600px) and (orientation: landscape) {
            .cta {
                height: 100vh;
            }

            .cta-content-container {
                padding: 20px;
                max-width: 600px;
            }

            .cta h2 {
                font-size: 1.8rem;
                margin-bottom: 10px;
            }

            .cta p {
                font-size: 0.9rem;
                margin-bottom: 15px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

            .content-indicator, .autoplay-toggle {
                top: 10px;
            }

            .cta-nav-dots {
                bottom: 15px;
            }
        }
         /* Testimonials Section */
        .testimonials {
            background: #323030;;
        }

        .testimonial-slider {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial-card {
            background: var(--light);
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin: 0 15px;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 5rem;
            color: var(--secondary);
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .testimonial-image {
            flex-shrink: 0;
        }

        .testimonial-image img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
        }

        .testimonial-text p {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .testimonial-author h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .testimonial-author span {
            color: var(--secondary);
            font-size: 0.9rem;
        }
/* For tablets and smaller screens */
@media (max-width: 992px) {
    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-card::before {
        font-size: 4rem;
        left: 15px;
        top: 10px;
    }

    .testimonial-image img {
        width: 80px;
        height: 80px;
    }

    .testimonial-text p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

/* For mobile devices */
@media (max-width: 576px) {
    .testimonials {
        padding: 60px 15px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card::before {
        font-size: 3rem;
        left: 10px;
        top: 5px;
    }

    .testimonial-image img {
        width: 70px;
        height: 70px;
    }

    .testimonial-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .testimonial-author h4 {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }
}

        /* About Company Section */
.about-company {
  background: linear-gradient(135deg, #ffffff 40%, #f4f7f9 100%);
  padding: 20px 20px;
  font-family: "Poppins", sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
}

.about-image {
  flex: 1 1 45%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-content {
  flex: 1 1 50%;
  text-align: left;
}

.about-content h2 {
  font-size: 2.4rem;
  color: #0b3954;
  margin-bottom: 10px;
  position: relative;
}

.about-content h2 span {
  color: #e63946;
}

.about-content h3 {
  font-size: 1.4rem;
  color: #2a2a2a;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-content p span {
  color: #0b3954;
  font-weight: 600;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  background: #0b3954;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #e63946;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }
  .about-content {
    text-align: center;
  }
  .about-image {
    width: 100%;
  }
}


 /* Dropdown container */
.nav-links li {
  position: relative;
}

/* Submenu (Dropdown) */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.7); /* semi-transparent white */
  backdrop-filter: blur(8px);
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99;
  display: none; /* hidden by default */
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 993px) {
  .nav-links li:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Dropdown link style */
.sub-menu li a {
  padding: 10px 15px;
  color: #333;
  transition: background 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.sub-menu li:last-child a {
  border-bottom: none;
}

.sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #000;
}

/* Optional arrow beside dropdown link */
.nav-links li a i {
  margin-left: 6px;
  font-size: 0.8rem;
}

/* Active dropdown (for mobile click) */
.nav-links li.active > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: static; /* appear just below the clicked item */
  margin-top: 10px;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .sub-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    margin-left: 20px;
    display: none; /* hidden until clicked */
  }

  .sub-menu li a {
    padding: 10px 20px;
  }
}
/* ============================================
   FIXED DESTINATIONS MEGA MENU POSITIONING
   ============================================ */

/* Mega Menu Container */
.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links > li > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-links > li:hover > a i {
    transform: rotate(180deg);
}

/* Base Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    width: 800px;
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    border-radius: 12px;
    border-top: 4px solid var(--secondary);
}

/* Show mega menu on hover */
.nav-links > li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* DESTINATIONS Mega Menu - FIXED LEFT POSITION */
.nav-links > li:nth-child(2) .mega-menu {
    left: -200px; /* Adjust this value to move it left */
    transform: translateY(20px);
}

.nav-links > li:nth-child(2):hover .mega-menu {
    transform: translateY(0);
}

/* PACKAGES Mega Menu - CENTERED */
.nav-links > li:nth-child(3) .mega-menu {
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

.nav-links > li:nth-child(3):hover .mega-menu {
    transform: translateX(-50%) translateY(0);
}

/* SERVICES Mega Menu - RIGHT ALIGNED */
.nav-links > li:nth-child(4) .mega-menu {
    right: 0;
    left: auto;
    transform: translateY(20px);
}

.nav-links > li:nth-child(4):hover .mega-menu {
    transform: translateY(0);
}

/* Make Destinations mega menu narrower if needed */
.nav-links > li:nth-child(2) .mega-menu {
    width: 750px; /* Slightly narrower for left alignment */
}

/* Mega Content Grid */
.mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mega-column {
    padding: 0.5rem;
}

.mega-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.mega-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 0.8rem;
}

.mega-column ul li a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    padding: 0.3rem 0;
    display: block;
    position: relative;
}

.mega-column ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--secondary);
}

.mega-column ul li a:hover {
    color: var(--secondary);
    padding-left: 15px;
}

.mega-column ul li a:hover::before {
    left: 0;
    opacity: 1;
}

/* Mega Image/Featured Section */
.mega-image {
    background: var(--gradient);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    grid-column: span 1;
}

.mega-image h4 {
    color: white;
    margin-bottom: 1rem;
}

.mega-image h4::after {
    background: var(--gradient-accent);
}

.mega-image p {
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.mega-image .btn {
    background: var(--gradient-accent);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    transition: var(--transition);
}

.mega-image .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

/* Mobile Mega Menu Styles */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        width: 100%;
        transform: none !important;
        background: rgba(0, 0, 0, 0.9);
        padding: 1.5rem;
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s ease;
        margin-top: 10px;
        left: 0 !important;
        right: auto !important;
    }

    .nav-links > li.active .mega-menu {
        opacity: 1;
        visibility: visible;
        max-height: 1000px;
    }

    .mega-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mega-image {
        order: -1;
    }

    .nav-links > li > a i {
        font-size: 0.7rem;
    }
}

/* Tablet adjustments */
@media (max-width: 1200px) and (min-width: 993px) {
    .mega-menu {
        width: 700px;
    }

    .nav-links > li:nth-child(2) .mega-menu {
        left: -150px;
        width: 650px;
    }

    .mega-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-image {
        grid-column: span 2;
    }
}

/* Desktop adjustments */
@media (min-width: 993px) {
    .nav-links {
        gap: 35px;
    }

    /* Ensure Destinations doesn't go off-screen on smaller screens */
    @media (max-width: 1300px) {
        .nav-links > li:nth-child(2) .mega-menu {
            left: -100px;
            width: 700px;
        }
    }

    @media (max-width: 1100px) {
        .nav-links > li:nth-child(2) .mega-menu {
            left: -50px;
            width: 650px;
        }
    }
}

/* Remove conflict with dropdown styles */
.nav-links li .sub-menu {
    display: none !important;
}

/* ============================================
   FIXED MOBILE MEGA MENU
   ============================================ */

/* Mobile Mega Menu Styles - FIXED */
@media (max-width: 992px) {
    /* First, ensure the mobile menu is properly positioned */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        background: rgba(15, 23, 42, 0.98); /* Dark background */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        transition: right 0.4s ease-in-out;
        z-index: 15;
        padding-top: 80px;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links > li > a {
        font-size: 1.1rem;
        padding: 15px 25px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links > li > a i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .nav-links > li.active > a i {
        transform: rotate(180deg);
    }

    /* Mega Menu for Mobile */
    .mega-menu {
        position: static;
        width: 100%;
        transform: none !important;
        background: rgba(30, 41, 59, 0.8);
        padding: 0;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        margin-top: 0;
        box-shadow: none;
        border-top: none;
    }

    .nav-links > li.active .mega-menu {
        max-height: 800px;
        padding: 0 0 20px 0;
    }

    .mega-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 15px 25px;
    }

    .mega-column {
        padding: 0;
        margin-bottom: 20px;
    }

    .mega-column h4 {
        font-size: 1rem;
        color: white;
        margin-bottom: 10px;
        padding-bottom: 8px;
        border-bottom: 2px solid var(--secondary);
    }

    .mega-column h4::after {
        display: none;
    }

    .mega-column ul li {
        margin-bottom: 8px;
    }

    .mega-column ul li a {
        color: #cbd5e1;
        font-size: 0.9rem;
        padding: 5px 0;
    }

    .mega-column ul li a:hover {
        color: var(--secondary);
        padding-left: 10px;
    }

    /* Mega Image Section for Mobile */
    .mega-image {
        background: rgba(245, 158, 11, 0.1);
        border-radius: 8px;
        padding: 15px;
        margin: 15px 0;
        border: 1px solid rgba(245, 158, 11, 0.2);
    }

    .mega-image h4 {
        color: var(--secondary);
        border-bottom: none;
    }

    .mega-image p {
        color: #e2e8f0;
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .mega-image .btn {
        background: var(--gradient-accent);
        color: white;
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 20px;
    }

    /* Remove hover effects for mobile */
    .nav-links > li:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-links > li:hover > a i {
        transform: none;
    }

    /* Mobile menu toggle */
    .menu-toggle {
        display: block;
    }
}

/* Very small devices (phones) */
@media (max-width: 576px) {
    .nav-links {
        width: 85%;
    }

    .mega-menu {
        max-height: 0;
    }

    .nav-links > li.active .mega-menu {
        max-height: 700px;
    }

    .mega-content {
        padding: 10px 20px;
    }

    .mega-column h4 {
        font-size: 0.95rem;
    }

    .mega-column ul li a {
        font-size: 0.85rem;
    }
}

/* Keep desktop styles as they are */
@media (min-width: 993px) {
    /* Your existing desktop mega menu styles remain the same */
    .nav-links > li {
        position: relative;
    }

    .nav-links > li > a {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .nav-links > li > a i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .nav-links > li:hover > a i {
        transform: rotate(180deg);
    }

    /* Base Mega Menu Styles */
    .mega-menu {
        position: absolute;
        top: 100%;
        width: 800px;
        background: white;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        border-radius: 12px;
        border-top: 4px solid var(--secondary);
    }

    /* Show mega menu on hover */
    .nav-links > li:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* DESTINATIONS Mega Menu - FIXED LEFT POSITION */
    .nav-links > li:nth-child(2) .mega-menu {
        left: -200px;
        transform: translateY(20px);
    }

    .nav-links > li:nth-child(2):hover .mega-menu {
        transform: translateY(0);
    }

    /* PACKAGES Mega Menu - CENTERED */
    .nav-links > li:nth-child(3) .mega-menu {
        left: 50%;
        transform: translateX(-50%) translateY(20px);
    }

    .nav-links > li:nth-child(3):hover .mega-menu {
        transform: translateX(-50%) translateY(0);
    }

    /* SERVICES Mega Menu - RIGHT ALIGNED */
    .nav-links > li:nth-child(4) .mega-menu {
        right: 0;
        left: auto;
        transform: translateY(20px);
    }

    .nav-links > li:nth-child(4):hover .mega-menu {
        transform: translateY(0);
    }

    /* Make Destinations mega menu narrower if needed */
    .nav-links > li:nth-child(2) .mega-menu {
        width: 750px;
    }

    /* Mega Content Grid */
    .mega-content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .mega-column {
        padding: 0.5rem;
    }

    .mega-column h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        margin-bottom: 1.2rem;
        color: var(--primary);
        font-size: 1.1rem;
        position: relative;
        padding-bottom: 0.5rem;
    }

    .mega-column h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--gradient-accent);
        border-radius: 2px;
    }

    .mega-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mega-column ul li {
        margin-bottom: 0.8rem;
    }

    .mega-column ul li a {
        color: var(--text);
        text-decoration: none;
        transition: var(--transition);
        font-size: 0.95rem;
        padding: 0.3rem 0;
        display: block;
        position: relative;
    }

    .mega-column ul li a::before {
        content: '→';
        position: absolute;
        left: -20px;
        opacity: 0;
        transition: var(--transition);
        color: var(--secondary);
    }

    .mega-column ul li a:hover {
        color: var(--secondary);
        padding-left: 15px;
    }

    .mega-column ul li a:hover::before {
        left: 0;
        opacity: 1;
    }

    /* Mega Image/Featured Section */
    .mega-image {
        background: var(--gradient);
        border-radius: 12px;
        padding: 1.5rem;
        color: white;
        grid-column: span 1;
    }

    .mega-image h4 {
        color: white;
        margin-bottom: 1rem;
    }

    .mega-image h4::after {
        background: var(--gradient-accent);
    }

    .mega-image p {
        color: #e2e8f0;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .mega-image .btn {
        background: var(--gradient-accent);
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        width: fit-content;
        transition: var(--transition);
    }

    .mega-image .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
    }

    /* Remove conflict with dropdown styles */
    .nav-links li .sub-menu {
        display: none !important;
    }
}
.floating-call,
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-call {
    left: 20px;
    background: #0d6efd; /* Blue */
}

.floating-whatsapp {
    right: 20px;
    background: #25D366; /* WhatsApp Green */
}

.floating-call:hover,
.floating-whatsapp:hover {
    transform: scale(1.1);
}
