@font-face {
  font-family: 'ArialRounded';
  src: url('../fonts/arialroundedmtbold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BorisBlackBloxx';
  src: url('../fonts/BorisBlackBloxx.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'ArialRounded', sans-serif;
  /* background-color: #f5f5f5; */
  padding: 0px;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: linear-gradient(90deg, #333333,#F48420);
  color: white;
  border-radius: 0px 0px 20px 20px;
  padding: 40px;
  max-width: 1330px;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
}

.about-left {
  flex: 1;
  min-width: 300px;
}

.about-left h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.procom-title {
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 5px 0;
}

.subtitle2 {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  margin: 10px 0 20px;
  text-align: start;
  color: white;
  ;
}

.about-left p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-btn {
  background: linear-gradient(90deg, #F48420, #FF5800);
  border: none;
  padding: 12px 20px;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.contact-btn:hover {
  background-color: #F48420;
}

.about-right {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.about-right img {
  max-width: 80%;
  height: 150%;
  position: absolute;
  top: 0;
  right: 20px;
  top: 88px;
}

.dealer-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px 20px;
}

.dealer-left {
  flex: 1;
  min-width: 300px;
  padding-right: 20px;
}

.dealer-left h2 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.black-text {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-weight: bold;
  color: #000;
}

.orange-text {
  font-family: 'BorisBlackBloxx', sans-serif;
  font-weight: bold;
  background: linear-gradient(90deg, #F48420, #FF5800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dealer-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.cta-btn {
  background: linear-gradient(90deg, #F48420, #FF5800);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

.cta-btn:hover {
  background-color: #F48420;
}

.dealer-right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.dealer-right img {
  max-width: 100%;
  height: auto;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .dealer-section {
    flex-direction: column;
    text-align: center;
  }

  .dealer-left {
    padding-right: 0;
  }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .about-section {
    height: 1200px !important;
  }

  .about-right img {
    max-width: 80%;
    height: 45%;
    position: absolute;
    /* top: 0; */
    right: 62px;
    top: 922px;
    bottom: 0 !important;
  }
}