/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #f5f6f7;
    color: #333;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #111;
}

.logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #25D366;
}

/* ================= HERO ================= */

.hero {
    padding: 70px 20px;
    text-align: center;
    background: linear-gradient(to right, #fff, #f3f3f3);
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero p {
    color: #666;
    font-size: 16px;
}
.seo-text {
    max-width: 800px;
    margin: 15px auto;
    color: #666;
    font-size: 14px;
}
.view {
    font-size: 14px;
    color: #7027b5;
    background-color: #e6851f;
    margin-top: 15px;
    font-weight: bold;
}

/* ================= SECTIONS ================= */

section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* ================= ADMIN PROFILE ================= */

.admin-card {
    background: #fff;
    max-width: 350px;
    margin: auto;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.admin-card:hover {
    transform: translateY(-5px);
}

.admin-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.admin-card h3 {
    margin-bottom: 5px;
}

.admin-card p {
    color: #666;
    font-size: 14px;
}

/* ================= BUTTONS ================= */

.admin-buttons {
    margin-top: 20px;
}

.call-btn,
.whatsapp-btn {
    display: inline-block;
    margin: 6px;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: 0.3s;
}

.call-btn {
    background: #ff9933;
}

.call-btn:hover {
    background: #e6851f;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebc59;
}

/* ================= FLEET PREVIEW ================= */

.fleet-box img {
    width: 320px;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
}

.fleet-box img:hover {
    transform: scale(1.05);
}

.fleet-box p {
    margin-top: 12px;
    color: #666;
}

/* ================= MAP ================= */

.map iframe {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    margin-top: 20px;
}

/* ================= FOOTER ================= */

.footer-bottom {
    background: #111;
    color: #fff;
    padding: 18px;
    text-align: center;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .fleet-box img {
        width: 90%;
    }

    .admin-card {
        width: 90%;
    }

    .hero h1 {
        font-size: 22px;
    }
}

/* WhatsApp */
.whatsapp{
position:fixed;bottom:20px;right:20px;
background:#25D366;color:white;
font-size:24px;padding:15px;
border-radius:50%;text-decoration:none;
}

/* Responsive */
@media(max-width:768px){
.navbar{padding:15px;}
.hero-content h1{font-size:30px;}
form input,form select{width:90%;}
}
/* ================= FOOTER ================= */

.footer {
    background: #000;
    padding: 70px 20px 30px;
    color: #ccc;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-box {
    flex: 1;
    min-width: 220px;
    margin: 20px;
}

.footer-box h3,
.footer-box h4 {
    color: gold;
    margin-bottom: 15px;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: gold;
}

.footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    font-size: 13px;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-box {
        margin: 30px 0;
    }
}
/* Policy Pages Styling */
.policy-page {
    max-width: 900px;
    margin: 150px auto 80px auto;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.policy-page h1 {
    color: gold;
    margin-bottom: 20px;
}

.policy-page h3 {
    margin-top: 20px;
    color: gold;
}

.policy-page p {
    line-height: 1.7;
    margin-top: 10px;
}
.about-page {
    max-width: 1000px;
    margin: 150px auto 80px auto;
    padding: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.about-page h1 {
    text-align: center;
    color: gold;
    margin-bottom: 10px;
}

.tagline {
    text-align: center;
    color: #ccc;
    margin-bottom: 40px;
    font-style: italic;
}

.about-page h3 {
    margin-top: 30px;
    color: gold;
}

.about-page p {
    margin-top: 12px;
    line-height: 1.8;
    color: #ddd;
}


/* ================= STAY SECTION ================= */

.stay-section {
    background: #fff8e1;
}

.stay-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.stay-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.stay-content h3 {
    margin-bottom: 15px;
}

.stay-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.stay-content ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.stay-note {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}

.stay-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #f4c430;
    color: #000;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.stay-btn:hover {
    background: #e0b020;
}

.stay-image {
    flex: 1;
    min-width: 300px;
}

.stay-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
/* ================= FEEDBACK SECTION ================= */

/* ===== TESTIMONIAL SLIDER ===== */

.testimonial-slider {
    overflow: hidden;
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.testimonial-track {
    display: flex;
    width: 300%;
    animation: slide 15s infinite;
}

.feedback-card {
    width: 100%;
    max-width: 350px;
    margin: 0 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.stars {
    color: #f4c430;
    font-size: 16px;
    margin-bottom: 10px;
}

.feedback-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 22px;
    background: #25D366;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.3s;
}

.feedback-btn:hover {
    background: #1ebc59;
}

/* Auto Slide Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}
/* Buttons */

.call-btn, .whatsapp-btn {
    display: inline-block;
    margin: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.call-btn {
    background: #ff9933;
}

.whatsapp-btn {
    background: #25D366;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 14px 16px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
}
.home-btn{
position:fixed;
bottom:20px;
left:20px;
background:#ffcc00;
color:black;
padding:12px 18px;
border-radius:30px;
text-decoration:none;
font-weight:bold;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}