<style>
        /* --- Custom Variables and Global Styles --- */
        :root {
            --bs-orange: #f72f47; /* Primary Highlight Color */
            --bs-blue: #313a94; /* Primary Accent Color */
            --bs-white: #ffffff;
            --bs-text: #333333;
            --bs-light-bg: #f8f9fa;
            --bs-dark-footer: #1e2733;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--bs-text);
            overflow-x: hidden;
            /* Updated: Modern, minimal background - Very subtle light blue dot pattern */
            background-color: #f8f9fa; 
            background-image: radial-gradient(circle at center, #d0e4f8 1px, transparent 1px);
            background-size: 30px 30px; /* subtle spacing */
        }

        .bg-primary-orange { background-color: var(--bs-orange) !important; }
        .text-primary-orange { color: var(--bs-orange) !important; }
        .bg-primary-blue { background-color: var(--bs-blue) !important; }
        .text-primary-blue { color: var(--bs-blue) !important; }

        /* --- Header / Navbar Styling --- */
        
        .Hellosavaarilogo
        {
            max-width: 200px;
            width: 100%;
        }
        .navbar {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: background-color 0.3s ease;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
        }

        .nav-link {
            font-weight: 500;
            color: var(--bs-text) !important;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--bs-orange) !important;
        }

        /* Primary CTA Button Style */
        .btn-cta {
            background-color: var(--bs-orange);
            color: var(--bs-white);
            border: none;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 8px rgba(255, 87, 34, 0.4);
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            background-color: var(--bs-blue);
            color: var(--bs-white);
            box-shadow: 0 6px 12px rgba(25, 118, 210, 0.5);
            transform: translateY(-2px);
        }

        /* --- NEW: Quick Booking Form Styles (Gradient Applied) --- */
        #quick-booking {
            /* Blue-Orange Gradient */
            background: linear-gradient(90deg, var(--bs-blue) 0%, var(--bs-orange) 100%);
            padding: 1.5rem 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }
        #quick-booking .form-control, 
        #quick-booking .form-select {
            border-radius: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.5);
            background-color: rgba(255, 255, 255, 0.95);
            color: var(--bs-text);
        }
        #quick-booking .btn-cta-quick {
            background-color: var(--bs-orange);
            color: var(--bs-white);
            border: none;
            font-weight: 600;
            width: 100%;
            height: 100%;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }
        #quick-booking .btn-cta-quick:hover {
            background-color: #e64a19; /* Slightly darker orange */
        }

        /* --- Hero Slider (Text at Bottom) --- */
        .carousel-item-img {
            height: 80vh; 
            min-height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
            cursor: pointer; 
        }
        
        @media (max-width: 768px) {
            .carousel-item-img {
                height: 60vh;
                min-height: 400px;
            }
            .hero-content h1 {
                font-size: 2rem !important;
            }
            .hero-content p {
                font-size: 1rem !important;
            }
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0)); 
        }

        .hero-content {
            position: absolute;
            bottom: 5%; 
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            text-align: center;
            color: var(--bs-white);
            width: 80%;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        }
        .hero-content p {
            font-weight: 300;
        }

        /* --- Promo Card Styling (Image Only) --- */
        .card-promo {
            border: none;
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            height: 100%;
            display: block; 
            text-decoration: none;
        }

        .card-promo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(25, 118, 210, 0.2);
        }

        .card-promo img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 1rem;
        }

        .card-promo:hover img {
            transform: scale(1.05);
        }

        /* --- Service Card Image Styling --- */
        .service-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .card-service:hover .service-img {
            transform: scale(1.1);
        }
        
        /* General Card/Section Styling */
        .card-service, .card-package {
            border: none;
            border-radius: 1rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            height: 100%;
        }

        .card-service:hover, .card-package:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .card-package img {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card-package:hover img {
            transform: scale(1.05);
        }

        /* --- Full-Width Highlight Section --- */
        .highlight-section {
            background-image: url('herobanner.jpg');
            background-size: cover;
            background-position: center;
            color: var(--bs-white);
            padding: 8rem 0;
            position: relative;
        }
        .highlight-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
        }
        .highlight-content {
            z-index: 1;
            position: relative;
        }

        /* --- Testimonials --- */
        .testimonial-card {
            background: var(--bs-white);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .rating i {
            color: #FFC107; /* Yellow star color */
        }

        /* --- Booking Form & Map (Seamless Full Width) --- */
        .booking-form {
            background-color: var(--bs-white);
            padding: 3rem;
            height: 100%; 
        }
        #contact .row {
            align-items: stretch;
        }
        #contact .col-lg-6 {
            display: flex;
            flex-direction: column;
            padding: 0; 
        }
        #contact .map-content {
            flex-grow: 1;
            padding: 3rem; 
            display: flex;
            flex-direction: column;
            background-color: #fff2f2;
        }
        #contact .ratio-16x9 {
            flex-grow: 1; 
        }

        /* --- Footer (Fancy) --- */
        footer {
            background-color: var(--bs-dark-footer); 
            color: #ccc;
            background-image: linear-gradient(145deg, #1e2733 0%, #0d1218 100%);
        }
        footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        footer a:hover {
            color: var(--bs-orange);
            transform: translateX(5px);
        }
        .social-icons a {
            color: var(--bs-white);
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: var(--bs-orange);
        }
        .footer-illustration {
            background-color: var(--bs-blue);
            color: var(--bs-white);
            border-radius: 1rem;
            padding: 2rem 1rem;
            margin-bottom: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        /* --- Scroll Animation Classes --- */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            will-change: opacity, transform;
        }

        .animate-on-scroll.in-view {
            opacity: 1;
            transform: translateY(0);
        }
        .animate-on-scroll:nth-child(even) {
            transition-delay: 0.1s;
        }
        .animate-on-scroll:nth-child(3n) {
            transition-delay: 0.2s;
        }
        .duration-label-content {
            display: inline-block;
            background-color: transparent;
            color: var(--bs-blue);
            padding: 0.3rem 0.75rem;
            border: 1px solid var(--bs-blue); /* Blue border */
            border-radius: 0.5rem;
            font-size: 0.70rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

    </style>