/* ==============================
   BOOTSTRAP RESET / NEUTRALIZER
   ============================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove focus outlines & shadows */
:focus,
:focus-visible,
:active {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove tap highlight (mobile) */
* {
    -webkit-tap-highlight-color: transparent;
}


.btn,
button {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background-image: none !important;
}

.btn:focus,
.btn:active,
.btn:focus-visible {
    box-shadow: none !important;
    outline: none !important;
}




/* ===========================
   HERO BASE
=========================== */

.hero-section {
    background: #000;
}

.hero-video {
    object-fit: cover;
    z-index: 1;
}

/* ===========================
   HORIZONTAL LINE OVERLAY
=========================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, 0.40),
            rgba(0, 0, 0, 0.70)),
        repeating-linear-gradient(to bottom,
            rgba(255, 255, 255, 0.00) 0px,
            rgba(255, 255, 255, 0.2) 1px,
            transparent 1px,
            transparent 1px);
}

/* ===========================
   CONTENT
=========================== */

.hero-content {
    z-index: 3;
}

/* =========================
   HEADER BASE
========================= */

.neo-header {
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Absolute state (Hero only) */
.neo-header {
    background: transparent;
}

/* Fixed state */
.neo-header.is-fixed {
    position: fixed !important;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.35s ease;
}

/* Slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* =========================
   LINKS & BUTTON
========================= */

.neo-link {
    color: #fff;
    font-weight: 400;
    padding: 10px 22px;
    background: transparent;
    position: relative;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    line-height: 1;
}

.neo-link:hover {
    background: #ffffff12;

}

/* CTA Button */
.neo-btn-sm {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #632d2d;
    text-decoration: none;
}

/* Logo safety */
.neo-logo img {
    display: block;
}

/* =========================
   HERO TRUST UI
========================= */

.hero-trust-ui {
    z-index: 6;
    padding: 32px 0;
}

/* =========================
   TRUST CARD
========================= */

.trust-card {
    height: 100%;
    padding: 12px 16px;
    text-align: center;
    color: #fff;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;

    transition: transform 0.3s ease, background 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

/* =========================
   ICON
========================= */

.trust-icon {
    display: inline-flex;
    margin-bottom: 6px;
}



/* =========================
   TEXT
========================= */

.trust-card h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.trust-card p {
    font-size: 12px;
    opacity: 0.85;
    margin: 0;
}

.bg-main {
    background: #D6CFBE;
}

.neo-logo img {
    background-color: #ffffffb7;
    padding: 6px;
    border-radius: 10px;
}

.product-carousel {
    padding: 20px 0;
}

.product-carousel .product-item {
    display: block;
    text-align: center;
    color: #111;
    padding: 10px;
}

/* Images */
.product-carousel img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


/* Title */
.product-carousel h6 {
    margin-top: 14px;
    font-size: 15px;
    text-decoration: none;
    font-weight: 500;
}

/* Side items */
.product-carousel .owl-item {
    opacity: 0.80;
    transform: scale(.97);
    padding: 20px 0;
        flex-shrink: 0;
    transition: all 0.4s ease;
}

/* Center item */
.product-carousel .owl-item.center {
    opacity: 1;
    transform: scale(1.1);
}


.product-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.product-carousel .owl-dot span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.35s ease;
}

/* Active */
.product-carousel .owl-dot.active span {
    width: 40px;
    background: #111;
}

/* Smooth continuous slide motion */
.product-carousel .owl-stage {
    transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
     display: flex;
    align-items: center;
}


.goal-box {
    position: relative;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 4px rgba(0, 0, 0, 0.25),
        0 .5px 10px rgba(0, 0, 0, 0.25);
    background-blend-mode: overlay;
    backdrop-filter: blur(14px);
    transition: transform 0.3s ease;
    flex-direction: column;
}
.contact-form{
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -2px 4px rgba(0, 0, 0, 0.25),
        0 .5px 5px rgba(0, 0, 0, 0.25);

    background-blend-mode: overlay;
    backdrop-filter: blur(14px);
    transition: transform 0.3s ease;
}

.goal-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.goal-box:hover img {
    transform: scale(1.1);
}

.goal-box .hover-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.6);
    transform: scale(1.08);
    transition: filter 0.45s ease, transform 0.45s ease;
}

.goal-box .hover-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    transition: background 0.45s ease;
}

.goal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    text-align: center;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #ffffff;
}

.goal-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.goal-content p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}


@media (max-width: 768px) {
    .goal-box {
        height: 100px;

    }
}


.goal-box:hover .hover-bg {
    filter: blur(0px) brightness(1);
    transform: scale(1);
}

.goal-box:hover .hover-bg::after {
    background: rgba(0, 0, 0, 0.15);
}

.goal-box:hover .goal-content {
    opacity: 0;
    transform: translateY(10px);
}

@media (max-width: 768px) {
    .goal-box {
        height: 100px;
    }

    .goal-box .hover-bg {
        filter: blur(2px) brightness(0.75);
    }

    .goal-box:hover .goal-content {
        opacity: 0;
        transform: none;
    }
}

.catalog-section {
    background: linear-gradient(120deg, #0f3d2e, #1c6b2a);
}
 .video-thumb {
    position: relative;
    max-width: 900px;
    margin: auto;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: 0.4s;

    aspect-ratio: 16 / 9;   /* Key property */
}

/* Image fill */
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-thumb:hover {
    transform: translateY(-6px);
}

/* Play button */
.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: #fff;
    color: #fff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
/* Pin group */
.dealer-pin {
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Pulse effect */
.pin-pulse {
    fill: rgba(203, 46, 46, 0.25);
    animation: pulse 1.8s infinite;
}

/* Main dot */
.pin-dot {
    fill: red;
    transition: 0.3s;
}

/* Label */
.pin-label {
    font-size: 20px;
    font-weight: 600;
    fill: #111;
    text-anchor: middle;
    /* opacity: 0; */
    transform: translateY(5px);
    transition: 0.3s ease;
}

/* Hover effects */
.dealer-pin:hover .pin-dot {
    fill: #FFD700;
    transform: scale(1.3);
}

.dealer-pin:hover .pin-label {
    opacity: 1;
    transform: translateY(0);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}/* =========================
   MODERN LIGHT FOOTER
========================= */
.dealer-list h4 {
    font-weight: 700;
    color: #111;
}

.dealer-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.dealer-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.dealer-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

.dealer-card span {
    font-size: 14px;
    font-weight: 600;
    color: #cb2e2e;
}

.dealer-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.neo-footer {
    background: #f6f7f5;
    padding: 50px 0 25px;
    border-top: 1px solid #e5e7e5;
}

/* Brand text */
.footer-text {
    color: #666;
    font-size: 14px;
    max-width: 280px;
}

/* Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: 0.25s;
}

.footer-links a:hover {
    color: #632d2d;
}

/* Contact */
.footer-contact {
    font-size: 14px;
    color: #666;
}

.footer-phone {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

.footer-phone:hover {
    color: #632d2d;
}

/* Bottom line */
.footer-bottom {
    margin-top: 35px;
    padding-top: 18px;
    border-top: 1px solid #e0e2df;
    font-size: 13px;
    color: #777;
}
/* Social icons */
.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 992px) {
    .footer-social {
        justify-content: flex-end;
    }
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7e5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: 0.25s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #632d2d;
    color: #fff;
    transform: translateY(-2px);
}
.footer-social a:hover svg path{
    fill: #fff!important;
}


/* Mobile spacing */
@media (max-width: 768px) {
    .neo-footer {
        text-align: center;
    }

    .footer-text {
        margin: auto;
    }
}

 
@media (max-width: 991px) {

    .neo-nav {
        position: fixed;
        inset: 0;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: 0.03s ease;
        z-index: 1050;
    }

    .neo-nav.active {
        transform: translateY(0);
        display: flex!important;

    }

    .neo-nav .neo-link {
        font-size: 22px;
           color: #111 !important;
    }

    .neo-nav .neo-btn-sm {
        margin-top: 10px;
        background: #632d2d;
        color: #fff;
    }
    .neo-link{
        color: #000;
    }
 
    .neo-header.is-fixed {
        position: static !important;
         
 
}

}

/* =========================
   TOGGLE BUTTON
========================= */

.neo-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.neo-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: 0.3s ease;
}

/* Toggle Animation */
.neo-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.neo-toggle.active span:nth-child(2) {
    opacity: 0;
}

.neo-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

  .about-card:hover {
    transform: translateY(-5px);
    border-color:  #632d2d !important; 
  }
  .about-card {
  transition: all 0.3s ease;
}

  .icon-circle {
  width: 45px;
  height: 45px;
}
 

@media (max-width: 991px) {
    /* Menu open hone par body lock */
    body.overflow-hidden {
        overflow: hidden !important;
    }

    /* Mobile Nav Styles */
    #neoNav {
        display: none; /* Default hidden */
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff; 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 9998; /* Menu ka z-index */
    }

    #neoNav.active {
        display: flex !important; /* Bootstrap override */
    }

    /* Toggle Button (Hamburger to Cross) */
    #mobileToggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 9999; /* Isko menu se upar rakhna hai */
        position: relative;
    }

    #mobileToggle span {
        width: 100%;
        height: 3px;
        background-color: #fff!important; /* Line color - isko apne hisab se badlo */
        transition: all 0.3s ease;
        border-radius: 10px;
    }

    /* CLOSE ICON ANIMATION (Cross shape) */
    #mobileToggle.active span:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
        background-color: #333!important; /* Line color - isko apne hisab se badlo */

    }

    #mobileToggle.active span:nth-child(2) {
        opacity: 0;
        background-color: #333!important; /* Line color - isko apne hisab se badlo */

    }

    #mobileToggle.active span:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
        background-color: #333!important; /* Line color - isko apne hisab se badlo */

    }
}