* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
:root {
    --maincolor: #E50019;
    --defcolor: #000;
    --mainfont: "Plus Jakarta Sans", sans-serif;
    --parafont: 'Overpass', sans-serif;
}
body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}
.model-dropdown-wrapper {
  position: relative;
  width: 100%;
}

.modelDropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111;
  border: 1px solid #333;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: none;
  z-index: 999;
}

.modelDropdown li {
  padding: 10px;
  cursor: pointer;
  color: #fff;
}

.modelDropdown li:hover {
  background: #e50914;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.city-tags span {
  background: #f0f0f0;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 12px;
  color: #333;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid #e2e2e2;
}

/* HEADER */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: transform 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
    z-index: 999;
}

/* Hide header when scrolling down */
.main-header.hide {
    transform: translateY(-100%);
}

/* Show header when scrolling up */
.main-header.show {
    transform: translateY(0);
}

/* Header background when not at top */
.main-header.scrolled {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}



/* LEFT LOGO + TEXT */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-left h2{
    font-size: 20px;
    color: #fff;
}

.main-header button{
    padding: 8px 18px;
    background: #ff2b2b;
    border: none;
    color: #fff;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s ease;
}
.brand-logo {
    width: 170px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    margin-top: 3px;
}

.brand-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.brand-sub {
    color: #ddd;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* RED MENU BUTTON */
.menu-toggle {
    width: 32px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #ff2b2b;
    border-radius: 5px;
}

/* HERO FULLSCREEN */
.hero {
    width: 100%;
    height: 100vh;
}

/* CAROUSEL */
/* make track smoothly animate when not dragging */
.carousel {
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 200vw; /* 2 slides -> 100vw each */
  transition: transform 0.45s cubic-bezier(.22,.9,.27,1);
  will-change: transform;
  touch-action: pan-y; /* allow vertical scroll, but we handle horizontal pan */
  cursor: grab;
}

/* when dragging (pointer down) show grabbing cursor */
.carousel-track.dragging {
  transition: none;
  cursor: grabbing;
}


.slide {
    width: 100vw;
    height: 100vh;
}

.slide video,
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LEFT & RIGHT BUTTONS */
.slider-btn {
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.55);
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    transition: 0.3s ease;
}

.left-btn { left: 25px; }
.right-btn { right: 25px; }

.slider-btn:hover {
    background: rgba(255,255,255,0.25);
}

/* WARRANTY BADGE (BOTTOM CENTER) */
.warranty-badge {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
}

.warranty-badge img {
    height: 130px;
    animation: floatBadge 3s infinite ease-in-out;
}

@keyframes floatBadge {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}
/* RIGHT SIDE SLIDE MENU */
.side-menu {
    position: fixed;
    top: 0;
    right: -350px; /* Hidden initially */
    height: 100%;
    width: 350px;
    background: #111;
    padding: 40px 30px;
    transition: .4s ease;
    z-index: 2000;
    color: #fff;
    overflow-y: auto;
}

/* MENU OPEN */
.side-menu.open {
    right: 0;
}

/* HEADER */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-header h3 {
    font-size: 20px;
    font-weight: 600;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
}

/* MENU ITEMS */
.menu-item {
    margin: 25px 0;
}

.menu-title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
    color: #cfcfcf;
}

.arrow {
    transition: 0.3s;
}

/* SUBMENU */
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
    padding-left: 15px;
}

.submenu li {
    list-style: none;
    margin: 8px 0;
}

.submenu li a {
    color: #b5b5b5;
    font-size: 15px;
    text-decoration: none;
}

.menu-link {
    display: block;
    color: #dcdcdc;
    margin: 18px 0;
    font-size: 16px;
    text-decoration: none;
}

.enquiry {
    margin-top: 25px;
}

/* ROTATION WHEN OPEN */
.menu-title.active .arrow {
    transform: rotate(180deg);
}

.menu-title.active + .submenu {
    max-height: 200px;
}
.container{
    width: 95%;
    margin: 0 auto;
}
.main-title-txt{
    width: 80%;
    margin: 30px auto;
}
.main-title-txt h1{
    color: #1C1C1C;
    Font-size: 36px;
    Text-align: Center;
    Font-weight: 500;
    margin-bottom: 30px;
}
.main-title-txt p{
    color: #565656;
    line-height: 30px;
    text-align: justify;
    font-family: var(--parafont) !important;
    font-size: 16px;
}   

/* coverrage */

.coverage-section {
    width: 100%;
    background: #0f0f0f;
    padding: 60px 80px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.coverage-box {
    width: 33.33%;
}

.coverage-box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.coverage-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 18px 0;
}

.coverage-item img {
    width: 65px;
    height: auto;
}

.coverage-item p {
    color: #dcdcdc;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .coverage-section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .coverage-box {
        width: 100%;
    }
}




/* banfits */
.benefits-section {
    padding: 80px 20px;
    text-align: center;
    max-width: 1300px;
    margin: auto;
}

.benefits-section h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-box {
    background: #fff;
    padding: 30px 25px;
    border: 0.5px solid transparent;
    box-shadow: 0px 4px 15px 1px #00000017;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.benefit-content {
    text-align: left;
}

.benefit-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
    .benefits-section h2 {
        font-size: 25px;
    }

    .benefit-box {
        flex-direction: row;
    }

    .benefit-content p {
        font-size: 16px;
    }

    .benefits-section {
        padding: 0px 20px;
    }

    .benefit-icon {
        flex-shrink: 0;
        width: 50px;
        height: 40px;
        object-fit: contain;
    }
    .slide {
    width: 100vw;
    height: auto;
}
.hero {
    width: 100%;
    height: auto;
}


    .main-header {
    background: #000000b2;
 
}
.mobile-none{
    display: none;
}
}

/* pp section */

.ppf-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.ppf-section h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1c1c1e;
    line-height: 1.2;
}

.ppf-section p {
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    color: #555555;
    text-align: justify;
    max-width: 960px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ppf-section {
        padding: 10px 20px;
    }

    .ppf-section h2 {
        font-size: 20px;
    }

    .ppf-section p {
        font-size: 16px;
        line-height: 32px;
    }
   .slide video,
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
}

/* fetures */

.ppf-features-section {
    padding: 80px 24px;
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.ppf-features-section h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1c1c1e;
    margin-bottom: 60px;
    line-height: 1.2;
}

.ppf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    /* Row gap: 40px | Column gap: 30px */
    justify-items: center;
    width: 800px;
    margin: auto;
}

.ppf-feature-box {
    width: 220px;
    height: 220px;
    border: 1px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    will-change: transform;
}

.ppf-feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
}

.ppf-feature-box img {
    width: 155px;
    height: auto;
    margin-bottom: 20px;
}

.ppf-feature-box p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

@media (max-width: 992px) {
    .ppf-features-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

@media (max-width: 600px) {


    .ppf-feature-box {
        width: 100%;
        max-width: 150px;
    }

    .ppf-feature-box p {
        font-size: 13px;
    }
     .ppf-features-section h2 {
    font-size: 25px;
    }
    .ppf-feature-box img {
    width: 123px;
    }
    .ppf-feature-box {
        padding: 10px;
        height: auto 
        
    }
}

/* wahy garawar */

.why-garware-section {
    padding: 80px 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.why-garware-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.why-text {
    flex: 1 1 600px;
}

.why-text h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1c1c1e;
    line-height: 1.3;
    margin-bottom: 30px;
}

.why-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.why-text ul li {
    font-size: 18px;
    line-height: 1.75;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 16px;
}

.why-image {
    flex: 1 1 480px;
    max-width: 520px;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

@media (max-width: 1024px) {
    .why-garware-content {
        flex-direction: column;
        gap: 40px;
    }

    .why-text h2 {
        font-size: 32px;
    }

    .why-text ul li {
        font-size: 16px;
    }
   
}

@media (max-width: 600px) {
 .why-text h2 {
        font-size: 24px;
    }
    .why-garware-section {
    padding: 0px 24px;
    }
    .why-text {
    flex: 1 1 ;
}
.why-image {
    flex: 1 1 auto;
    max-width: 520px;
    margin-bottom: 40px;
}

}
.desktop{
    display: block;
}
.mobile{
    display: none;
}

@media only screen and (max-width: 600px) {
    .desktop{
    display: none;
}
.mobile{
    display: block;
}

}





/* Product Section */
.product-slider-section {
    width: 100%;
    padding: 50px 0;
    text-align: center;
}

.product-slider-section .container {
    width: 95%;
    margin: auto;
}

/* SECTION TITLE */
.product-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 35px;
}

/* SLIDER WRAPPER */
.product-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* TRACK */
.product-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease-in-out;
    padding: 10px 0px;
}

/* IMPROVED CARD */
.product-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    text-align: left;
    border: 0.1px solid #ccc;
    transition: .3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* image styling */
.product-card img {
    width: 100%;
    border-radius: 12px;
}

/* Title */
.product-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
    font-weight: 700;
}

/* TAGS */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.tags span {
    padding: 6px 14px;
    border-radius: 20px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #333;
}

.slick-slider {
    display: flex !important;
}

.slick-slide {
    margin: 0 10px;
}

.slick-list {
    padding: 10px 0 !important;
}

.slick-arrow {
    z-index: 50;
}




/* contact */

/* Section */
.contact-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background: url('../assets/images/contact-image.jpg') center/cover no-repeat;
    color: #fff;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 56%);
    backdrop-filter: blur(2px);
}

.contact-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    z-index: 2;
}

.contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Form */
.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 35px;
}

/* Labels */
label {
    font-size: 14px;
    margin-bottom: 4px;
}

/* Inputs / Select / Textarea */
input,
select,
textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 10px 0;
    font-size: 15px;
    color: #fff;
    outline: none;
    width:100%;
}

textarea {
    height: 120px;
    resize: none;
}

/* Custom select arrow */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='white' viewBox='0 0 24 24' width='18' height='18'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0px center;
}
select option{
    color: #434040;
}
/* Submit button */
.form-submit {
    text-align: right;
    margin-top: 20px;
}

.form-submit button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.form-submit button span {
    font-size: 20px;
    margin-left: 8px;
}
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-title {
        font-size: 28px;
    }
}


/* contact end */

/* MAIN SECTION */
.locate-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.container {
    width: 95%;
    margin: auto;
}

/* HEADER */
.locate-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.locate-header h2 {
    font-size: 32px;
    font-weight: 600;
}

/* BUTTON GROUP */
.locate-buttons button {
    padding: 10px 22px;
    font-size: 16px;
    border: 2px solid #000;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}

.locate-buttons .active {
    background: #000;
    color: #fff;
}

/* FILTERS */
.locate-filters {
    display: flex;
    gap: 25px;
}

.locate-filters select {
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

/* GRID */
.locate-grid {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.locate-card {
    flex: 1;
    padding: 10px;
}

.icon {
    font-size: 24px;
}

.locate-card h3 {
        font-size: 16px;
    font-weight: 600;
   
        font-family: var(--mainfont);
            color: #1c1c1c;
}
.flex{
    display: flex;
    gap: 8px;
    align-items: center;
}
.locate-link {
        font-size: 14px;
    color: #1c1c1c;
    text-decoration: underline !important;
}

.locate-card hr {
    margin: 15px 0;
    border: none;
    height: 1px;
    background: #222;
}

.locate-card p {
    font-size: 15px;
    line-height: 22px;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .locate-grid {
        flex-direction: column;
        gap: 10px;
    }

    .locate-filters {
        width: 100%;
        margin-top: 15px;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .locate-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .locate-filters {
        width: 100%;
    }
}


/* footer */

.footer {
    background: #1b1b1b;
    padding: 30px 0;
    color: #ccc;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    width: 95%;
    margin: auto;
    text-align: center;
}

/* TOP LINKS */
.footer-top-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-top-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-top-links a:hover {
    color: #fff;
}

/* MAIN ROW */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* LEFT LOGO */
.footer-logo img {
    width: 200px;
}

/* CENTER LINKS */
.footer-center-links {
    display: flex;
    gap: 30px;
}

.footer-center-links a {
    color: #ccc;
    font-size: 15px;
    text-decoration: none;
}

.footer-center-links a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.footer-social a {
    color: #ccc;
    font-size: 20px;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

/* COPYRIGHT */
.footer-copy {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .footer-main {
        flex-direction: column;
        gap: 20px;
    }

    .footer-top-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-center-links {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .footer-social a {
        margin-left: 10px;
    }
}



/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
}

.floating-btn i {
    font-size: 18px;
    color: #fff;
}
.color-white{
    color: #333 !important;
}
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Modal Box */
.modal-box {
    background: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: 10px;
    padding: 30px;
    animation: fadeIn 0.25s ease;
    
}

/* Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.close-modal {
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    color: #333;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
}

/* Inputs + Selects */
.form-grid input,
.form-grid select {
    width: 100%;
    padding: 14px 15px;
    border-radius: 8px;
    border: 1px solid #D5D5D5;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: black;
}

/* Labels */
.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
    color: #ebebeb;
}

/* Full-width row */
.form-group.full {
    grid-column: 1 / 3;
}

/* SEND BUTTON */
.send-btn {
    margin-top: 30px;
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    letter-spacing: 0.5px;
    text-align: right;
}
.form-grid input{
    color: black !important;
}
/* Mobile Responsive */
@media(max-width: 600px) {
    .modal-box {
        width: 92%;
        padding: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: 1 / 2;
    }

    .send-btn {
        text-align: center;
    }
    .modal-body {
    height: 450px;
    overflow-y: scroll;
}
}

/* Fade Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
