* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f7fb;
    margin: 0;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: #0d0e0d;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
    z-index: 1000;
    opacity: 0.95;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

.logo span {
    color: #f7b731;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
    scroll-behavior: smooth;
}

.nav-links a:hover {
    color: #f0941d;
}

/* Button */
.nav-links .btn {
    background: #f0941d;
    padding: 8px 16px;
    border-radius: 5px;
    color: #000;
    font-weight: 600;
    
}

.nav-links .btn:hover {
    background: #db9f1b;
    
}

/* Mobile menu icon */
.menu-icon {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        background: #171718;
        /* opacity: 0.95; */
        width: 100%;
        flex-direction: column;
        display: none;
    }

    .nav-links li {
        text-align: center;
        margin: 15px 0;
    }

    .nav-links.active {
        display: flex;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.slides {
    display: none;
    position: relative;
    height: 100%;
}

.slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom 8s linear infinite;
}

@keyframes zoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

/* Overlay */
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    background: rgba(0,0,0,0.45);
    padding: 25px 40px;
    border-radius: 10px;
}

.slide-text h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.slide-text p {
    font-size: 18px;
}

/* Fade animation */
.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from { opacity: .4; }
    to { opacity: 1; }
}

/* Dots */
.dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #f0941d;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }

    .slide-text h1 {
        font-size: 26px;
    }

    .slide-text p {
        font-size: 15px;
    }
    
}



.service-tiles {
    padding: 60px 20px;
    background: #fffbe6;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
}

.tiles-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Tile */
.tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.tile img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay */
.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15)
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.tile-overlay span {
    font-size: 16px;
    letter-spacing: 1px;
}

.tile-overlay h3 {
    font-size: 34px;
    font-weight: bold;
}

/* Hover effect */
.tile:hover img {
    transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
    .tile img {
        height: 300px;
    }

    .tile-overlay h3 {
        font-size: 26px;
    }
}


/* why choose us  */
.why-choose {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fffdf4, #fff4e0);
}

.why-choose .container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.why-choose h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.why-choose h2 span {
    color: #f0941d;
}

.subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 60px;
}

/* Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.feature-card {
    background: rgba(255,255,255,0.9);
    border-radius: 14px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Top accent */
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #f0941d, #ff9f1a);
}

/* Icon */
.feature-card .icon {
    font-size: 38px;
    width: 70px;
    height: 70px;
    margin: auto;
    background: #fff2cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.4s;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #f0941d;
    
}

.feature-card p {
    color: #555;
    font-size: 15.5px;
    line-height: 1.6;
}

/* Hover effects */
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.feature-card:hover .icon {
    background: #f0941d;
    color: #000;
    transform: rotate(5deg) scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
    .why-choose h2 {
        font-size: 30px;
    }
    .subtitle {
        font-size: 16px;
    }
}


/* taxi card */

.taxi-services {
    padding: 70px 20px;
    background: #f0941d;
}

.taxi-header {
    position: relative;
    max-width: 1200px;
    margin: auto;
    margin-bottom: 40px;
}

.taxi-header h2 {
    font-size: 36px;
}

.taxi-header h2 span {
    font-weight: bold;
}

.taxi-header p {
    color: #555;
    margin-top: 5px;
}

/* Call box */
.call-box {
    position: absolute;
    top: 0;
    right: 0;
    border: 2px solid rgb(226, 169, 12);
    padding: 12px 18px;
    text-align: center;
    font-size: 14px;
}

.call-box a {
    color: rgb(2, 2, 2);
    font-weight: bold;
    text-decoration: none;
}

/* Grid */
.taxi-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Card */
.taxi-card {
    background: #cccbcb;
    opacity: 0.9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.taxi-card:hover {
    transform: translateY(-10px);
}

.taxi-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.taxi-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.taxi-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Features */
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/* Button */
.book-btn {
    display: inline-block;
    margin-top: 18px;
    background: #f0941d;
    color: #000000;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.book-btn:hover {
    background: #f0941d;
}

/* Mobile */
@media (max-width: 768px) {
    .call-box {
        position: static;
        margin-top: 15px;
        width: fit-content;
    }
}


/* banner */
.hero-3d {
    background: linear-gradient(135deg, #f0b129, #fff);
    padding: 90px 20px;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Text */
.tagline {
    font-family: 'Brush Script MT', cursive;
    font-size: 34px;
    color: #444;
}

.hero-content h1 {
    
    color: #f0941d; 
    font-size: 34px;
    letter-spacing: 1px;
    margin: 10px 0;
}

.hero-content h2 {
    font-size: 42px;
    margin: 15px 0;
    line-height: 1.2;
}

.hero-content h2 span {
    color: #f0941d;
    font-style: italic;
}

.hero-content p {
    color: #f0941d;
    font-size: 16px;
    max-width: 520px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    
    
}

.btn {
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: 0.4s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.call-btn {
    background: rgba(0, 0, 0, 0.8);
    color: #f0941d;
    border: 2px solid #f0941d;
}

.book-btn {
    background:  #f0941d;
    color: #000000;
    
}

.btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* Image */
.hero-image {
    perspective: 1200px;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    animation: float 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        margin: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 30px;
    }
}



/* footer section */

.footer {
    
    background: #000000;
    color: #ddd;
    position: relative;
}

/* CTA Strip */
.footer-cta {
    background: #d6d1ca;
    color: #000000;
    padding: 35px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-cta span {
    font-family: cursive;
    font-size: 22px;
}

.footer-cta h3 {
    margin-top: 8px;
    font-size: 20px;
}

.cta-btn {
    background: #f0941d;
    color: #000000;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

/* Main */
.footer-main {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-box h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box a:hover {
    color: #ecb910;
    padding-left: 6px;
    font-weight: bold;
}

/* Social */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 50%;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

/* Map button */
.map-btn {
    display: inline-block;
    margin-top: 12px;
    background: #f0941d;
    color: #000000;
    padding: 10px 18px;
    border-radius: 5px;
    text-decoration: none;
    
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* Scroll Top */
#scrollTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #f0941d;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
}




/* contact page css */
/* Hero */
.contact-hero {
    background: #f0941d;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
}

.contact-hero p {
    margin-top: 10px;
    font-size: 18px;
}

/* Section */
.contact-section {
    padding: 70px 20px;
    background: #f6f8fa;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Info */
.contact-info h2 {
    margin-bottom: 10px;
}

.info-box {
    background: #fff;
    padding: 18px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.info-box a {
    color: #f0941d;
    text-decoration: none;
    font-weight: bold;
}

/* Form */
.contact-form {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.contact-form button {
    background: #f0941d;
    color: #fff;
    padding: 14px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #f0941d;
}

/* Map */
.map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}



/* about us page  */

/* Hero */
.about-hero {
    background: linear-gradient(135deg, #f0941d, #f1d178);
    color: #fff;
    padding: 90px 20px;
   
}

.about-hero h1 {
    font-size: 42px;
    color: white;
     text-align: center;
}

.about-hero p {
    margin-top: px;
    font-size: 18px;
    color: white;   
    
    text-align: center;
    
}

/* Sections */
.about-intro,
.about-features,
.about-vision {
    padding: 70px 20px;
}

.about-intro {
    background: #fff;
}

.about-features {
    background: #f6f8fa;
}

.about-vision {
    background: #fff;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* Headings */
.container h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature h3 {
    color: #f0941d;
    margin-bottom: 10px;
}

/* Vision */
.about-vision ul {
    margin-top: 20px;
    list-style: none;
}

.about-vision li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* CTA */
.about-cta {
    background: linear-gradient(135deg, #f0941d, #f1d178);
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.about-cta h2 {
    font-size: 34px;
}

.about-cta p {
    max-width: 700px;
    margin: 15px auto 30px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 28px;
    margin: 8px;
    background: #0a0a0a;
    color: #f7b731;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn:hover {
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
    .container h2 {
        font-size: 26px;
    }
}




