/* CSS Document */
html {
    scroll-behavior: smooth;
}
section {
    scroll-margin-top: 90px; /* adjust according to navbar height */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* TOP BAR */
.top-bar {
    width: 100%;
    overflow: hidden;
    background:#FFCCCC;
    color: #fff;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
	
}

/* SLIDER */
.top-bar-content {
    display: flex;
    white-space: nowrap;
    animation: slide 18s linear infinite;
}

/* TEXT STYLE */
.top-bar-content span {
    padding: 0 50px;
    font-size: 14px;
    letter-spacing: 1px;
    color:#000000;
    
}

/* ANIMATION */
@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* HOVER PAUSE */
.top-bar:hover .top-bar-content {
    animation-play-state: paused;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .top-bar {
        height: 35px;
    }

    .top-bar-content span {
        font-size: 12px;
        padding: 0 30px;
    }
}


/* NAVBAR BASE */
.navbar {
    width: 100%;
    position: fixed;
    top: 10; /* below your top bar */
    left: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

/* SCROLL EFFECT */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 20px rgba(0, 255, 200, 0.2);
}

/* CONTAINER */
.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00ffcc;
    font-weight: 600;
    font-size: 18px;
    text-shadow: 0 0 10px #00ffcc;
}

.logo img {
    width: 200px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

/* HOVER LINE EFFECT */
.nav-links li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #00ffcc;
    transition: 0.4s;
}

.nav-links li a:hover {
    color: #00ffcc;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* BUTTON */
.nav-btn a {
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(45deg, #00ffcc, #007a5c);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav-btn a:hover {
    box-shadow: 0 0 15px #00ffcc;
    transform: scale(1.05);
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ffcc;
    transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {

    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #000;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        transition: 0.4s;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}



/* HERO SECTION */
.hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* SLIDER */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* EACH SLIDE */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* IMAGE */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s ease;
}

/* ZOOM EFFECT */
.slide.active img {
    transform: scale(1.1);
}

/* OVERLAY */
.slide::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,255,200,0.2));
    top: 0;
    left: 0;
}

/* CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 500px;
    animation: fadeUp 1.2s ease;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #00ffcc;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ddd;
}

/* BUTTONS */
.hero-btns a {
    padding: 12px 25px;
    margin-right: 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(45deg, #00ffcc, #007a5c);
    color: #000;
    transition: 0.3s;
}

.hero-btns a:hover {
    box-shadow: 0 0 20px #00ffcc;
    transform: scale(1.05);
}

.hero-btns .outline {
    background: transparent;
    border: 2px solid #00ffcc;
    color: #00ffcc;
}

/* TEXT ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-content {
        left: 5%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-btns a {
        padding: 10px 15px;
        font-size: 12px;
    }
}



/* SECTION */
.brand-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

/* HEADER */
.brand-header h2 {
    font-size: 34px;
    color: #111;
    margin-bottom: 15px;
}

.brand-header p {
    max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* GRID */
.brand-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* BOX */
.brand-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

/* IMAGE AUTO FIT */
.brand-box img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: 0.3s;
}

/* HOVER */
.brand-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.brand-box:hover img {
    transform: scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .brand-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .brand-container {
        grid-template-columns: 1fr;
    }
}


/* SECTION */
.most-rented {
    background: #fff;
    padding: 80px 20px;
    text-align: center;
}

/* HEADER */
.rented-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #111;
}

.rented-header p {
    max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* GRID */
.rented-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.rented-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
}

/* IMAGE */
.rented-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER EFFECT */
.rented-card:hover img {
    transform: scale(1.1);
}

.rented-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* INFO */
.rented-info {
    padding: 15px;
}

.rented-info h3 {
    margin-bottom: 5px;
}

.rented-info p {
    color: #00aa88;
    font-weight: bold;
    margin-bottom: 10px;
}

/* BUTTONS */
.rented-btns a {
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    background: #111;
    color: #fff;
    transition: 0.3s;
}

.rented-btns a:last-child {
    background: #00cc99;
    color: #000;
}

.rented-btns a:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 900px) {
    .rented-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .rented-container {
        grid-template-columns: 1fr;
    }
}



/* SECTION */
.zigzag-section {
    background: #000;
    padding: 80px 20px;
    color: #fff;
}

/* ITEM */
.zigzag-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

/* REVERSE */
.zigzag-item.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.zigzag-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER IMAGE */
.zigzag-img:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.zigzag-content {
    max-width: 500px;
}

.zigzag-content h2 {
    margin-bottom: 15px;
    color: #00ffcc;
}

.zigzag-content p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTONS */
.zigzag-btns a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    background: #00ffcc;
    color: #000;
    transition: 0.3s;
}

.zigzag-btns a:first-child {
    background: transparent;
    border: 1px solid #00ffcc;
    color: #00ffcc;
}

.zigzag-btns a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #00ffcc;
}

/* MOBILE */
@media (max-width: 900px) {
    .zigzag-item {
        flex-direction: column !important;
        text-align: center;
    }

    .zigzag-content {
        max-width: 100%;
    }

    .zigzag-img img {
        max-width: 100%;
    }
}



/* SECTION */
.popular-services {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

/* HEADER */
.services-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #111;
}

.services-header p {
    max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* GRID */
.services-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.service-card {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    position: relative;
}

/* IMAGE AUTO FIT */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER */
.service-card:hover img {
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* INFO */
.service-info {
    padding: 15px;
}

.service-info h3 {
    margin-bottom: 8px;
}

.service-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

/* BUTTONS */
.service-btns a {
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    background: #111;
    color: #fff;
    transition: 0.3s;
}

.service-btns a:last-child {
    background: #00cc99;
    color: #000;
}

.service-btns a:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}



/* SECTION */
.premium-cars {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

/* HEADER */
.premium-header h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #111;
}

.premium-header p {
    max-width: 800px;
    margin: auto;
    color: #555;
    line-height: 1.6;
    margin-bottom: 50px;
}

/* GRID */
.premium-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.premium-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f9f9f9;
    transition: 0.4s;
}

/* IMAGE */
.premium-card img {
    width: 100%;
    height: auto ;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER EFFECT */
.premium-card:hover img {
    transform: scale(1.1);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* INFO OVERLAY */
.premium-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 15px;
    text-align: left;
}

/* BUTTONS */
.premium-btns a {
    display: inline-block;
    margin-right: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    background: #00cc99;
    color: #000;
    transition: 0.3s;
}

.premium-btns a:first-child {
    background: #fff;
    color: #000;
}

.premium-btns a:hover {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 900px) {
    .premium-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .premium-container {
        grid-template-columns: 1fr;
    }
}



/* SECTION */
.seo-section {
    background: #000;
    padding: 80px 20px;
    color: #fff;
}

/* CONTAINER */
.seo-container {
    max-width: 900px;
    margin: auto;
}

/* HEADINGS */
.seo-container h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #00ffcc;
}

.seo-container h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #00ffcc;
}

/* TEXT */
.seo-container p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
    padding: 15px;
    background: #111;
    border-radius: 10px;
    transition: 0.3s;
}

.faq-item h4 {
    margin-bottom: 5px;
    color: #fff;
}

.faq-item p {
    font-size: 14px;
    color: #aaa;
}

/* HOVER */
.faq-item:hover {
    background: #1a1a1a;
}

/* MOBILE */
@media (max-width: 600px) {
    .seo-container h2 {
        font-size: 24px;
    }
}




/* SECTION */
.contact-section {
    background: #ffffff;
    padding: 80px 20px;
}

/* CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.contact-info h2 {
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    margin-bottom: 10px;
}

/* INFO BOX */
.info-box p {
    margin: 8px 0;
}

/* WHATSAPP BUTTON */
.whatsapp-contact {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
}

/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
}

.contact-form textarea {
    min-height: 100px;
}

/* BUTTON */
.contact-form button {
    padding: 12px;
    border: none;
    background: #00cc99;
    color: #000;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}



/* FOOTER */
.footer {
    background: #ffffff;
    color: #333;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* COLUMNS */
.footer-col h3, .footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #00cc99;
}

/* SOCIAL */
.footer-social a {
    margin-right: 8px;
    font-size: 18px;
    text-decoration: none;
}

/* NEWSLETTER */
.newsletter input {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.newsletter button {
    margin-top: 10px;
    padding: 8px 15px;
    border: none;
    background: #00cc99;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-extra a {
    margin-left: 15px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}