* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Open Sans", serif;
  overflow-x: hidden;
}

.p {
  font-family: "Open Sans", serif;
  font-size: 22px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/*  Section 1 */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  background: #202020;
  overflow: hidden;
}

.hero-container {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden;
  padding: 120px 70px 64px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.12) 100%),
    url('http://krishnamotors.local/wp-content/uploads/2026/05/image-14.png');
  background-size: cover;
  background-position: center;
}

.hero-content {
  flex: 0 0 48%;
  color: white;
  z-index: 5;
  margin-top: 150px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.24;
  margin-bottom: 12px;
  letter-spacing: 5%;
}

.hero-content h1 span {
  color: #00a9e1;
}

.hero-content p {
  font-size: 24px;
  line-height: 1.45;
  max-width: 600px;
  margin-bottom: 28px;
  color: #e0e0e0;
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  background-color: #008cc9;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #006da0;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-visual {
  flex: 0 0 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 330px;
  z-index: 2;
}

.hero-truck {
  width: min(650px, 112%);
  height: auto;
  z-index: 3;
  position: relative;
  transform: translateX(-10px);
}

.shape {
  position: absolute;
  width: 150px;
  height: 360px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.shape-1 {
  left: 12%;
  transform: rotate(-4deg);
  top: -8px;
}

.shape-2 {
  right: 6%;
  transform: rotate(4deg);
  top: -42px;
}

.floating-contact {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  background: currentColor;
}

.contact-icon i {
  color: #ffffff;
  font-size: 18px;
}

.contact-icon.call {
  color: #004a80;
}

.contact-icon.whatsapp {
  color: #25d366;
}

@media screen and (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 80px 30px 42px;
    min-height: auto;
  }

  .hero-content {
    flex-basis: auto;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    margin: 20px auto 30px auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 34px;
    width: 100%;
    min-height: 280px;
  }

  .shape {
    height: 300px;
    width: 120px;
  }

  .hero-truck {
    width: min(560px, 92%);
    transform: none;
  }

  .floating-contact {
    right: 14px;
  }
}

@media screen and (max-width: 600px) {
  .hero-section {
    padding: 12px;
    min-height: auto;
  }

  .hero-container {
    padding: 74px 18px 32px;
  }

  .hero-content h1 {
    font-size: 31px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-btns {
    flex-wrap: wrap;
    gap: 10px;
  }

  .btn-primary,
  .btn-outline {
    padding: 12px 16px;
  }

  .hero-visual {
    min-height: 210px;
  }

  .shape {
    height: 230px;
    width: 92px;
  }

  .floating-contact {
    right: 10px;
    padding: 6px;
  }

  .contact-icon {
    width: 30px;
    height: 30px;
  }
}



/* section 2 */
.about-us-section {
  background-color: #004261;
  padding: 80px 5%;
  color: white;
}

.about-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-text-content {
  flex: 1.2;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.square-bullet {
  width: 8px;
  height: 8px;
  background-color: white;
  display: inline-block;
}

.about-title {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: white;
}

.about-description {
  font-size: 22px;
  line-height: 1.6;
  color: #d1d1d1;
  margin-bottom: 40px;
  max-width: 600px;
}

.stats-container {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.stat-item h3 {
  font-size: 60px;
  font-weight: 600;
  margin: 0;
  line-height: 1;
}

.stat-item p {
  font-size: 14px;
  line-height: 1.4;
  color: #b0b0b0;
  margin-top: 10px;
  text-transform: capitalize;
}

.about-image-wrap {
  flex: 1;
}

.about-image-wrap img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
}

@media screen and (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-label {
    justify-content: center;
  }

  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .stats-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item h3 {
    font-size: 45px;
  }

  .about-description {
    margin: 0 auto 40px auto;
  }
}

@media screen and (max-width: 480px) {
  .about-title {
    font-size: 26px;
  }

  .stat-item {
    width: 45%;
  }

  .stat-item h3 {
    font-size: 32px;
  }
}


/* section 3 */
.vehicles-section {
  padding: 80px 5%;
  background-color: #ffffff;
  background-image: radial-gradient(#d1d1d1 1.5px, transparent 1.5px);
  background-size: 30px 30px;
}

.section-header {
  margin-bottom: 50px;
  max-width: 800px;
}

.section-header .label {
  color: #008cc9;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blue-square {
  width: 8px;
  height: 8px;
  background-color: #008cc9;
  display: block;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid #008cc9;
  display: inline-block;
  padding-bottom: 10px;
}

.section-header p {
  color: #666;
  line-height: 1.6;
}

.vehicle-card {
  height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: white;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 20%, rgba(0, 31, 44, 0.4) 40%, rgba(0, 31, 44, 0.95) 90%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 0;
}

.card-top-info {
  padding: 40px 25px;
}

.card-top-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #004261;
}

.card-top-info p {
  font-size: 13px;
  margin-bottom: 15px;
  line-height: 1.4;
  max-width: 90%;
  color: #004261;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.specs-bar {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.spec-item:last-child {
  border-right: none;
}

.spec-item img.spec-icon {
  width: 40px;
  height: auto;
}

.spec-item div {
  line-height: 1.2;
}

.spec-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.spec-item small {
  display: block;
  font-size: 11px;
  text-transform: capitalize;
  opacity: 0.8;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.custom-arrow {
  position: static !important;
  color: #004261 !important;
  font-size: 16px !important;
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.custom-arrow::after {
  display: none;
}


.swiper-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 13px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d9d9d9;
  opacity: 1;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: #004261;
  transform: none;
}

@media screen and (max-width: 768px) {
  .section-header h2 {
    font-size: 24px;
  }

  .vehicle-card {
    height: 450px;
  }

  .specs-bar {
    flex-direction: column;
    gap: 15px;
  }
}


/* section 4 */

.testimonials-section {
  padding: 80px 5%;
  background-color: #ffffff;
}

.center-text {
  text-align: center;
  margin: 0 auto 80px auto;
}

.center-text h2 {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid #008cc9;
}

.center-text .label {
  justify-content: center;
}

.testimonial-slider {
  padding: 60px 10px !important;
}

.testimonial-card {
  background: #E6E6E6;
  border-radius: 15px;
  padding: 60px 30px 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-top: 50px;
  transition: 0.3s;
  height: 100%;
}

.user-img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 5px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.user-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card.dark,
.testimonial-slider .swiper-slide-active .testimonial-card {
  background-color: #003b53;
  color: white;
}

.testimonial-card.dark .stars,
.testimonial-slider .swiper-slide-active .stars {
  color: #ffc107;
}

.testimonial-card.dark .sub-text,
.testimonial-slider .swiper-slide-active .sub-text {
  color: #b0b0b0;
}

.testimonial-card.dark p,
.testimonial-slider .swiper-slide-active .testimonial-card p {
  color: #e0e0e0;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.sub-text {
  font-size: 13px;
  color: #777;
  display: block;
  margin-bottom: 20px;
}

.quote-icon {
  font-size: 35px;
  color: #003b53;
  margin-bottom: 15px;
}

.testimonial-card.dark .quote-icon,
.testimonial-slider .swiper-slide-active .quote-icon {
  color: white;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: #555;
}

.testimonial-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #008cc9;
  border-radius: 50%;
  background: #008cc9;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}

.testimonial-arrow:hover {
  background: #003b53;
  border-color: #003b53;
}

@media screen and (max-width: 768px) {
  .testimonial-slider {
    padding: 60px 0 !important;
  }
}

/* section 5 */
.service-network {
  padding: 50px 5%;
  margin: 0 auto;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;

}

.header-text {
  max-width: 650px;

}

.subtitle {
  color: #008cc9;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;

}

.blue-box {
  width: 8px;
  height: 8px;
  background-color: #008cc9;
  display: inline-block;
}

.title {
  font-size: 32px;
  font-weight: 800;
  margin: 15px 0;
  line-height: 1.2;
  padding-bottom: 10px;
  border-bottom: 2px solid #008cc9;
}

.title span {
  position: relative;
  display: inline-block;
}

/* .title::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120px; 
    height: 3px;
    background-color: #008cc9;
} */

.description {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
  margin-top: 25px;
}

.book-btn {
  background-color: #008cc9;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
}

.book-btn:hover {
  background-color: #0076aa;
}

.service-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-item {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.grid-item:nth-child(odd) {
  border-right: 1px solid #00426140;
}

.grid-item:nth-child(-n+2) {
  border-bottom: 1px solid #00426140;
}

.icon-circle {
  width: 55px;
  height: 55px;
  background-color: #eef7fb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #003b53;
  font-size: 22px;
}

.grid-item h3 {
  font-size: 30px;
  font-weight: 700;
  color: #003b53;
  margin: 0;
}

.grid-item p {
  color: #003b53;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}

@media screen and (max-width: 992px) {
  .service-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .service-content {
    flex-direction: column;
  }

  .service-grid {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .hero-content {
    margin-top: 90px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .about-description {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .hero-section {
    height: auto;
    min-height: 100vh;
    padding: 0;
  }

  .hero-container {
    min-height: 100vh;
    padding: 115px 22px 48px;
    align-items: flex-start;
    justify-content: flex-start;
    background-position: center right;
  }

  .hero-content {
    margin-top: 70px;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 100%;
  }

  /* .hero-btns {
    justify-content: flex-start;
  } */

  .about-us-section,
  .vehicles-section,
  .testimonials-section,
  .service-network {
    padding: 60px 20px;
  }

  .about-container,
  .service-content {
    gap: 35px;
  }

  .about-title,
  .section-header h2,
  .title {
    font-size: 28px;
    line-height: 1.25;
  }

  .about-description,
  .section-header p,
  .description {
    font-size: 15px;
  }

  .stats-container {
    gap: 18px;
  }

  .stat-item h3 {
    font-size: 38px;
  }

  .about-image-wrap img {
    border-radius: 28px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .vehicle-card {
    height: 500px;
    border-radius: 16px;
  }

  .card-top-info {
    padding: 28px 20px;
  }

  .card-top-info h3 {
    font-size: 24px;
  }

  .specs-bar {
    padding: 18px;
  }

  .spec-item {
    justify-content: flex-start;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 12px;
  }

  .spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .center-text {
    margin-bottom: 45px;
  }

  .testimonial-slider {
    padding: 55px 0 25px !important;
  }

  .testimonial-card {
    padding: 58px 22px 32px;
  }

  .service-header {
    margin-bottom: 35px;
  }

  .book-btn {
    width: 100%;
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-item {
    padding: 24px 0;
    border-right: none !important;
    border-bottom: 1px solid #00426140;
  }

  .grid-item:last-child {
    border-bottom: none;
  }
}

@media screen and (max-width: 480px) {
  .hero-container {
    padding: 105px 16px 38px;
  }

  .hero-content {
    margin-top: 55px;
  }

  .hero-content h1 {
    font-size: 29px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-us-section,
  .vehicles-section,
  .testimonials-section,
  .service-network {
    padding: 45px 16px;
  }

  .about-title,
  .section-header h2,
  .title {
    font-size: 24px;
  }

  .stats-container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .stat-item {
    width: 100%;
  }

  .vehicle-card {
    height: 470px;
  }

  .price {
    font-size: 21px;
  }

  .slider-controls {
    margin-top: 28px;
  }

  .user-img {
    width: 92px;
    height: 92px;
    top: -42px;
  }

  .testimonial-card h3 {
    font-size: 18px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .service-image img {
    border-radius: 12px;
  }

  .grid-item h3 {
    font-size: 26px;
  }
}



/* section 6 */
.delivery-stories-section {
  background-color: #004261;
  padding: 80px 5%;
  color: white;
}

.stories-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.stories-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.white-square {
  width: 8px;
  height: 8px;
  background-color: white;
  display: inline-block;
}

.stories-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
}

.stories-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  background-color: #0088C7;
}

.stories-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #d1d1d1;
  margin-top: 20px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.story-card {
  background-color: transparent;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.card-img {
  height: 250px;
  width: 100%;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-banner {
  background-color: #008cc9;
  padding: 20px 25px;
}

.card-banner small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  opacity: 0.9;
}

.card-banner h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-title {
    font-size: 30px;
  }
}

@media screen and (max-width: 600px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .stories-section {
    padding: 60px 5%;
  }

  .stories-title {
    font-size: 26px;
  }
}

/* section 7 */
.achievements-section {
  padding: 80px 5%;
  background-color: #ffffff;
}

.achievements-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

/* Left Timeline Logic */
.achievement-timeline {
  flex: 1;
  position: relative;
}

.achievement-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background-color: #ddd;
  z-index: 1;
}

.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.icon-wrap {
  min-width: 70px;
  height: 70px;
  background-color: #f4f9fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003b53;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.timeline-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.timeline-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  max-width: 400px;
}

.achievement-visual {
  flex: 1.3;
}

.stats-bar-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 30px;
  background: #fff;
}

.stat-unit {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon {
  width: 45px;
  height: 45px;
  background: #eef7fb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003b53;
  font-size: 18px;
}

.stat-data strong {
  font-size: 28px;
  color: #003b53;
  display: inline-block;
  margin-right: 10px;
}

.stat-data span {
  font-size: 14px;
  color: #003b53;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: #ddd;
}

.visual-img img {
  width: 100%;
  border-radius: 15px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive View */
@media screen and (max-width: 1024px) {
  .achievements-container {
    flex-direction: column;
  }

  .stats-bar-box {
    flex-direction: row;
    gap: 20px;
  }

  .stat-divider {
 display: none;
  }
}


/* section 8 */
.insights-slider-section {
  background-color: #003b53;
  padding: 80px 5%;
  color: white;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.insights-header {
  text-align: center;
  margin-bottom: 60px;
}

.insights-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.white-sq {
  width: 8px;
  height: 8px;
  background: white;
}

.insights-title {
  font-size: 32px;
  font-weight: 700;
  border-bottom: 3px solid #008cc9;
  display: inline-block;
  padding-bottom: 10px;
}

.insight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-thumb {
  position: relative;
  height: 220px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: white;
  color: #003b53;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
}

.card-details time {
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-bottom: 10px;
}

.card-details h3 {
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.card-details p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.5;
  margin-bottom: 25px;
}

.read-more-btn {
  background: #008cc9;
  color: white;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #0076aa;
}

.insights-slider {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 50px !important;
}

.insights-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 10px;
}

.insights-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: #008cc9;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}

.insights-arrow:hover {
  background: #ffffff;
  color: #003b53;
}

/* section 9 */

.test-drive-section {
  position: relative;
  padding: 80px 5%;
  background: linear-gradient(rgb(0 0 0 / 70%), rgb(18 52 66 / 70%)), url(http://krishnamotors.local/wp-content/uploads/2025/01/one-img.png) no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  width: calc(100% - 80px);
  max-width: calc(100% - 80px);
  margin: 40px;
  overflow: hidden;
}

.test-drive-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.td-content {
  flex: 1;
  color: white;
}

.td-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.td-desc {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
  opacity: 0.9;
}

.td-buttons {
  display: flex;
  gap: 20px;
}

.btn-td-white {
  background-color: white;
  color: #008cc9;
  padding: 15px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

.btn-td-white:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
}

.td-form-box {
  flex: 0.8;
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* .form-group {
  margin-bottom: 20px;
} */

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cce4f0;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  background-color: #ffffff;
  color: #111827;
}

.form-group select {
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #008cc9;
}

.terms-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
}

.terms-wrap input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.terms-wrap label {
  font-size: 14px;
  color: #333;
}

.terms-wrap a {
  color: #008cc9;
  text-decoration: none;
  font-weight: 600;
}

.td-submit-btn {
  width: 100%;
  background-color: #008cc9;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.td-submit-btn:hover {
  background-color: #006da0;
}

@media screen and (max-width: 992px) {
  .test-drive-container {
    flex-direction: column;
    text-align: center;
  }
  .form-group label{
    text-align: left;
  }

  .td-desc {
    margin: 20px auto 40px auto;
  }

  .td-buttons {
    justify-content: center;
  }

  .td-form-box {
    width: 100%;
    padding: 30px 20px;
  }
}


@media screen and (max-width: 480px) {
  .test-drive-section {
    padding: 60px 16px;
    margin: 20px;
    max-width: calc(100% - 40px);
    width : 100%;
  }

  .td-title {
    font-size: 32px;
  }

  .td-desc {
    font-size: 16px;
    max-width: 100%;
  }

  .td-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-td-white {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}

/* Footer */
.main-footer {
  background-color: #003b53;
  color: #ffffff;
  padding: 80px 5% 0 5%;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 60px;
}

/* .footer-col {
  flex: 1;
} */

.footer-logo img {
  height: 45px;
  margin-bottom: 25px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d1d1;
  max-width: 350px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.links-grid {
  display: flex;
  gap: 60px;
}

.links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links-grid ul li {
  margin-bottom: 15px;
}

.links-grid ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.links-grid ul li a:hover {
  color: #008cc9;
  padding-left: 5px;
}

.subscribe-text {
  font-size: 14px;
  color: #d1d1d1;
  line-height: 1.6;
  margin-bottom: 25px;
}

.subscribe-btn {
  display: block;
  background-color: #008cc9;
  color: white;
  text-align: center;
  padding: 15px 0;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  width: 100%;
  max-width: 280px;
}

.subscribe-btn:hover {
  background-color: #0076aa;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #b0b0b0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-desc {
    max-width: 100%;
  }

}

@media screen and (max-width: 480px) {
  .links-grid {
    gap: 20px;
    flex-direction: row;
  }

  .subscribe-btn {
    max-width: 100%;
  }

  
}

@media screen and (max-width: 768px) {
  .main-footer {
    padding: 55px 22px 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 34px;
  }

  .footer-col {
    width: 100%;
  }

  .footer-logo img {
    height: 38px;
    margin-bottom: 18px;
  }

  .footer-desc,
  .subscribe-text {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .links-grid {
    gap: 35px;
    justify-content: flex-start;
  }

  .links-grid ul li {
    margin-bottom: 12px;
  }

  .links-grid ul li a {
    font-size: 14px;
  }

  .subscribe-btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-bottom {
    margin-top: 25px;
    padding: 22px 0;
  }
}

@media screen and (max-width: 480px) {
  .main-footer {
    padding: 42px 16px 0;
    text-align: left;
  }

  .footer-container {
    gap: 28px;
  }

  .footer-logo img {
    height: 34px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .subscribe-btn {
    max-width: 100%;
    padding: 14px 0;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 360px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer responsive update */
@media screen and (max-width: 768px) {
  .main-footer {
    padding: 48px 20px 0;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
    padding-bottom: 42px;
  }

  .footer-col {
    width: 100%;
    flex: none;
  }

  .about-col {
    grid-column: 1 / -1;
  }

  .footer-desc {
    max-width: 100%;
  }

  .links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .subscribe-btn {
    max-width: 100%;
  }

  .footer-bottom {
    padding: 22px 0;
  }
}

@media screen and (max-width: 560px) {
  .main-footer {
    padding: 40px 16px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 34px;
  }

  .about-col {
    grid-column: auto;
  }

  .footer-logo img {
    height: 34px;
    margin-bottom: 16px;
  }

  .footer-title {
    margin-bottom: 14px;
  }

  .footer-desc,
  .subscribe-text {
    font-size: 14px;
  }

  .links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
  }

  .links-grid ul li {
    margin-bottom: 10px;
  }

  .subscribe-btn {
    padding: 14px 0;
    border-radius: 10px;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 380px) {
  .links-grid {
    grid-template-columns: 1fr;
  }
}
