:root {
            --primary: #14457b;
            --secondary: #38b6ff;
            --accent: #38b6ff;
            --light: #f7fafc;
            --dark: #2d3748;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 18px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
        }
        
        .nav-link {
            color: var(--dark);
            font-weight: 500;
            margin: 0 12px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent);
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        
        /* Full width slider container */
        .slider-container {
            width: 100%;
            position: relative;
        }
        
        /* Carousel item with full width image */
        .carousel-item {
            height: auto;
            min-height: 600px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        /* Overlay for better text visibility */
        .carousel-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        /* Content container with background color */
        .content-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 80%;
            max-width: 900px;
            padding: 40px;
            border-radius: 15px;
        }
        
        /* Different background colors for each slide */
        .bg-primary-translucent {
            background-color: rgba(13, 110, 253, 0.85) !important;
        }
        
        .bg-success-translucent {
            background-color: rgba(25, 135, 84, 0.85) !important;
        }
        
        .bg-warning-translucent {
            background-color: rgba(255, 193, 7, 0.85) !important;
        }
        
        .bg-danger-translucent {
            background-color: rgba(220, 53, 69, 0.85) !important;
        }
        
        .content-container h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }
        
        .content-container p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: white;
        }
        
        .btn-slider {
            background-color: #fff;
             border: 1px solid #fff!important;
            color: #333;
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-slider:hover {
            
            /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); */
            border: 1px solid #fff;
            color: #fff;
        }
        
        /* Carousel controls styling */
        .carousel-control-prev, .carousel-control-next {
            width: 60px;
            height: 60px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
            z-index: 3;
        }
        
        .carousel-control-prev {
            left: 30px;
        }
        
        .carousel-control-next {
            right: 30px;
        }
        
        .carousel-control-prev:hover, 
        .carousel-control-next:hover {
            opacity: 1;
            background-color: rgba(255, 255, 255, 0.3);
        }
        
        /* Indicator styling */
        .carousel-indicators {
            z-index: 3;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 8px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .content-container h2 {
                font-size: 2.5rem;
            }
            
            .content-container p {
                font-size: 1.1rem;
            }
            
            .content-container {
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .carousel-item {
                height: 80vh;
                min-height: 500px;
            }
            
            .content-container h2 {
                font-size: 2rem;
            }
            
            .content-container p {
                font-size: 1rem;
            }
            
            .btn-slider {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .carousel-control-prev, .carousel-control-next {
                width: 50px;
                height: 50px;
            }
            
            .carousel-control-prev {
                left: 15px;
            }
            
            .carousel-control-next {
                right: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-item {
                height: 70vh;
                min-height: 400px;
            }
            
            .content-container {
                padding: 20px;
                width: 90%;
            }
            
            .content-container h2 {
                font-size: 1.7rem;
            }
            
            .btn-slider {
                padding: 10px 25px;
            }
        }


        
        .hotel-section {
      padding: 30px 0;
      background: linear-gradient(135deg, #194279, #00acc1);
      color: #fff;
    }
    .hotel-section h2 {
      font-weight: 700;
      margin-bottom: 40px;
      text-align: center;
      color: #ffffff;
    }
    .hotel-card {
      background: #fff;
      border-radius: 15px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      height: 100%;
      color: #194279;
      box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    }
    .hotel-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0,0,0,0.25);
    }
    .hotel-card i {
      font-size: 50px;
      color: #000000;
      margin-bottom: 15px;
    }
    .hotel-card img{
        width: 80px!important;
        display: block;
        margin: auto;
    }
    .hotel-card h5 {
      font-weight: 600;
      font-size: 18px;
    }
    /* Custom Nav Buttons */
    .owl-nav {
      text-align: center;
      margin-top: 20px;
    }
    .owl-nav button {
     color: #14457b !important;
     background-color: #fff !important;
     display: flex !important;
     height: 35px !important;
     width: 35px !important;
     align-items: center;
     justify-content: center;
     border-radius: 50%!important;
    }
   .owl-prev{
        position: absolute!important;
        top: 45%!important;
        left: -20px;
    }

    .owl-next{
        position: absolute!important;
        top: 45%!important;
        right: -20px;
    }
    .owl-nav button:hover {
      background: #ff6f00!important;
      color: #fff !important;
    }
    .owl-nav i {
      pointer-events: none;
    }

    .owl-carousel .owl-stage-outer{
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hotel-booking h2{
        font-weight: 700;
    }

     .room-types-section {
        
         
            padding-top: 50px;
            padding-bottom: 50px;
            background: #f8f5f2;
            border-radius: 15px;
          
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 20px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            border-radius: 2px;
        }
        
        /* Owl Carousel Customization */
        .owl-carousel .owl-stage {
            padding: 20px 0;
        }
        
        .room-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .room-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
        }
        
        .room-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .room-card:hover .room-image img {
            transform: scale(1.05);
        }
        
        .room-type {
            position: absolute;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            color: white;
            padding: 8px 15px;
            font-weight: 600;
            font-size: 16px;
            border-radius: 0 5px 0 0;
        }
        
        .room-details {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .room-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .room-features {
            margin: 15px 0;
            flex-grow: 1;
        }
        
        .room-feature {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .room-feature i {
            color: #ff7e5f;
            margin-right: 10px;
            font-size: 14px;
        }
        
        .room-price {
            font-weight: 600;
            color: #2c3e50;
            margin-top: 15px;
            font-size: 18px;
        }
        
        .price-amount {
            color: #ff7e5f;
            font-weight: 700;
        }
        
        .book-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #194279, #00acc1);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 15px;
            text-align: center;
            text-decoration: none;
        }
        
        .book-btn:hover {
            background: linear-gradient(to right, #4ca1af, #2c3e50);
        }
        
        /* Owl Navigation */
        .owl-nav {
            text-align: center;
            margin-top: 20px;
        }
        
        .owl-prev, .owl-next {
            background: linear-gradient(to right, #ff7e5f, #feb47b) !important;
            color: white !important;
            width: 40px;
            height: 40px;
            border-radius: 50% !important;
            margin: 0 10px !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .owl-prev:hover, .owl-next:hover {
            transform: scale(1.1);
        }
        
        .owl-prev i, .owl-next i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .owl-dots {
            margin-top: 20px;
            text-align: center;
        }
        
        .owl-dot span {
            background: #d6d6d6 !important;
        }
        
        .owl-dot.active span, .owl-dot:hover span {
            background: linear-gradient(to right, #ff7e5f, #feb47b) !important;
        }
        
        @media (max-width: 768px) {
            .room-card {
                height: auto;
            }
            .luxury-services .section-title h2{
                font-size: 1.8rem!important;
            }
        }



        .luxury-services {
            
            padding: 40px 0px;
            background: rgba(22, 26, 34, 0.85);
          
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
        }
        
         .luxury-services .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Playfair Display', serif;
        }
        
         .luxury-services .section-title h2 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(to right, #d4af37, #ffd700, #fbf5b7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }
        
         .luxury-services .section-title p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #d1d1d1;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: linear-gradient(145deg, #1a1f2b, #232a38);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
            position: relative;
           
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .service-icon {
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #194279, #00acc1);
            font-size: 3rem;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .service-icon:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #d4af37;
            text-align: center;
        }
        
        .service-description {
            color: #d1d1d1;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-features {
            margin-top: auto;
        }
        
        .service-feature {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #a8a8a8;
        }
        
        .service-feature i {
            color: #d4af37;
            margin-right: 10px;
            font-size: 12px;
        }
        
        .gold-divider {
            height: 2px;
            background: linear-gradient(to right, transparent, #d4af37, transparent);
            margin: 15px 0;
            width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .luxury-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(to right, #d4af37, #ffd700);
            color: #1a1f2b;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
            z-index: 1;
        }
        
        @media (max-width: 768px) {
            .services-grid {
                display: block;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .service-card {
                height: auto;
                margin-bottom: 20px;
            }
        }

        .travel-services-container {
            
            margin: 60px auto;
           
            background: rgba(255, 255, 255, 0.9);
            border-radius: 24px;
           
        }
        
        .services-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .services-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: #2a2a4a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .services-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, #6a78d1, #8a94e3);
            border-radius: 3px;
        }
        
        .services-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 20px auto 0;
            color: #6b6b8a;
        }
        
        /* Air Ticket Section */
        .air-ticket-section {
            display: flex;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(92, 107, 192, 0.15);
            transition: all 0.3s ease;
        }
        
        .air-ticket-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(92, 107, 192, 0.25);
        }
        
        .air-ticket-visual {
            flex: 0 0 45%;
            /* background: linear-gradient(135deg, #6a78d1 0%, #8a94e3 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .air-ticket-visual img{
            height: 100%;
            object-fit: cover;
        }
        
        .air-ticket-visual i {
            font-size: 8rem;
            color: white;
            opacity: 0.9;
            z-index: 2;
        }
        
        .air-ticket-visual:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
        }
        
        .air-ticket-content {
            flex: 0 0 55%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .air-ticket-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #2a2a4a;
            margin-bottom: 20px;
        }
        
        .air-ticket-description {
            color: #6b6b8a;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .air-ticket-features {
            margin-bottom: 30px;
        }
        
        .air-ticket-feature {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        
        .air-ticket-feature i {
            color: #6a78d1;
            margin-right: 12px;
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
        }
        
        .air-ticket-button {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(to right, #6a78d1, #8a94e3);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }
        
        .air-ticket-button:hover {
            background: linear-gradient(to right, #5a68c1, #7a84d3);
            box-shadow: 0 5px 15px rgba(106, 120, 209, 0.3);
        }
        
        /* Train Ticket Section */
        .train-ticket-section {
            display: flex;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(92, 107, 192, 0.15);
            transition: all 0.3s ease;
            flex-direction: row-reverse;
        }
        
        .train-ticket-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(92, 107, 192, 0.25);
        }
        
        .train-ticket-visual {
            flex: 0 0 45%;
            /* background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        
        
        .train-ticket-visual img{
            height: 100%;
            object-fit: cover;
        }
        
        .train-ticket-visual:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
        }
        
        .train-ticket-content {
            flex: 0 0 55%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .train-ticket-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #2a2a4a;
            margin-bottom: 20px;
        }
        
        .train-ticket-description {
            color: #6b6b8a;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .train-ticket-features {
            margin-bottom: 30px;
        }
        
        .train-ticket-feature {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        
        .train-ticket-feature i {
            color: #4CAF50;
            margin-right: 12px;
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
        }
        
        .train-ticket-button {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(to right, #4CAF50, #66BB6A);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }
        
        .train-ticket-button:hover {
            background: linear-gradient(to right, #43A047, #5CB85C);
            box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
        }
        
        /* Bus Ticket Section */
        .bus-ticket-section {
            display: flex;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(92, 107, 192, 0.15);
            transition: all 0.3s ease;
        }
        
        .bus-ticket-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(92, 107, 192, 0.25);
        }
        
        .bus-ticket-visual {
            flex: 0 0 45%;
            /* background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .bus-ticket-visual img{
            height: 100%;
            object-fit: cover;
        }
        
        .bus-ticket-visual:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
        }
        
        .bus-ticket-content {
            flex: 0 0 55%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .bus-ticket-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #2a2a4a;
            margin-bottom: 20px;
        }
        
        .bus-ticket-description {
            color: #6b6b8a;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .bus-ticket-features {
            margin-bottom: 30px;
        }
        
        .bus-ticket-feature {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        
        .bus-ticket-feature i {
            color: #FF9800;
            margin-right: 12px;
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
        }
        
        .bus-ticket-button {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(to right, #FF9800, #FFB74D);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }
        
        .bus-ticket-button:hover {
            background: linear-gradient(to right, #F57C00, #FFA726);
            box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
        }
        
        /* Tampu Travel Section */
        .tampu-travel-section {
            display: flex;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 40px;
            box-shadow: 0 10px 25px rgba(92, 107, 192, 0.15);
            transition: all 0.3s ease;
            flex-direction: row-reverse;
        }
        
        .tampu-travel-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(92, 107, 192, 0.25);
        }
        
        .tampu-travel-visual {
            flex: 0 0 45%;
            /* background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%); */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .tampu-travel-visual img{
            height: 100%;
            object-fit: cover;
        }
        
        .tampu-travel-visual:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(30deg);
        }
        
        .tampu-travel-content {
            flex: 0 0 55%;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .tampu-travel-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: #2a2a4a;
            margin-bottom: 20px;
        }
        
        .tampu-travel-description {
            color: #6b6b8a;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .tampu-travel-features {
            margin-bottom: 30px;
        }
        
        .tampu-travel-feature {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        
        .tampu-travel-feature i {
            color: #9C27B0;
            margin-right: 12px;
            font-size: 1.1rem;
            width: 24px;
            text-align: center;
        }
        
        .tampu-travel-button {
            display: inline-block;
            padding: 14px 30px;
            background: linear-gradient(to right, #9C27B0, #BA68C8);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.5px;
        }
        
        .tampu-travel-button:hover {
            background: linear-gradient(to right, #8E24AA, #AB47BC);
            box-shadow: 0 5px 15px rgba(156, 39, 176, 0.3);
        }
        
        @media (max-width: 992px) {
            .air-ticket-section,
            .train-ticket-section,
            .bus-ticket-section,
            .tampu-travel-section {
                flex-direction: column;
            }
            
            .air-ticket-visual,
            .train-ticket-visual,
            .bus-ticket-visual,
            .tampu-travel-visual {
                flex: 0 0 200px;
            }
            
            .services-title {
                font-size: 2.2rem;
            }
        }



         .taxi-section {
            width: 100%;
           background-color: #f8f5f2;
            margin: 0 auto;
            padding: 60px 0px;
        }
        
       .taxi-section .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;

        }
        
       .taxi-section .section-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #2a2a4a;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
       .taxi-section .section-header p {
            font-size: 1.2rem;
            color: #333;
            max-width: 600px;
            margin: 0 auto;
        }
        
       .taxi-section .section-header::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #1a237e, #3949ab);
            margin: 20px auto;
            border-radius: 2px;
        }
        
        .taxi-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
        }
        
        .taxi-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .taxi-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #1a237e, #3949ab);
        }
        
        .taxi-image {
        
            overflow: hidden;
            position: relative;
        }
        
        .taxi-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .taxi-card:hover .taxi-image img {
            transform: scale(1.1);
        }
        
        .taxi-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #ff6b6b;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
        }
        
        .taxi-details {
            padding: 25px;
        }
        
        .taxi-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a237e;
            margin-bottom: 15px;
        }
        
        .taxi-features {
            list-style: none;
            padding: 0;
          
        }
        
        .taxi-features li {
            padding: 8px 0;
            border-bottom: 1px dashed #e0e0e0;
            display: flex;
            align-items: center;
        }
        
        .taxi-features li:last-child {
            border-bottom: none;
        }
        
        .taxi-features i {
            color: #3949ab;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .taxi-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #f5f5f5;
        }
        
        .price-tag {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1a237e;
        }
        
        .price-tag span {
            font-size: 1rem;
            font-weight: 500;
            color: #9e9e9e;
        }
        
        .btn-book {
            background: linear-gradient(135deg, #194279, #00acc1);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            display: block;
            width: 100%;
        }
        
        .btn-book:hover {
            background: linear-gradient(to right, #3949ab, #1a237e);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(57, 73, 171, 0.3);
        }
        
        .btn-book i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .btn-book:hover i {
            transform: translateX(5px);
        }
        
        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .taxi-card {
            animation: fadeIn 0.6s ease forwards;
        }
        
        .taxi-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .taxi-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .taxi-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .taxi-card {
                margin-bottom: 30px;
            }
            
          .taxi-section .section-header h2 {
                font-size: 2.3rem;
            }
        }

         
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 50px 0 20px;
            border-top: 5px solid #3498db;
        }
        
        .footer-top {
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
        }
        
        .footer-logo span {
            color: #3498db;
        }
        
        .footer-about {
            margin-bottom: 20px;
        }
        
        .footer-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #3498db;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #3498db;
            padding-left: 5px;
        }
        
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-contact i {
            color: #3498db;
            font-size: 18px;
            margin-right: 10px;
            margin-top: 5px;
        }
        
        .footer-services {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -5px;
        }
        
        .service-badge {
            background: rgba(52, 152, 219, 0.2);
            border: 1px solid rgba(52, 152, 219, 0.3);
            padding: 5px 12px;
            border-radius: 4px;
            margin: 5px;
            font-size: 13px;
            display: inline-block;
        }
        
        .social-icons {
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: #3498db;
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            padding-top: 20px;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .payment-methods {
            margin-top: 15px;
        }
        
        .payment-methods i {
            font-size: 28px;
            margin: 0 5px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        @media (max-width: 992px) {
            .footer-col {
                margin-bottom: 30px;
            }
        }


        .contact-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 40px 0;
        }
        
        .contact-info {
            background: linear-gradient(135deg, #194279, #00acc1);
            color: white;
            padding: 40px;
            height: 100%;
        }
        
        .contact-info h3 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #fff;
        }
        
        .contact-detail {
            margin-bottom: 20px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            margin-right: 15px;
            font-size: 20px;
            min-width: 30px;
            padding-top: 3px;
        }
        
        .contact-text h5 {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .social-icons {
            margin-top: 30px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: white;
            color: #3a7bd5;
            transform: translateY(-3px);
        }
        
        .contact-form {
            padding: 40px;
        }
        
        .contact-form h3 {
            font-weight: 700;
            margin-bottom: 25px;
            color: #1a2a6c;
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-form h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #3a7bd5;
        }
        
        .form-control {
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding-left: 0;
            padding-right: 0;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #3a7bd5;
            box-shadow: none;
        }
        
        .btn-primary {
            background: linear-gradient(to right, #1a2a6c, #3a7bd5);
            border: none;
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: linear-gradient(to right, #3a7bd5, #1a2a6c);
            transform: translateY(-2px);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 991px) {
            .contact-info {
                padding: 30px;
            }
            
            .contact-form {
                padding: 30px;
            }
        }