body {
            font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            color: #333;
            background-color: #f0f7fa; /* Light blue background suggests travel destinations */
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #ffffff, #f7f8fa);
            box-shadow: 0 1px 5px rgba(0,0,0,0.1);
        }

        .logo img {
            max-height: 60px;
        }

        .company-name {
            font-weight: 700;
            font-size: 1.5rem;
            text-align: center;
            line-height: 60px;
            color: #333;
            letter-spacing: 0.5px;
        }

        .pay-here-btn {
            background-color: #FF5722;
            border: none;
            font-weight: bold;
            color: #fff;
            animation: glow 1.5s infinite alternate;
            border-radius: 30px;
            font-size: 1.2rem;
            padding: 10px 28px;
            white-space: nowrap;
        }

        .pay-here-btn:hover {
            background-color: #e64a19;
        }


        @keyframes glow {
            from {
                box-shadow: 0 0 5px #FF5722;
            }
            to {
                box-shadow: 0 0 20px #FF5722;
            }
        }

        .contact-info {
            font-size: 1.2rem;
            color: #555;
            text-align: right;
            margin-top: 8px;
            animation: glow-contact 1.5s infinite alternate;
        }

        @keyframes glow-contact {
            from {
                text-shadow: 0 0 5px #FF5722;
            }
            to {
                text-shadow: 0 0 20px #FF5722;
            }
        }

        .navbar {
            background: #ffffff;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: #333 !important;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: #007BFF !important;
        }

        .navbar-toggler {
            border: none;
        }

        .navbar-toggler-icon {
            background-image: none;
            width: 24px;
            height: 2px;
            background-color: #333;
            position: relative;
        }

        .navbar-toggler-icon:after,
        .navbar-toggler-icon:before {
            content: "";
            background-color: #333;
            width: 24px;
            height: 2px;
            position: absolute;
            left: 0;
        }

        .navbar-toggler-icon:before {
            top: -8px;
        }

        .navbar-toggler-icon:after {
            top: 8px;
        }

        .slider-container {
            max-width: 80%;
            margin: 20px auto;
        }

        .carousel-item img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .section-heading {
            margin-top: 40px;
            margin-bottom: 20px;
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            color: #007BFF;
            letter-spacing: 0.5px;
        }

        .card {
            border: none;
            border-radius: 10px;
            background: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 15px rgba(0,0,0,0.07);
        }

        .card-title {
            color: #007BFF;
            font-weight: 600;
        }

        .btn-primary {
            background-color: #007BFF;
            border: none;
            border-radius: 20px;
            transition: background-color 0.3s, box-shadow 0.3s;
        }

        .btn-primary:hover {
            background-color: #0056b3;
            box-shadow: 0 0 10px rgba(0,123,255,0.3);
        }

        .footer-section {
            background: #F1F1F1;
            padding: 40px 0;
        }

        .footer-section h5 {
            font-weight: 600;
            margin-bottom: 20px;
            color: #333;
            letter-spacing: 0.5px;
        }

        .footer-section a {
            display: block;
            margin-bottom: 10px;
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            text-decoration: underline;
            color: #007BFF;
        }

        .footer-contact {
            line-height: 1.8;
            color: #333;
        }