/* ================= GLOBAL STYLES ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: #f4f6f9;
    color: #333;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* ================= HEADER ================= */
header {
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #ff3c00;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #ff3c00;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* ================= HERO ================= */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../images/hero.jpg') center/cover no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

@media  (max-width:1280px) {
    .hero{
        height: 95vh;
    }
}
@media  (max-width:1024px){
    .hero{
        height: 100vh;
    }
}
@media  (max-width:912px) {
    .hero{
        height: 99vh;
    }
}
@media  (max-width:500px) {
    .hero{
        height: 90vh;
    }
}
.hero-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 25px;
    font-size: 18px;
}

/* ================= PAGE HERO ================= */
.page-hero {
    background: #111;
    color: white;
    padding: 60px 8%;
    text-align: center;
}

.page-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* ================= BUTTON ================= */
.btn,
.card-btn {
    display: inline-block;
    background: #ff3c00;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    transition: 0.3s;
    font-weight: 500;
}

.btn:hover,
.card-btn:hover {
    background: #cc2f00;
}

/* ================= ABOUT ================= */
.about {
    padding: 60px 8%;
    text-align: center;
}

/* ================= CARDS ================= */
.card-container,
.brands-container,
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 60px 8%;
}

.card,
.brand-card,
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover,
.brand-card:hover,
.blog-card:hover {
    transform: translateY(-5px);
}

.card h3,
.brand-card h2,
.blog-content h2 {
    padding: 15px;
}

.card p,
.brand-card p,
.blog-content p {
    padding: 0 15px 15px;
}

.card-btn,
.brand-card .btn,
.blog-content .btn {
    margin: 0 15px 20px;
}

/* ================= REVIEWS ================= */
.reviews-container {
    padding: 60px 8%;
}

.review-card {
    display: flex;
    background: #fff;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-card img {
    width: 300px;
    object-fit: cover;
}

.review-content {
    padding: 20px;
}

.review-content ul {
    margin: 15px 0;
}

/* ================= SEARCH ================= */
.search-section {
    padding: 20px 8%;
    text-align: center;
}

.search-section input {
    width: 60%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* ================= COMPARE ================= */
.compare-selection {
    padding: 40px 8%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.car-select select {
    padding: 10px;
    border-radius: 4px;
}

.comparison-result {
    padding: 40px 8%;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

table th,
table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

table th {
    background: #ff3c00;
    color: white;
}

/* ================= BLOG ================= */
.blog-date {
    font-size: 14px;
    color: gray;
    padding: 0 15px;
}

/* ================= CATEGORIES ================= */
.category-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 8%;
}

.category {
    background: #ff3c00;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 500;
}

/* ================= WHY US ================= */
.why-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 8%;
}

.why-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 280px;
    text-align: center;
}

/* ================= NEWSLETTER ================= */
.newsletter {
    text-align: center;
    padding: 60px 8%;
    background: #111;
    color: white;
}

.newsletter input {
    padding: 10px;
    width: 250px;
    border: none;
    border-radius: 4px;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    background: #ff3c00;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

/* ================= FOOTER ================= */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
        color: white;
    }

    .review-card {
        flex-direction: column;
    }

    .review-card img {
        width: 100%;
    }

    .search-section input {
        width: 100%;
    }

    .why-container {
        flex-direction: column;
        align-items: center;
    }

    .category-container {
        flex-direction: column;
        align-items: center;
    }
    .hero{
        height: 93vh;
    }
}
.map-section {
    padding: 60px 10%;
    text-align: center;
}

#map {
    width: 100%;
    height: 400px;
    margin-top: 20px;
    border-radius: 10px;
}
/* Background Video Styling */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 109%;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header {
    opacity: 1;
    animation: slowFadeIn 900ms ease forwards;
    animation-delay: 200ms;
    will-change: opacity, transform;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    color: #fff;
    padding: .3125rem 1rem
}

.social-media-icons {
    display: flex;
    align-items: center;
    gap: .5rem
}

div {
    display: block
}

.header-left {
    display: flex;
    align-items: center;
    gap: .5rem
}
.social-media-icons i {
    opacity: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    animation: slowFadeIn 850ms ease forwards;
    will-change: opacity, transform;
    cursor: pointer;
    font-size: 1.05rem;
    background: rgb(10, 10, 10)
}

.social-media-icons i:nth-child(1) {
    animation-delay: 300ms
}

.social-media-icons i:nth-child(2) {
    animation-delay: 430ms
}

.social-media-icons i:nth-child(3) {
    animation-delay: 560ms
}

.social-media-icons i:nth-child(4) {
    animation-delay: 690ms
}

.sis-pms-contact {
    display: flex;
    gap: 1rem;
    align-items: center;
    color: #060606;
    font-weight: 800;
}

.sis-pms-contact .contact-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .95rem
}

.sis-pms-contact i {
    color: #101010;
    border: 1px solid #0f0e0e;
    padding: .18rem .32rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #a6754b;
    color: #fff;
    padding: .35rem .6rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600
}

.header-btn:hover {
    opacity: .9
}

.social-media-icons i {
    transition: background-color .18s ease, color .18s ease, transform .12s ease
}

.social-media-icons i:hover {
    transform: translateY(-2px)
}

.social-media-icons i.fa-youtube:hover {
    background: red;
    color: #fff
}

.social-media-icons i.fa-linkedin:hover {
    background: #1DA1F2;
    color: #fff
}

.social-media-icons i.fa-twitter:hover {
    background: #1DA1F2;
    color: #fff
}

.social-media-icons i.fa-facebook-f:hover {
    background: #1877F2;
    color: #fff
}
@media (max-width:760px) {
    body {
        font-size: 14px
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: .2rem .5rem;
        gap: .25rem
    }

    .social-media-icons {
        order: 0;
        display: flex;
        align-items: center;
        gap: .25rem
    }

    .sis-pms-contact {
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: .6rem;
        width: 100%;
        padding-bottom: .15rem
    }

    .sis-pms-contact .contact-item {
        display: flex;
        align-items: center;
        gap: .4rem;
        white-space: nowrap
    }

    .sis-pms-contact .contact-item span {
        display: inline;
        font-size: .8rem
    }

    .logo-mark {
        width: 22px;
        height: 22px;
        font-size: .62rem
    }

    .nav-logo {
        width: 80px;
        height: auto
    }

    .social-media-icons i {
        width: 20px;
        height: 20px;
        font-size: .78rem;
        flex: 0 0 auto
    }

    .logo-text {
        display: none
    }

    .nav-inner {
        padding: 0 .5rem
    }

    .curtain .curtain-list {
        min-width: 100%;
        padding-top: 2.5rem
    }
}
.face{
    color: #fff;
}
.face:hover{
    color: #585656;
}
.main-nav {
            background: #fff;
            border-bottom: 1px solid rgb(0 0 0 / .06);
            position: sticky;
            top: 0;
            z-index: 1000
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 .75rem
        }

        .nav-left {
            display: flex;
            align-items: center
        }

        .nav-logo {
            width: 150px;
            height: 60px;
            object-fit: contain;
            display: block
        }

        .nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 1.25rem;
            align-items: center
        }

        .nav-link {
            color: #333;
            text-decoration: none;
            padding: .45rem .6rem;
            border-radius: 4px;
            font-weight: 600
        }

        .nav-link:hover {
            background: rgb(255 107 0 / .08);
            color: #ff6b00
        }

        @media (max-width:768px) {
            .nav-list {
                flex-wrap: wrap;
                gap: .1rem;
                padding: .1rem
            }

            .nav-link {
                padding: .10rem .5rem
            }
        }

        .hamburger {
            display: none;
            background: rgba(255, 255, 255, 0);
            border: 0;
            padding: 6px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .hamburger-box {
            display: inline-block;
            width: 22px;
            height: 16px;
            position: relative;
        }
        @media (max-width:320px) {
            .hamburger-box{
                position: relative;
                right: 50px;
            }
        }
        .hamburger-inner,
        .hamburger-inner:before,
        .hamburger-inner:after {
            background: #ffffff;
            width: 22px;
            height: 2px;
            border-radius: 2px;
            display: block;
            position: absolute;
            left: 0
        }

        .hamburger-inner {
            top: 50%;
            transform: translateY(-50%)
        }

        .hamburger-inner:before {
            content: '';
            top: -7px
        }

        .hamburger-inner:after {
            content: '';
            top: 7px
        }

        .curtain {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            pointer-events: none
        }

        .curtain .curtain-close {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 1300;
            background: #fff;
            border: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: #333;
            cursor: pointer;
            box-shadow: 0 6px 18px rgb(0 0 0 / .12)
        }

        .curtain.open .curtain-close {
            display: flex
        }

        .curtain .curtain-list {
            background: #fff;
            min-width: 260px;
            max-width: 100%;
            height: 100vh;
            padding: 3.5rem 1.25rem;
            list-style: none;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem
        }

        .curtain .curtain-list a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            padding: .5rem 0
        }

        .curtain.open {
            pointer-events: auto
        }

        .curtain .curtain-list {
            transform: translateX(100%);
            transition: transform .28s ease
        }

        .curtain.open .curtain-list {
            transform: translateX(0)
        }

        .no-scroll {
            overflow: hidden
        }

        @media (max-width:570px) {
            .nav-list {
                display: none
            }

            .hamburger {
                display: inline-flex
            }
        }

        @media (max-width:480px) {
            .curtain .curtain-close {
                width: 48px;
                height: 48px;
                font-size: 1.35rem;
                top: 10px;
                right: 10px
            }
        }
        .curtain {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            pointer-events: none
        }

        .curtain .curtain-close {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 1300;
            background: #fff;
            border: 0;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: #333;
            cursor: pointer;
            box-shadow: 0 6px 18px rgb(0 0 0 / .12)
        }

        .curtain.open .curtain-close {
            display: flex
        }

        .curtain .curtain-list {
            background: #fff;
            min-width: 260px;
            max-width: 100%;
            height: 100vh;
            padding: 3.5rem 1.25rem;
            list-style: none;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1rem
        }

        .curtain .curtain-list a {
            color: #333;
            text-decoration: none;
            font-weight: 600;
            padding: .5rem 0
        }
        
        .curtain.open {
            pointer-events: auto
        }

        .curtain .curtain-list {
            transform: translateX(100%);
            transition: transform .28s ease
        }

        .curtain.open .curtain-list {
            transform: translateX(0)
        }

        .no-scroll {
            overflow: hidden
        }

        @media (max-width:767px) {
            .nav-list {
                display: none
            }

            .hamburger {
                display: inline-flex;
                position: relative;
                width: 5px;
                left: 40px;
            }
        }

        @media (max-width:480px) {
            .curtain .curtain-close {
                width: 48px;
                height: 48px;
                font-size: 1.35rem;
                position: relative;
                top: 0px;
                left: 300px
            }
        }

        @media (max-width:760px) {
            .header {
                flex-direction: column;
                align-items: flex-start;
                padding: .2rem .5rem;
                gap: .25rem
            }

            .social-media-icons {
                order: 0;
                display: flex;
                align-items: center;
                gap: .25rem
            }

            .sis-pms-contact {
                order: 1;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: .6rem;
                width: 100%;
                padding-bottom: .15rem
            }

            .sis-pms-contact .contact-item {
                display: flex;
                align-items: center;
                gap: .4rem;
                white-space: nowrap
            }

            .sis-pms-contact .contact-item span {
                display: inline;
                font-size: .8rem
            }

            .logo-mark {
                width: 22px;
                height: 22px;
                font-size: .62rem
            }

            .nav-logo {
                width: 80px;
                height: auto
            }

            .social-media-icons i {
                width: 20px;
                height: 20px;
                font-size: .78rem;
                flex: 0 0 auto
            }

            .logo-text {
                display: none
            }

            .nav-inner {
                padding: 0 .5rem
            }

            .curtain .curtain-list {
                min-width: 100%;
                padding-top: 2.5rem;
            }

            button {
                color: rgb(255 107 0 / .08)
            }


            button {
                color: #fff;
                font-size: 2px;
                line-height: 1.5;
                padding: 10px 35px;
                border: none;
                height: auto;
                cursor: pointer;
                display: inline-block;
                font: inherit;
                margin: 0;
            }
        }
        .map-section {
    padding-bottom: 80px;
    background-color: #fcfaf9
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgb(0 0 0 / .1);
    border: 1px solid #eee
}

.map-container iframe {
    display: block;
    filter: grayscale(.2) contrast(1.1)
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgb(0 0 0 / .15);
    max-width: 280px;
    z-index: 10
}

.map-overlay-card i {
    color: sienna;
    font-size: 1.5rem;
    margin-bottom: 10px
}

.map-overlay-card p {
    font-size: .95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 12px
}

.map-overlay-card a {
    color: sienna;
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase
}

.map-overlay-card a:hover {
    text-decoration: underline
}

@media (max-width:768px) {
    .map-overlay-card {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #eee
    }
}