
        /* CSS Variables */
        :root {
            /* Primary Colors - Taxi Theme (Yellow & Black) */
            --primary-color: #FFC107;
            --primary-dark: #FFA000;
            --primary-light: #FFD54F;
            --secondary-color: #212121;
            --secondary-light: #424242;
            
            /* Accent Colors */
            --accent-color: #FF5722;
            --success-color: #4CAF50;
            --warning-color: #FF9800;
            --danger-color: #F44336;
            
            /* Neutral Colors */
            --text-dark: #212121;
            --text-light: #757575;
            --text-muted: #9E9E9E;
            --bg-light: #F9F9F9;
            --bg-white: #FFFFFF;
            --border-color: #E0E0E0;
            
            /* Typography */
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Playfair Display', serif;
            
            /* Spacing */
            --section-padding: 80px;
            --container-padding: 15px;
            
            /* Shadows */
            --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 25px rgba(0,0,0,0.08);
            --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
            --shadow-xl: 0 30px 50px rgba(0,0,0,0.15);
            
            /* Transitions */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            
            /* Border Radius */
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 50px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            color: var(--text-dark);
            background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
            line-height: 1.6;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        /* Header Section */
       .packages-header {
    position: relative;
    overflow: hidden;
}

.packages-header::before {
    content: '';
    position: absolute;
    inset: 0;                 /* same as top:0; left:0; right:0; bottom:0; */
    background-image: url("/images/packages-her-bg.png");
    background-size: cover;   /* makes image fully cover */
    background-position: bottom; /* keeps image centered */
    background-repeat: no-repeat;
    opacity: 0.75;
    z-index: 0;
}

.packages-header > * {
    position: relative;
    z-index: 1; /* keeps content above background */
}

.packages-header {
    min-height: 80vh; /* full screen hero */
}



        .header-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 900px;
            margin: 0 auto;
        }

        .header-subtitle {
            display: inline-block;
            background: var(--primary-color);
            color: var(--secondary-color);
            font-weight: 600;
            padding: 8px 24px;
            border-radius: var(--radius-full);
            margin-bottom: 20px;
            letter-spacing: 2px;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .header-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
            font-family: var(--font-secondary);
        }

        .header-content h1 span {
            color: var(--primary-color);
        }

        .header-content p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .header-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 40px;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }






        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-subtitle {
            display: inline-block;
            background: var(--primary-light);
            color: var(--secondary-color);
            padding: 6px 20px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-family: var(--font-secondary);
        }

        .section-title span {
            color: var(--primary-dark);
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 5px;
        }

        .section-description {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Packages Grid */
        .packages-section {
            padding: var(--section-padding) 0;
        }

        .packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }









        /* Package Cards */
        .package-card {
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid var(--border-color);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: var(--shadow-sm);
        }

        .package-badge.popular {
            background: var(--accent-color);
            color: white;
        }

        .package-badge.hot {
            background: var(--danger-color);
            color: white;
        }

        .package-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .package-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .package-card:hover .package-image img {
            transform: scale(1.1);
        }

        .package-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .package-category {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-light);
            color: var(--text-light);
            padding: 6px 16px;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            width: fit-content;
        }

        .package-category i {
            color: var(--primary-dark);
        }

        .package-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
            line-height: 1.3;
            font-family: var(--font-secondary);
        }

        .package-description {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .package-features {
            list-style: none;
            margin-bottom: 25px;
            flex: 1;
        }

        .package-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .package-features li i {
            color: var(--success-color);
            font-size: 0.85rem;
            width: 18px;
        }

        .package-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .package-price {
            display: flex;
            flex-direction: column;
        }

        .price-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-amount {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1;
        }

        .price-amount span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .btn-book {
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 12px 30px;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition-normal);
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-book:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--primary-color);
            padding: 12px 30px;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition-normal);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
        }









        /* Featured Yatra Packages */
        .yatra-section {
            background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
            padding: var(--section-padding) 0;
            position: relative;
        }

        .yatra-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .yatra-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            position: relative;
            border: 1px solid var(--border-color);
        }

        .yatra-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .yatra-header {
            background: linear-gradient(135deg, var(--secondary-color), #000);
            color: white;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }

        .yatra-header::before {
            content: '🚗';
            position: absolute;
            right: 20px;
            bottom: -20px;
            font-size: 6rem;
            opacity: 0.1;
            transform: rotate(-10deg);
        }

        .yatra-header h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: var(--font-secondary);
            color: var(--primary-color);
        }

        .yatra-header p {
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .yatra-body {
            padding: 30px;
        }

        .yatra-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .yatra-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .yatra-features li i {
            color: var(--primary-dark);
            width: 20px;
        }










        /* Why Choose Us Section */
        .why-choose-section {
            background: var(--secondary-color);
            color: white;
            padding: var(--section-padding) 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .feature-item {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(10px);
            transition: var(--transition-normal);
        }

        .feature-item:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        .feature-item h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .feature-item p {
            opacity: 0.9;
            font-size: 0.95rem;
        }









        /* Call to Action */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-family: var(--font-secondary);
        }

        .cta-section p {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-cta {
            background: var(--secondary-color);
            color: white;
            padding: 15px 40px;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-normal);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
            border: 2px solid transparent;
        }

        .btn-cta:hover {
            background: black;
            transform: scale(1.05);
        }

        .btn-cta-outline {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            padding: 15px 40px;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-normal);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }

        .btn-cta-outline:hover {
            background: var(--secondary-color);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .header-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .packages-grid,
            .yatra-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .packages-header {
                padding: 40px 0 60px;
            }
            
            .header-content h1 {
                font-size: 2rem;
            }
            
            .header-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .packages-grid {
                grid-template-columns: 1fr;
            }
            
            .yatra-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-cta,
            .btn-cta-outline {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .package-footer {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            
            .btn-book {
                width: 100%;
                justify-content: center;
            }
            
            .package-title {
                font-size: 1.3rem;
            }
        }


















        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #f5b041;
            --primary-dark: #e67e22;
            --primary-light: #fef5e7;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --danger-color: #c0392b;
            --success-color: #27ae60;
            --text-light: #7f8c8d;
            --text-dark: #34495e;
            --text-muted: #95a5a6;
            --bg-white: #ffffff;
            --bg-light: #f8f9fa;
            --border-color: #ecf0f1;
            --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
            --shadow-xl: 0 15px 30px rgba(0,0,0,0.15);
            --shadow-sm: 0 2px 5px rgba(0,0,0,0.1);
            --radius-full: 50px;
            --radius-xl: 20px;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            --font-secondary: 'Segoe UI', Roboto, sans-serif;
            --section-padding: 80px 0;
        }

        body {
            font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
            background-color: #f0f3f5;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Section headers unchanged */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-subtitle {
            display: inline-block;
            background: var(--primary-light);
            color: var(--secondary-color);
            padding: 6px 20px;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-family: var(--font-secondary);
        }

        .section-title span {
            color: var(--primary-dark);
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 5px;
        }

        .section-description {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* NEW: sliding carousel wrapper */
        .packages-section {
            padding: var(--section-padding) 0;
            overflow: hidden;          /* hide horizontal scroll */
            width: 100%;
        }

        .packages-grid {
            display: flex;              /* flex because grid can't do seamless infinite scroll with duplicate items easily */
            gap: 30px;
        }

       
       

        /* ensure cards have consistent width */
        .package-card {
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            /* transition: all var(--transition-normal); */
            position: relative;
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-color);
            min-width: 380px;          /* base width same as grid min */
            max-width: 380px;
            flex-shrink: 0;             /* prevent shrinking */
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: var(--shadow-sm);
        }

        .package-badge.popular {
            background: var(--accent-color);
            color: white;
        }

        .package-badge.hot {
            background: var(--danger-color);
            color: white;
        }

        .package-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .package-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }

        .package-card:hover .package-image img {
            transform: scale(1.1);
        }

        .package-content {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .package-category {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-light);
            color: var(--text-light);
            padding: 6px 16px;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            width: fit-content;
        }

        .package-category i {
            color: var(--primary-dark);
        }

        .package-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
            line-height: 1.3;
            font-family: var(--font-secondary);
        }

        .package-description {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .package-features {
            list-style: none;
            margin-bottom: 25px;
            flex: 1;
        }

        .package-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .package-features li i {
            color: var(--success-color);
            font-size: 0.85rem;
            width: 18px;
        }

        .package-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            border-top: 1px solid var(--border-color);
            padding-top: 20px;
        }

        .package-price {
            display: flex;
            flex-direction: column;
        }

        .price-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-amount {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            line-height: 1;
        }

        .price-amount span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--text-light);
        }

        .btn-book {
            background: var(--primary-color);
            color: var(--secondary-color);
            padding: 12px 30px;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-decoration: none;
            /* transition: all var(--transition-normal); */
            border: 2px solid transparent;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-book:hover {
            background: var(--primary-dark);
            transform: scale(1.05);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary-color);
            border: 2px solid var(--primary-color);
            padding: 12px 30px;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-decoration: none;
            /* transition: all var(--transition-normal); */
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
        }

      










/* Extra large devices (large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .package-card {
        min-width: 400px;
        max-width: 400px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

/* Large devices (desktops, 1200px to 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
    }
    
    .package-card {
        min-width: 360px;
        max-width: 360px;
    }
    
    .package-content {
        padding: 25px;
    }
    
    .package-title {
        font-size: 1.4rem;
    }
}

/* Medium devices (tablets, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .package-card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .package-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .package-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .package-features li {
        font-size: 0.85rem;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .btn-book {
        padding: 10px 25px;
    }
    
   

/* Small devices (landscape phones, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        padding: 5px 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        max-width: 600px;
    }
    
    .package-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .package-image {
        height: 180px;
    }
    
    .package-content {
        padding: 18px;
    }
    
    .package-category {
        font-size: 0.75rem;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    
    .package-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .package-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .package-features {
        margin-bottom: 18px;
    }
    
    .package-features li {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .package-footer {
        padding-top: 15px;
    }
    
    .price-label {
        font-size: 0.7rem;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .price-amount span {
        font-size: 0.85rem;
    }
    
    .btn-book {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    /* Adjust gap between cards */
    .packages-grid {
        gap: 20px;
        /* animation: slideLoop 15s linear infinite; */
    }
    
    /* Badge adjustments */
    .package-badge {
        top: 15px;
        right: 15px;
        padding: 6px 15px;
        font-size: 0.7rem;
    }
}

/* Extra small devices (phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 12px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 0.75rem;
        padding: 4px 14px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        max-width: 100%;
    }
    
    .package-card {
        min-width: 260px;
        max-width: 260px;
    }
    
    .package-image {
        height: 160px;
    }
    
    .package-content {
        padding: 15px;
    }
    
    .package-category {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 10px;
        gap: 5px;
    }
    
    .package-category i {
        font-size: 0.7rem;
    }
    
    .package-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .package-description {
        font-size: 0.8rem;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .package-features {
        margin-bottom: 15px;
    }
    
    .package-features li {
        font-size: 0.75rem;
        margin-bottom: 5px;
        gap: 6px;
    }
    
    .package-features li i {
        font-size: 0.7rem;
        width: 14px;
    }
    
    .package-footer {
        padding-top: 12px;
    }
    
    .price-label {
        font-size: 0.65rem;
    }
    
    .price-amount {
        font-size: 1.2rem;
    }
    
    .price-amount span {
        font-size: 0.75rem;
    }
    
    .btn-book {
        padding: 6px 16px;
        font-size: 0.8rem;
        gap: 5px;
    }
    
    .btn-book i {
        font-size: 0.8rem;
    }
    
    .packages-grid {
        gap: 15px;
        /* animation: slideLoop 18s linear infinite; */
    }
    
    .package-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 0.65rem;
    }
}
}









.packages-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: auto;
}














/* packages.css responsive fixes */

/* Header section mobile fixes */
@media (max-width: 576px) {
    .packages-header {
        min-height: 60vh;
        padding: 20px 0;
    }
    
    .header-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .header-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 20px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}

/* Yatra cards mobile fixes */
@media (max-width: 576px) {
    .yatra-section {
        padding: 40px 0;
    }
    
    .yatra-grid {
        gap: 20px;
    }
    
    .yatra-header {
        padding: 20px;
    }
    
    .yatra-header h3 {
        font-size: 1.3rem;
    }
    
    .yatra-header p {
        font-size: 0.85rem;
    }
    
    .yatra-body {
        padding: 20px;
    }
    
    .yatra-features li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
}

/* Package cards mobile fixes */
@media (max-width: 576px) {
    .packages-section {
        padding: 40px 0;
    }
    
    .packages-grid {
        gap: 20px;
    }
    
    .package-card {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .package-image {
        height: 180px;
    }
    
    .package-content {
        padding: 15px;
    }
    
    .package-title {
        font-size: 1.2rem;
    }
    
    .package-description {
        font-size: 0.85rem;
    }
    
    .package-features li {
        font-size: 0.8rem;
    }
    
    .price-amount {
        font-size: 1.3rem;
    }
    
    .price-label {
        font-size: 0.7rem;
    }
    
    .btn-book {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* Why choose section mobile fixes */
@media (max-width: 576px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-item h4 {
        font-size: 1.1rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
}

/* CTA section mobile fixes */
@media (max-width: 576px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .btn-cta,
    .btn-cta-outline {
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* Tablet fixes */
@media (min-width: 768px) and (max-width: 991px) {
    .yatra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-card {
        max-width: 100%;
    }
}

/* Small desktop fixes */
@media (min-width: 992px) and (max-width: 1199px) {
    .yatra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}