@font-face {
  font-family: "Neulis Sans";
  src: url('../fonts/fonnts.com-Neulis_Sans_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Neulis Sans";
  src: url("../fonts/fonnts.com-Neulis_Sans_Bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


:root{
    --global-font: "Neulis Sans";
}


body {
    font-family: var(--global-font);
}

.navbar .nav-link {
    color: #111;
}

.navbar .nav-link:hover {
    color: #dc3545;
}

.main-header {
    border-bottom: 1px solid #f1f1f1;
}

/* ================= HERO VIDEO SECTION ================= */

.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}

.hero-tag {
    display: inline-block;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    margin: 20px 0 30px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .hero-video-section {
        height: 90vh;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }
}



.product-slider-section {
    background: #fff;
}

.section-tag {
    color: #ff0000;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
}

.product-card {
    background: #f8fbfd;
    border-radius: 20px;
    padding: 40px;
}

.product-img {
    max-height: 320px;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 16px;
}

.productSwiper {
    position: relative;
    padding-bottom: 70px; /* space for arrows */
}

.product-slider-nav {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.product-slider-nav span {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #fff;
    transition: all 0.3s ease;
}

.product-slider-nav span:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

/* ================= SERVICE CENTRE SECTION ================= */

.service-centre-section {
    background: #fff;
}

.service-centre-wrapper {
    position: relative;
    background: #f8fbfd;
    border-radius: 24px;
    padding: 60px 50px;
    overflow: hidden;
}

.section-tag {
    color: #ff0000;
    font-weight: 600;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.section-desc {
    font-size: 16px;
    color: #666;
    max-width: 420px;
}

.service-map-img {
    max-width: 100%;
    height: auto;
}

/* Dealership count */
.dealership-count {
    position: absolute;
    right: 50px;
    bottom: 40px;
    text-align: right;
}

.dealership-count h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.dealership-count span {
    font-size: 16px;
    color: #666;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .service-centre-wrapper {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 32px;
    }

    .dealership-count {
        position: static;
        margin-top: 30px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 15px;
    }
}


.glimpse-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.glimpse-title {
    color: #ff0000;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.glimpse-text {
    font-size: 17px;
    line-height: 1.8;
    color: #6c757d;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .glimpse-section {
        padding: 50px 0;
    }

    .glimpse-title {
        font-size: 26px;
    }
}


.faq-section {
    padding: 80px 0;
    background: #ffffff;
}

.faq-tag {
    color: #ff0000;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 40px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid #e6eef5;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 24px;
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    font-size: 22px;
    color: #ff0000;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    padding-bottom: 20px;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }
}

.service-hero {
    padding: 40px 20px;
}

.service-hero-wrapper {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    max-width: 100%;
}

/* Image (HTML se) */
.service-hero-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* Dark overlay */
.service-hero-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.65) 0%,
        rgba(0,0,0,0.35) 40%,
        rgba(0,0,0,0.1) 70%,
        rgba(0,0,0,0) 100%
    );
}

/* Text content */
.service-hero-content {
    position: absolute;
    left: 40px;
    bottom: 40px;
    z-index: 2;
    color: #ffffff;
    max-width: 520px;
}

.icon-box {
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.service-hero-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-hero-content p {
    font-size: 18px;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 992px) {
    .service-hero-img {
        height: 420px;
    }

    .service-hero-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .service-hero-img {
        height: 360px;
    }

    .service-hero-content {
        left: 20px;
        bottom: 20px;
    }

    .service-hero-content h2 {
        font-size: 26px;
    }

    .service-hero-content p {
        font-size: 15px;
    }
}

