﻿/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}
h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 15px;
}
body {
    background: #f5f5f5;
    color: #333;
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.container {
    width: 90%;
    margin: auto;
}
.top-bar {
    background: #16a34a;
    color: white;
    font-size: 14px;
    padding: 6px 0;
}

.top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: 16px;
}

    .social-icons a:hover {
        opacity: 0.7;
    }
/* ================= HEADER ================= */
#header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    color: white;
    display: flex;
    align-items: center;
}

/* MENU */
.menu {
    list-style: none;
    display: flex;
    top: 100%;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

    .menu li {
        position: relative;
    }

    .menu a {
        color: #111827;
        font-weight: 500;
        padding: 12px 15px;
        display: block;
        text-decoration: none;
    }

        .menu a:hover {
            color: #22c55e;
        }

/* DROPDOWN */

/* ================= SLIDER ================= */
/* ================= SAFE SLIDER ================= */

.ev-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* TRACK */
.ev-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

/* SLIDE */
.ev-slide {
    min-width: 100%;
    height: 100%;
}

    /* IMAGE */
    .ev-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* BUTTONS */
.ev-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
}

.ev-prev {
    left: 10px;
}

.ev-next {
    right: 10px;
}

/* MOBILE */
@media(max-width:768px) {
    .ev-slider {
        height: 250px;
    }
}

/* OVERLAY TEXT */
.overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
}

    .overlay h2 {
        font-size: 40px;
        margin-bottom: 10px;
    }

    .overlay p {
        font-size: 18px;

    }

/* SLIDER BUTTONS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ================= HERO ================= */
.hero {
    background: linear-gradient(to right, #22c55e, #16a34a);
    color: white;
    padding: 60px 0;
    text-align: center;
}

    .hero h2 {
        font-size: 36px;
        margin-bottom: 10px;
    }

.buttons {
    margin-top: 20px;
}

.btn, .btn-outline {
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    display: inline-block;
}

.btn {
    background: white;
    color: #16a34a;
}

.btn-outline {
    border: 1px solid white;
    color: white;
}

/* ================= ABOUT ================= */
.about {
    padding: 50px 0;
    text-align: center;
}

/* ================= FEATURES ================= */
.features {
    background: #e2e8f0;
    padding: 40px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
}

/* ================= PRODUCTS ================= */
.products-section {
    padding: 60px 0;
    background: #f8fafc;
}

    .products-section h2 {
        text-align: center;
        margin-bottom: 30px;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.product-box {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .product-box:hover {
        transform: translateY(-5px);
    }

.product-img {
    width: 45%;
    object-fit: contain;
    background: #fff;
}

.product-info {
    width: 55%;
    background: #fef9c3;
    padding: 15px;
}

    .product-info h3 {
        margin-bottom: 10px;
    }

    .product-info ul {
        list-style: none;
        font-size: 14px;
    }

        .product-info ul li {
            margin-bottom: 5px;
        }

.price-note {
    margin-top: 10px;
    font-size: 13px;
}

    .price-note span {
        color: red;
        font-weight: bold;
    }

/* ================= CONTACT ================= */
.contact {
    background: #0f172a;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 15px;
    background: #020617;
    color: white;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {

    .menu {
        display: none;
        flex-direction: column;
        background: #0f172a;
        position: absolute;
        width: 100%;
        top: 60px;
        left: 0;
    }

        .menu.show {
            display: flex;
        }

    .menu-toggle {
        display: block;
    }

    .product-box {
        flex-direction: column;
    }

    .product-img,
    .product-info {
        width: 100%;
    }

    .overlay h2 {
        font-size: 26px;
    }
    /* LOGO */
    .logo {
        display: flex;
        align-items: center;
    }

    .logo-img {
        height: 50px; /* adjust if needed */
        width: auto;
        object-fit: contain;
    }

        /* OPTIONAL HOVER EFFECT */
        .logo-img:hover {
            transform: scale(1.05);
            transition: 0.3s;
        }
}
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* MENU */
.menu a {
    color: #111827;
    font-weight: 600;
    position: relative;
}

    /* PREMIUM HOVER UNDERLINE EFFECT */
    .menu a::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background: #22c55e;
        transition: 0.3s;
    }

    .menu a:hover::after {
        width: 100%;
    }
.dropdown-menu {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 10px 0;
}

    .dropdown-menu li a {
        color: #111827;
        padding: 10px 15px;
    }

        .dropdown-menu li a:hover {
            background: #f0fdf4;
            color: #16a34a;
        }
@media(max-width:768px) {

    .top-flex {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

.btn-header {
    background: #22c55e;
    color: white !important;
    padding: 8px 15px;
    border-radius: 6px;
}

.btn-header:hover {
    background: #16a34a;
}
/* ================= ABOUT PREMIUM ================= */

.about-premium {
    padding: 80px 0;
    background: #ffffff;
}

/* HEADER */
.about-header {
    text-align: center;
    margin-bottom: 40px;
}

    .about-header h2 {
        font-size: 36px;
        color: #111827;
    }

    .about-header p {
        color: #6b7280;
        margin-top: 10px;
    }

/* INTRO */
.about-intro {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

/* GRID */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* CARD */
.about-card {
    background: #f9fafb;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #e5e7eb;
}

    .about-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

    .about-card h3 {
        margin-bottom: 10px;
        color: #16a34a;
    }

/* INFO */
.about-info {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-box {
    background: #111827;
    color: white;
    padding: 20px;
    border-radius: 10px;
}

    .info-box h4 {
        margin-bottom: 8px;
        color: #22c55e;
    }
/*Why Us*/
.why-premium {
    background: #f8fafc;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.why-premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
}

.why-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #e5e7eb;
}

    .why-card img {
        height: 60px;
        margin-bottom: 15px;
    }

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

   /* Index Delership*/

.dealer-banner {
    background: url('images/delar-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    position: relative;
}

    .dealer-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
    }

.dealer-content {
    position: relative;
    color: white;
    max-width: 600px;
}

.dealer-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.dealer-text p {
    line-height: 1.7;
    margin-bottom: 20px;
}

/*Upcoming Products*/
.upcoming-premium {
    padding: 80px 0;
    text-align: center;
}

.up-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.up-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

    .up-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .up-card h3 {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 15px;
        background: rgba(0,0,0,0.6);
        color: white;
    }

/*Fotter*/
/* ================= FOOTER ================= */

.footer {
    background: #020617;
    color: #e5e7eb;
    padding: 60px 0 20px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

/* COLUMN */
.footer-col h3,
.footer-col h4 {
    color: #22c55e;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 8px;
    }

/* LINKS */
.footer-col a {
    color: #e5e7eb;
    text-decoration: none;
    transition: 0.3s;
}

    .footer-col a:hover {
        color: #22c55e;
    }

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}
.cta-banner {
    background: url('../images/ev-bg.jpg') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
}

    .cta-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.6);
    }

    .cta-banner .container {
        position: relative;
    }

    .cta-banner h2 {
        font-size: 34px;
        margin-bottom: 10px;
    }
.models-section {
    padding: 80px 0;
    background: #f8fafc;
    text-align: center;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.model-card {
    position: relative;
    background: linear-gradient(to bottom, #ffffff, #f9fafb);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid #e5e7eb;
}

    .model-card img {
        width: 100%;
        height: 180px;
        object-fit: contain;
    }

    .model-card h3 {
        margin-top: 10px;
        font-size: 16px;
        color: #111827;
    }

    /* HOVER EFFECT */
    .model-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
.model-img {
    text-align: center;
    transition: 0.4s;
}

    .model-img img {
        width: 100%;
        max-width: 160px;
        height: 180px;
        object-fit: contain;
        filter: drop-shadow(0 15px 20px rgba(0,0,0,0.15));
        transition: 0.4s ease;
    }
.model-content {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    text-align: center;
    transition: 0.4s ease;
}

    .model-content h3 {
        font-size: 16px;
        color: #111827;
    }
.model-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 14px;
    background: #22c55e;
    color: white;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
}

    .model-btn:hover {
        background: #16a34a;
    }   
    .model-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* IMAGE LIFT */
.model-card:hover img {
    transform: translateY(-10px) scale(1.08);
}

/* SHOW CONTENT */
.model-card:hover .model-content {
    bottom: 15px;
}
/* BACKGROUND */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* BOX */
.modal-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease;
}

    /* IMAGE */
    .modal-box img {
        width: 180px;
        height: 200px;
        object-fit: contain;
        margin-bottom: 10px;
    }

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* HERO */
.services-hero {
    position: relative;
    background: url('images/services/services-bg.jpg') center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.services-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.services-hero h1 {
    position: relative;
    font-size: 40px;
}

/* SECTION */
.services-section {
    padding: 70px 0;
    background: #f8fafc;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 25px;
}

/* CARD */
.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .service-card:hover {
        transform: translateY(-6px);
    }

    /* IMAGE */
    .service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

/* CONTENT */
.service-content {
    padding: 20px;
}

    .service-content h3 {
        margin-bottom: 10px;
    }

    .service-content p {
        color: #6b7280;
        font-size: 14px;
    }

/* CTA */
.services-cta {
    background: #111827;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

    .services-cta .btn {
        margin-top: 15px;
        display: inline-block;
        background: #22c55e;
        padding: 10px 20px;
        border-radius: 6px;
        color: white;
        text-decoration: none;
    }

/* MOBILE */
@media(max-width:768px) {
    .services-hero h1 {
        font-size: 28px;
    }
}



.contact-hero {
    background: url('/images/about/contact-bg.jpg') center/cover no-repeat;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.contact-hero h1 {
    position: relative;
    color: white;
    font-size: 40px;
}

/* SECTION */
.contact-section {
    padding: 60px 0;
}

/* GRID */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* CARD */
.contact-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

/* FORM */
.input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.btn {
    background: #22c55e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* MAP */
.map {
    margin-top: 40px;
}

/* MOBILE */
@media(max-width:768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}