        :root {
            --primary-color: #2a9d8f;
            --accent-color: #e9c46a;
            --danger-color: #e76f51;
            --dark-bg: #264653;
            --light-text: #f4f1de;
        }
        .cont {
            display: flex;
            flex-wrap: wrap;
            min-height: 100vh;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        /* --- Left Side: Company Info --- */
        .company-info {
            flex: 1;
            min-width: 350px;
            padding: 60px;
            animation: fadeInLeft 1s ease-out;
        }
        .company-info h1 {
            font-size: 2.5rem;
            color: var(--dark-bg);
            margin-bottom: 20px;
            line-height: 1.1;
        }
        .company-info h1 span {
            color: var(--primary-color);
        }
        .company-info p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 0px;
        }
        .cta-button {
            padding: 15px 35px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
        }
        /* --- Right Side: TripAdvisor Visuals --- */
        .visual-side {
            flex: 1;
            min-width: 350px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            perspective: 1000px;
        }
        .image-stack {
            position: relative;
            width: 430px;
            height: 500px;
        }
        .card {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            color: white;
            text-align: center;
            padding: 20px;
        }
        /* Colorful Decorative Layers */
        .card-1 { background: var(--primary-color); transform: rotate(-6deg); z-index: 1; }
        .card-2 { background: var(--danger-color); transform: rotate(6deg); z-index: 2; } 
        /* Main Image Card */
        .card-main {
            background: white;
            z-index: 3;
            color: #333;
            border: 2px solid #eee;
        }
        .image-stack:hover .card-1 { transform: rotate(-15deg) translateX(-40px); }
        .image-stack:hover .card-2 { transform: rotate(15deg) translateX(40px); }
        .image-stack:hover .card-main { transform: scale(1.05); }
        .tripadvisor-logo {
            width: 120px;
            margin-bottom: 15px;
        }
        .rating-stars {
            color: #00af87; /* TripAdvisor Green */
            font-size: 2rem;
            margin: 10px 0;
        }
        .review-count {
            font-weight: bold;
            font-size: 0.9rem;
            color: #777;
        }
        /* --- Animations --- */
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            .cont { flex-direction: column; text-align: center; }
            .company-info { padding: 40px 20px; }
            .company-info h1 { font-size: 2.5rem; }
            .visual-side { margin-top: 50px; padding-bottom: 50px; }
            .image-stack { width: 250px; height: 330px; }
        }
        :root {
            --primary-gradient: linear-gradient(135deg, #00b4db, #0083b0);
            --accent-color: #ff6b6b;
            --glass-bg: rgba(255, 255, 255, 0.15);
            --card-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .Google {
            margin: 0;
            padding: 16px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .container3 {
            width: 90%;
            max-width: 1100px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(15px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--card-shadow);
        }
        /* --- Left Side: Google Review --- */
        .review-side {
            flex: 1;
            min-width: 300px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transform: rotate(-3deg);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .review-card:hover {
            transform: rotate(0deg) scale(1.02);
        }
        .google-logo {
            width: 100px;
            margin-bottom: 15px;
        }
        .stars {
            color: #fbbc05;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        .review-text {
            font-style: italic;
            color: #444;
            line-height: 1.6;
        }
        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            border: 2px solid var(--primary-gradient);
        }
        /* --- Right Side: Company Profile --- */
        .profile-side {
            flex: 1.2;
            min-width: 300px;
            color: white;
        }
        .profile-side h2 {
            font-size: 1.8rem; text-align:Center;
            margin: 0 0 15px 0;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
        }
        .profile-side p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            transition: background 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .stat-item:hover {
            background: rgba(255, 255, 255, 0.3);
        }
        .stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: bold;
        }
        .btn-explore {
            display: inline-block;
            margin-top: 30px;
            padding: 15px 35px;
            background: #001256;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }
        .btn-explore:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            background: #041965;  color: #fff;
        }
        /* --- Floating Elements (Background decoration) --- */
        .floating-circle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: -1;
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .container3 {
                margin: 20px;
                padding: 20px;
                text-align: center;
            }
            .review-card {
                transform: rotate(0);
                margin-bottom: 30px;
            }
            .profile-side h1 {
                font-size: 2.2rem;
            }
            .reviewer-info {
                justify-content: center;
            }
        }
/* Container */
.car-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #777;
    border-radius: 10px;
}
/* Box */
.car-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.car-box:hover {
    transform: translateY(-5px);
}
/* Image */
.car-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
/* Content */
.car-content {
    padding: 15px;
    text-align: center;
}
.car-content h3 {
    margin: 10px 0;
    font-size: 18px;
}
.car-content p {
    color: #666;
    font-size: 14px;
}
.car-content .price {
    color: #e63946;
    font-weight: bold;
    margin: 8px 0;
}
/* Button */
.book-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}
.book-btn:hover {
    background: #457b9d; color:#fff;
}
/* Button */
.book-btn1 {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}
.book-btn1:hover {
    background: #457b9d; color:#fff;
}
/* Tablet View */
@media (max-width: 992px) {
    .car-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Mobile View */
@media (max-width: 576px) {
    .car-container {
        grid-template-columns: 1fr;
    }
}
/* Buttons Container */
.buttons-container {
    display: flex; /* Use flexbox for responsive layout */
    flex-wrap: wrap; /* Allow buttons to wrap to the next line on smaller screens */
    justify-content: center; /* Center buttons horizontally */
    gap: 20px; /* Space between buttons */
    padding: 0px 0px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin: 2px auto;
    max-width: 900px;
    border-radius: 8px;
}
/* General Button Styling */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  padding: 6px 0px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  width: 122px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.button i {
    margin-right: 2px; /* Space between icon and text */
}
/* WhatsApp Button Specific Styling */
.whatsapp-button {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
}
.whatsapp-button span {
    background-color: #25D366; /* WhatsApp Green */
    color: white;
}
.whatsapp-button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
/* Book Now Button Specific Styling */
.book-now-button {
    background-color: #007bff; /* Primary Blue */
    color: white;
}
.book-now-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}
/* Booking Section Styling */
.booking-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #e9ecef;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2em;
    }
    .hero-section p {
        font-size: 1em;
    }
    .buttons-container {
        flex-direction: column; /* Stack buttons vertically on small screens */
        align-items: center; /* Center stacked buttons */
        padding: 30px 15px;
    }
    .button {
        width: 80%; /* Make buttons take more width on small screens */
        max-width: 300px; /* Prevent them from becoming too wide */
        font-size: 1em;
        padding: 12px 25px;
    }
    .booking-section {
        padding: 40px 15px;
    }
    .booking-section h2 {
        font-size: 1.8em;
    }
    .simple-booking-form {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .hero-section {
        padding: 40px 15px;
    }
    .hero-section h1 {
        font-size: 1.8em;
    }
    .hero-section p {
        font-size: 0.9em;
    }
    .button {
        font-size: 0.95em;
        padding: 10px 20px;
    }
}
/* --- Footer Base Styles --- */
.travel-footer {
    background-color: #004d40; /* Deep Teal/Green */
    color: #f0f0f0; /* Off-White for text */
    padding: 0; /* Padding handled by internal containers */
    font-family: 'Arial', sans-serif;
}
/* --- CTA Banner --- */
.footer-cta-banner {
    background-color: #ff6f00; /* Bright Orange Accent */
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    border-bottom: 5px solid #ff9100; /* Lighter border for depth */
}
.footer-cta-banner h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8em;
    font-weight: 700;
}
.cta-button {
    display: inline-block;
    background-color: #004d40; /* Teal/Green background on orange CTA */
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s;
}
.cta-button:hover {
    background-color: #00897b; /* Lighter hover color */
}
/* --- Main Content Grid --- */
.footer-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    /* Desktop: 4 evenly spaced columns */
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 40px;
}
/* Column Headings */
.travel-footer h4 {
    color: #ff6f00; /* Accent color for headings */
    font-size: 1.9em;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}
.footer-logo {
    font-size: 1.6em;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}
/* Links List Styling */
.travel-footer ul {
    list-style: none;
    padding: 0;
}
.travel-footer ul li {
    margin-bottom: 8px;
}
.travel-footer a {
    color: #b2dfdb; /* Light, subtle link color */
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}
.travel-footer a:hover {
    color: #fff; /* Bright hover color */
}
/* Contact and Icon Styling */
.contact-section address p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-style: normal; /* Removes default italic for address */
}
.contact-section i {
    margin-right: 10px;
    color: #ff6f00;
}
/* Social Icons */
.social-links a {
    font-size: 1.4em;
    margin-right: 18px;
    border: 2px solid #b2dfdb;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, border-color 0.3s;
}
.social-links a:hover {
    background-color: #ff6f00;
    border-color: #ff6f00;
    color: #ffffff;
}
/* Copyright Bar */
.footer-copyright {
    background-color: #003d33; /* Slightly darker shade for the bottom bar */
    padding: 15px 20px;
    text-align: center;
    font-size: 0.8em;
    border-top: 1px solid #005f52;
}
/* --- Responsive Layout (Media Queries) --- */
/* Tablet View (max-width: 900px) - Two Columns */
@media (max-width: 900px) {
    .footer-content-grid {
        /* Changes to 2 columns, spanning 50% each */
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    /* Make the brand info span two columns for a large, attractive start */
    .brand-info {
        grid-column: 1 / -1; 
        text-align: center;
    }
    .brand-info p {
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    .social-links {
        text-align: center;
    }
}
/* Mobile View (max-width: 550px) - Single Column */
@media (max-width: 550px) {
    .footer-content-grid {
        /* Changes to a single column stack */
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center; /* Center content for mobile */
    }
    .brand-info,
    .footer-col {
        grid-column: 1 / -1; /* All columns span full width */
        text-align: center;
    }
    .contact-section address p {
        justify-content: center; /* Center contact details */
    }
    .brand-info p {
        max-width: 100%;
    }   
    .footer-cta-banner h2 {
        font-size: 1.4em;
    }
}
.icon-bar {
  position: fixed;
  top: 80%;
}
/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 5px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}
.whatsapp {
  color: white;
}
	  