@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;
}

.testRideBtn{
    background-color: #e57716 !important;
}

/* ================= 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;
    }
}



/* ===============================
   Parsuvi Product Banner
================================ */

.pm-product-banner {
    width: 100%;
    overflow: hidden;
}

.pm-banner-wrapper {
    position: relative;
    width: 100%;
    height: 80vh; /* Responsive height */
    min-height: 320px;
    max-height: 650px;
}

.pm-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */
.pm-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
    display: flex;
    align-items: center;
}

/* Inner Content */
.pm-banner-inner {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.pm-banner-title {
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin: 0;
}

.pm-banner-description {
    width: 553px;
}

/* ================= Responsive ================= */

@media (max-width: 992px) {
    .pm-banner-title {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .pm-banner-wrapper {
        height: 45vh;
    }

    .pm-banner-title {
        font-size: 26px;
    }
}

/* ================= Performance Section ================= */

.pm-performance-section {
    background: #f8f9fb;
}

.pm-small-heading {
    color: #e60000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pm-main-heading {
    font-weight: 700;
    font-size: 36px;
    margin-top: 10px;
    color: #222;
}

/* Card Styling */

.pm-card {
    transition: 0.3s ease;
}

.pm-card-img img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.pm-card-content {
    margin-top: 20px;
}

.pm-card-content h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.pm-card-content p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

/* Hover Effect */
.pm-card:hover {
    transform: translateY(-5px);
}

/* Responsive */

@media (max-width: 991px) {
    .pm-main-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .pm-main-heading {
        font-size: 24px;
    }
}



/* ================= Product Spec Section ================= */

.pm-product-spec-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.pm-spec-tabs .nav-link {
    border-radius: 50px;
    padding: 10px 25px;
    margin: 0 5px;
    font-weight: 600;
    color: #000;
}

.pm-spec-tabs .nav-link.active {
    background: #ff0000;
    color: #fff;
}

.pm-spec-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pm-spec-card:hover {
    transform: translateY(-5px);
}

.pm-icon-circle {
    width: 70px;
    height: 70px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
}

.pm-spec-card h6 {
    font-weight: 700;
    margin-bottom: 8px;
}

.pm-spec-card p {
    margin: 0;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .pm-product-spec-section {
        padding: 70px 0;
    }
}



/* ================= Color Section ================= */

.pm-color-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.pm-color-slide {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.pm-color-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Color Dots */
.color-pagination {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.color-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    opacity: 1;
    border: 2px solid #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.color-pagination .swiper-pagination-bullet-active {
    transform: scale(1.3);
    border: 2px solid #000;
}

/* Responsive */
@media (max-width: 992px) {
    .pm-color-section {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .pm-color-section {
        padding: 60px 0;
    }
}


.pm-feature-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.pm-feature-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.pm-feature-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.pm-feature-card:hover {
    transform: translateY(-5px);
}

.pm-feature-card img {
    width: 100%;
    display: block;
}

.pm-content {
    padding: 22px;
}

.pm-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pm-content p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Layout Controls */
.pm-large {
    grid-column: span 6;
}

.pm-feature-card:not(.pm-large) {
    grid-column: span 4;
}

/* Responsive */

@media (max-width: 992px) {

    .pm-large {
        grid-column: span 12;
    }

    .pm-feature-card:not(.pm-large) {
        grid-column: span 6;
    }
}

@media (max-width: 576px) {

    .pm-feature-grid {
        gap: 20px;
    }

    .pm-feature-card,
    .pm-large,
    .pm-feature-card:not(.pm-large) {
        grid-column: span 12;
    }

    .pm-content h4 {
        font-size: 16px;
    }

    .pm-content p {
        font-size: 13px;
    }
}
.pm-about-section {
    padding: 100px 0;
    background: #ffffff;
}

.pm-about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image */
.pm-about-image {
    flex: 1;
}

.pm-about-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    height: 430px;
    object-fit: cover;
    
}

/* Content */
.pm-about-content {
    flex: 1;
}

.pm-eyebrow {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff0000;
    display: inline-block;
    margin-bottom: 12px;
}

.pm-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.pm-sub-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.pm-about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 18px;
}

/* Button */
.pm-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #000;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.pm-btn:hover {
    background: #ff0000;
}

/* Responsive */

@media (max-width: 992px) {

    .pm-about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .pm-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {

    .pm-about-section {
        padding: 70px 0;
    }

    .pm-heading {
        font-size: 24px;
    }

    .pm-about-content p {
        font-size: 14px;
    }
}


.pm-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.pm-banner-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.pm-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

.pm-banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    color: #fff;
    text-align: left;
}

.pm-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.pm-breadcrumb {
    font-size: 16px;
    margin-top: 10px;
}

.pm-about-page {
    padding: 90px 0;
}

.pm-about-wrapper,
.pm-dealership-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.pm-about-image img,
.pm-dealership-image img {
    width: 100%;
    border-radius: 20px;
}

.pm-eyebrow {
    color: red;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.pm-mission {
    background: #f8f9fa;
    padding: 90px 0;
}

.pm-mission-box {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.pm-mission-box:hover {
    transform: translateY(-6px);
}

.pm-icon-circle {
    width: 85px;
    height: 85px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(255,0,0,0.3);
}

.pm-mission-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
}

.pm-mission-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .pm-mission-box {
        padding: 35px 25px;
    }
}

.pm-founders {
    padding: 90px 0;
}

.pm-founder-card {
    padding: 20px;
}

.pm-founder-card img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
}

.pm-founder-card span {
    display: block;
    font-size: 13px;
    color: gray;
    margin-bottom: 10px;
}

.pm-faq {
    background: #f8f9fa;
    padding: 80px 0;
}

/* Responsive */
@media(max-width: 992px){
    .pm-about-wrapper,
    .pm-dealership-wrapper {
        flex-direction: column;
    }

    .pm-banner h1 {
        font-size: 28px;
    }
}


/* ===== Banner ===== */
.pm-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.pm-banner-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.pm-banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
}

.pm-banner-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    color: #fff;
}

.pm-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.pm-breadcrumb {
    margin-top: 10px;
    font-size: 16px;
}

/* ===== Contact Section ===== */

.pm-contact-icon {
    width: 60px;
    height: 60px;
    background: #e67717;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-right: 20px;
}

.pm-contact-box h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.pm-contact-box p {
    margin: 0;
    color: #555;
}

.pm-contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.pm-btn {
    background: #e67717;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.pm-btn:hover {
    background: #c85f0f;
}


.parsuvi-growth-section{
    background:#d82118;
    padding:70px 0;
    color:#fff;
}

.parsuvi-about-content p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:18px;
    max-width:520px;
}

.parsuvi-stat-box{
    border-left:2px solid rgba(255,255,255,0.35);
    padding-left:18px;
}

.parsuvi-stat-box h3{
    font-size:30px;
    font-weight:600;
    margin-bottom:6px;
}

.parsuvi-stat-box p{
    font-size:13px;
    margin:0;
    opacity:0.9;
}

/* Responsive */

@media (max-width:992px){

.parsuvi-growth-section{
    padding:60px 0;
}

.parsuvi-about-content p{
    font-size:16px;
}

.parsuvi-stat-box h3{
    font-size:26px;
}

}

@media (max-width:576px){

.parsuvi-growth-section{
    padding:50px 20px;
}

.parsuvi-stat-box{
    padding-left:14px;
}

.parsuvi-stat-box h3{
    font-size:22px;
}

.parsuvi-about-content p{
    font-size:15px;
}

}
