body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Loader Background */
.loader-wrapper {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at center, #111 0%, #000 80%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Speedometer */
.speedometer {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 30px #00f2ff, inset 0 0 20px rgba(0,242,255,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Meter Lines */
.meter-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: repeating-conic-gradient(
    #00f2ff 0deg 3deg,
    transparent 3deg 15deg
  );
  mask: radial-gradient(circle, transparent 60%, black 61%);
}

/* Loading Text */
.speedometer p {
  position: absolute;
  bottom: 45px;
  color: #00f2ff;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: bold;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* Needle */
.needle {
  position: absolute;
  width: 110px;
  height: 4px;
  background: linear-gradient(90deg, yellow, red);
  top: 50%;
  left: 50%;
  transform-origin: left center;
  transform: rotate(-90deg);
  border-radius: 4px;
  box-shadow: 0 0 15px red;
  transition: transform 3s ease-in-out;
}

/* Center Circle */
.center-circle {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 0 15px white;
}

/* Hide Content Initially */
.content {
  display: none;
  text-align: center;
  padding: 100px;
}








.about-section {
  padding: 80px 0;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-content {
  flex: 1;
}

.about-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* POINTS 2 COLUMN */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin-top: 25px;
}

.point {
  font-size: 15px;
  color: #444;
}

/* RIGHT IMAGES STYLE */
.about-images {
  flex: 1;
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 8px;
}

.img-small {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 60%;
  border-radius: 8px;
}

.img-bottom {
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 40%;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .img-small,
  .img-bottom {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
}




/* Main wrapper for overall page spacing */
.main-wrapper {
    padding-left: 50px; /* Left side se gap jo aapne manga */
    padding-right: 20px;
    padding-top: 40px;
    background-color: #fff;
}

.parts-container {
    display: flex;
    gap: 50px; /* Image aur Text ke darmiyan gap */
    align-items: flex-start;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Image Layout - Same as Original Image */
.image-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-image img {
    width: 100%;
    border-radius: 4px;
    display: block;
}

.bottom-image-row {
    display: flex;
    gap: 10px;
    margin-top: -30px; /* Thora sa overlap effect ke liye agar zaroorat ho */
}

.bottom-image-row img {
    width: 60%;
    border-radius: 4px;
}

.bottom-image-row .small-img {
    width: 35%;
    object-fit: cover;
}

/* Content Layout */
.content-section {
    flex: 1.2;
}

.content-section h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.content-section p {
    color: #444;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Points List - Single Column */
.points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column; /* Points ko ek ke neechay aik karne ke liye */
    gap: 15px;
}

.points-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.points-list .icon {
    color: #f1c40f; /* Yellow color for tick marks */
    margin-right: 12px;
    font-size: 18px;
    border: 2px solid #f1c40f;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .main-wrapper { padding-left: 20px; }
    .parts-container { flex-direction: column; }
    .bottom-image-row { margin-top: 0; }
}







.banner-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff1a1a, #990000);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Shine Effect */
.banner-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    transition: 0.6s;
}

.banner-btn:hover::before {
    left: 100%;
}

.banner-btn:hover {
    background: linear-gradient(135deg, #000000, #333333);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transform: translateY(-4px) scale(1.05);
}





.about-simple {
    padding: 80px 10%;
    background: #f8f8f8;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.about-img img:hover {
    transform: scale(1.05);
}

.about-text-area {
    max-width: 550px;
}

.about-heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #b30000;
    position: relative;
}

.about-heading::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ff0000;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.about-text-area p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.about-list li {
    margin-bottom: 10px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}

.about-list li::before {
    content: "✔";
    color: #ff0000;
    position: absolute;
    left: 0;
}

.about-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff0000, #990000);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #000;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 900px){
    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}







/* SECTION */
.auto-products-section {
  padding: 100px 0;
  background: black;
  font-family: 'Poppins', sans-serif;
}

/* HEADING */
.auto-heading {
  text-align: center;
  margin-bottom: 70px;
}

.auto-heading h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.auto-heading p {
  color: #bbb;
  font-size: 16px;
}

/* GRID */
.auto-products-grid {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* CARD */
.auto-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #1a1a1a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: 0.4s ease;
}

.auto-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* OVERLAY */
.auto-card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
}

.auto-card-overlay h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

/* BUTTON */
.auto-btn {
  display: inline-block;
  padding: 8px 20px;
  background: #e10600;   /* automotive red */
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  transition: 0.3s;
}

.auto-btn:hover {
  background: #fff;
  color: #000;
}

/* HOVER EFFECT */
.auto-card:hover img {
  transform: scale(1.1);
}

.auto-card:hover {
  transform: translateY(-10px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .auto-heading h2 {
    font-size: 28px;
  }
}






.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  text-align: center;
  color: white;
  transition: 0.4s ease;
}

.overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay .btn {
  margin-top: 10px;
  display: inline-block;
}

.auto-heading {
  text-align: center;
  margin: 80px 0 50px;
  position: relative;
}

.auto-heading {
  text-align: center;
  padding: 80px 20px 50px;
  background: #000; /* agar section ka bg black nahi hai to */
}

.auto-heading h2 {
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ffffff, #e60000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

/* Animated Underline */
.auto-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e60000;
  border-radius: 5px;
  transition: 0.4s ease;
}

.auto-heading h2:hover::after {
  width: 150px;
}

/* Subtitle */
.auto-heading p {
  color: #bbb;
  font-size: 17px;
  margin-top: 25px;
  letter-spacing: 1px;
}








/* SECTION BACKGROUND */
.why-choose {
  background:white;
  padding: 80px 20px;
  color:black;
  position: relative;
}

/* WRAPPER */
.wrapper {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.why-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  position: relative;
}

.why-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff3c00;
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* ROW */
.why-row {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* CARD */
.why-card {
  background: white;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s ease;
  flex: 1;
  border: 1px solid transparent;
}

/* ICON */
.why-icon {
  font-size: 45px;
  color: #ff3c00;
  margin-bottom: 20px;
  transition: 0.4s ease;
}

/* CARD TITLE */
.why-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

/* CARD TEXT */
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: black;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
  border: 1px solid #ff3c00;
  box-shadow: 0 0 20px rgba(255, 60, 0, 0.4);
}

.why-card:hover .why-icon {
  transform: rotate(10deg) scale(1.1);
  text-shadow: 0 0 15px #ff3c00;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-row {
    flex-direction: column;
  }

  .why-card {
    margin-bottom: 20px;
  }

  .why-title {
    font-size: 28px;
  }
}



body { background-color: #f4f4f4; margin: 0; font-family: sans-serif; }

.stats-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 50px;
    background-color: #000; /* Black Background */
}

.stat-box {
    text-align: center;
    color: white;
    flex: 1;
}

.progress-circle {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

.progress-circle svg {
    width: 140px;
    height: 140px;
    transform: rotate(-90deg); /* Start progress from top */
}

.progress-circle circle {
    fill: none;
    stroke: #333; /* Dark Grey track */
    stroke-width: 8;
}

.progress-circle .progress-bar {
    stroke: #e31e24; /* Red color from your image */
    stroke-dasharray: 377; /* Circumference (2 * pi * 60) */
    stroke-dashoffset: 377; 
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease-out;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: bold;
}

.stat-box h3 {
    font-size: 18px;
    text-transform: capitalize;
}






/* Section */
.wc-section {
  background: #ffffff;
  padding: 90px 20px;
}

/* Container */
.wc-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.wc-heading {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #111;
  margin-bottom: 70px;
  position: relative;
}

.wc-heading::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #ff3c00;
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

/* Grid */
.wc-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}

/* Card */
.wc-box {
  background: #f8f8f8;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: 0.4s ease;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Icon */
.wc-icon {
  font-size: 45px;
  color: #ff3c00;
  margin-bottom: 20px;
  transition: 0.4s;
}

.wc-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111;
}

.wc-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* Hover */
.wc-box:hover {
  transform: translateY(-12px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.wc-box:hover .wc-icon {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .wc-grid {
    flex-direction: column;
  }

  .wc-heading {
    font-size: 30px;
  }
}



.vm-white-section {
  background: #ffffff;
  padding: 100px 20px;
}

.vm-white-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: center;
}

/* Card */
.vm-white-card {
  position: relative;
  background: #111;   /* Black Card */
  color: #ffffff;
  padding: 60px 40px 90px;
  border-radius: 25px 25px 0 0;
  text-align: center;
  flex: 1;
  overflow: hidden;
  transition: 0.4s ease;
}

/* Bottom Shape (Red) */
.vm-white-card::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 90px;
  background: #ff0000;   /* Red Accent */
  clip-path: polygon(0 0, 50% 70%, 100% 0, 100% 100%, 0 100%);
}

/* Icon */
.vm-white-icon {
  font-size: 45px;
  color: #ff0000;
  margin-bottom: 20px;
  transition: 0.3s;
}

.vm-white-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-weight: 800;
}

.vm-white-card p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  margin: auto;
  color: #dddddd;
}

/* Hover Effect */
.vm-white-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.vm-white-card:hover .vm-white-icon {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
  .vm-white-container {
    flex-direction: column;
  }
}


.features-white {
    background: #ffffff;
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-box {
    background: #f9f9f9;
    padding: 40px 25px;
    text-align: center;
    border-radius: 15px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-box i {
    font-size: 45px;
    color: #ff0000;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #111;
}

.feature-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

/* Tablet */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
    }
}



.brand-slider-section {
    background-color: #ffffff;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.slider-title {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Slider Track */
.logo-track {
    display: flex;
    /* Width: Logo width * Total number of logos */
    width: calc(200px * 12); 
    animation: scroll 25s linear infinite;
}

.logo-slide {
    width: 200px; /* Base width for desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.logo-slide img {
    width: 140px;
    height: auto;
    object-fit: contain;
    /* Real Colors - No Filters */
    transition: transform 0.3s ease;
}

/* Interaction */
.logo-track:hover {
    animation-play-state: paused;
}

.logo-slide img:hover {
    transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); }
}

/* Side Gradients for Professional Look */
.brand-slider-section::before,
.brand-slider-section::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}
.brand-slider-section::before {
    left: 0; top: 0;
    background: linear-gradient(to right, white, rgba(255,255,255,0));
}
.brand-slider-section::after {
    right: 0; top: 0;
    background: linear-gradient(to left, white, rgba(255,255,255,0));
}

/* --- RESPONSIVE SETTINGS --- */

/* For Tablets */
@media (max-width: 1024px) {
    .logo-track { width: calc(180px * 12); }
    .logo-slide { width: 180px; }
    @keyframes scroll {
        100% { transform: translateX(calc(-180px * 6)); }
    }
}

/* For Mobile Phones */
@media (max-width: 768px) {
    .brand-slider-section { padding: 40px 0; }
    .slider-title { font-size: 20px; }
    
    .logo-track { 
        width: calc(140px * 12); 
        animation: scroll 15s linear infinite; /* Mobile par thora tez loop */
    }
    .logo-slide { width: 140px; padding: 10px; }
    .logo-slide img { width: 100px; }
    
    @keyframes scroll {
        100% { transform: translateX(calc(-140px * 6)); }
    }
    
    .brand-slider-section::before,
    .brand-slider-section::after { width: 50px; } /* Mobile par gradient chota */
}



.about-company {
    padding: 80px 0;
    background-color: #fdfdfd;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    /* Image par halka sa shadow effect */
    box-shadow: 15px 15px 0px #f1c40f; /* Yellow accent shadow */
}

.about-content {
    flex: 1.2;
}

/* Experience Box - Styled for Trust */
.experience-box {
    background-color: #f1c40f; /* Bright Yellow */
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 2px;
    margin-bottom: 25px;
}

.experience-box span {
    font-size: 38px;
    font-weight: 900;
    color: #111;
    margin-right: 15px;
}

.experience-box p {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    color: #111;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 34px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.about-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content p strong {
    color: #e31e24; /* Highlight important text in Red */
}

/* Red Button Style */
.about-btn {
    display: inline-block;
    background-color: #e31e24; /* Professional Red */
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-btn:hover {
    background-color: transparent;
    color: #e31e24;
    border-color: #e31e24;
}

/* Responsive View */
@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .experience-box {
        justify-content: center;
    }
}




.auto-features-area {
  padding: 90px 0;
  background: whitesmoke;
  font-family: 'Poppins', sans-serif;
}

.auto-features-wrapper {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.auto-feature-card {
  background: #1a1a1a;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  position: relative;
  overflow: hidden;
}

.auto-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(225,6,0,0.4);
}

/* ICON STYLE */
.auto-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #e10600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: 0.4s;
}

.auto-feature-card:hover .auto-icon {
  background: #fff;
  color: #000;
}

.auto-feature-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.auto-feature-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .auto-feature-card {
    padding: 30px 20px;
  }
}







.new-footer {
  background: #0f0f0f;
  color: #fff;
  padding: 80px 0 30px;
  font-family: Arial, sans-serif;
}

.new-footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.new-footer-col h3 {
  margin-bottom: 20px;
  color: #e10600;
  font-size: 20px;
}

.new-footer-col p {
  color: #ccc;
  line-height: 1.6;
  font-size: 14px;
}

.new-footer-col ul {
  list-style: none;
  padding: 0;
}

.new-footer-col ul li {
  margin-bottom: 10px;
}

.new-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.new-footer-col ul li a:hover {
  color: #e10600;
  padding-left: 5px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-row i {
  color: #e10600;
  margin-top: 3px;
  min-width: 20px;
}

.contact-row a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.contact-row a:hover {
  color: #e10600;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .new-footer {
    text-align: center;
  }

  .contact-row {
    justify-content: center;
  }
}



.new-footer {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  padding: 100px 0 40px;
  font-family: 'Poppins', sans-serif;
}

/* Layout */
.new-footer-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 60px;
}

/* Headings Bigger */
.new-footer-col h3 {
  margin-bottom: 25px;
  color: #ff2a2a;
  font-size: 26px;   /* BARA KAR DIYA */
  font-weight: 700;
  letter-spacing: 1px;
}

/* Paragraph Bigger */
.new-footer-col p {
  color: #ddd;
  line-height: 1.8;
  font-size: 16px;   /* BARA */
}

/* Links */
.new-footer-col ul {
  list-style: none;
  padding: 0;
}

.new-footer-col ul li {
  margin-bottom: 14px;
}

.new-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;   /* BARA */
  transition: 0.3s ease;
}

.new-footer-col ul li a:hover {
  color: #ff2a2a;
  padding-left: 8px;
}

/* Contact Row */
.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;   /* BARA */
}

/* Attractive Circle Icons */
.contact-row i {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff0000, #ff4d4d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.4s ease;
}

/* WhatsApp Special */
.contact-row .fa-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Hover Effect */
.contact-row:hover i {
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(255,0,0,0.6);
}

.contact-row a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.contact-row a:hover {
  color: #ff2a2a;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;   /* BARA */
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .new-footer {
    text-align: center;
  }

  .contact-row {
    justify-content: center;
  }
}



/* ===== FOOTER STYLING ===== */

.new-footer {
  background: #111;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: Arial, sans-serif;
}

.new-footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Columns */
.new-footer-col {
  flex: 1;
  min-width: 250px;
}

.new-footer-col h3 {
  margin-bottom: 20px;
  font-size: 20px;
  position: relative;
}

.new-footer-col p {
  line-height: 1.7;
  font-size: 14px;
  color: #ccc;
}

/* Quick Links */
.new-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.new-footer-col ul li {
  margin-bottom: 10px;
}

.new-footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.new-footer-col ul li a:hover {
  color: #f44336;
  padding-left: 5px;
}

/* Contact */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  color: #ccc;
}

.contact-row i {
  color: #f44336;
  margin-top: 3px;
}

.contact-row a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.contact-row a:hover {
  color: #f44336;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #aaa;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .new-footer-container {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .new-footer-container {
    flex-direction: column;
    text-align: left;
  }

  .new-footer-col {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .new-footer {
    padding: 40px 15px 15px;
  }

  .new-footer-col h3 {
    font-size: 18px;
  }

  .new-footer-col p,
  .new-footer-col ul li a,
  .contact-row {
    font-size: 13px;
  }
}


