.content-section {
  padding: 80px 20px;
  background: #fff;
}

.container {
  max-width: 900px;
  margin: auto;
}

/* BLOCK */
.content-block {
  margin-bottom: 40px;
}

/* HEADING */
.content-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  position: relative;
}

/* OPTIONAL SMALL LINE */
.content-block h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #ff3b3b;
  margin-top: 8px;
}

/* PARAGRAPH */
.content-block p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}



/* SECTION */
.drv-why-sec {
  padding: 80px 20px;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

/* WRAPPER */
.drv-why-wrap {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.drv-why-left {
  position: relative;
  width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.drv-why-left img {
  width: 100%;
  display: block;
}

/* RED OVERLAY */
.drv-why-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(135deg, #ff2d2d, #c40000);
  clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TEXT */
.drv-why-award h3 {
  margin: 10px 0 0;
  font-size: 22px;
}

/* ICON */
.drv-why-icon {
  font-size: 26px;
}

/* ARROW */
.drv-why-arrow {
  width: 50px;
  height: 50px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.drv-why-arrow:hover {
  background: #000;
}

/* RIGHT */
.drv-why-right {
  width: 50%;
}

/* TAG */
.drv-why-tag {
  color: #ff2d2d;
  font-weight: 600;
  font-size: 14px;
}

/* TITLE */
.drv-why-title {
  font-size: 36px;
  margin: 10px 0;
  color: #111;
}

/* DESC */
.drv-why-desc {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* FEATURES */
.drv-why-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

/* FEATURE ICON */
.drv-why-ficon {
  width: 50px;
  height: 50px;
  background: #ff2d2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

/* TEXT */
.drv-why-feature h4 {
  margin: 0;
  font-size: 18px;
}

.drv-why-feature p {
  margin: 5px 0 0;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .drv-why-wrap {
    flex-direction: column;
  }

  .drv-why-left,
  .drv-why-right {
    width: 100%;
  }

  .drv-why-title {
    font-size: 28px;
  }
}



/* SECTION */
.contact-section {
  padding: 100px 0;
  background: #f9f9f9;
  color: #000;
}

/* CONTAINER */
.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT IMAGE */
.contact-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-left img {
  width: 100%;
  max-width: 450px;
  height: 500px;
  object-fit: cover;

  /* UNIQUE SHAPE */
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 100%,
    0% 100%,
    0% 100%
  );

}

/* RIGHT CONTENT */
.contact-right {
  flex: 1;
}

.contact-right h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 15px;
}

.contact-right p {
  opacity: 0.85;
  margin-bottom: 25px;
}

/* CONTACT INFO GRID */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ITEM */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
max-width: 280px;
  background: rgba(255,255,255,0.05);
  padding: 15px 18px;
  border: 1px solid rgba(255, 0, 0, 0.268);
  transition: 0.25s ease;
}

/* ICON */
.contact-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(0,0,0,0.4));
}

/* TEXT */
.contact-item h4 {
  margin-bottom: 4px;
  font-size: 14px;
  color: #333d29;
}

.contact-item p {
  font-size: 14px;
}

/* LINKS */
.contact-item a {
  color: #000;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* HOVER */
.contact-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-section{
        padding: 50px 0;
    }
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-left img {
    height: auto;
    clip-path: none;
    border-radius: 15px;
  }
  .contact-item{
    max-width: 100%;
  }
}



/* BOTTOM FOOTER */
.bottom-footer {
    border-top: 1px solid #333d29;
  background: #f9f9f9;
  color: #000;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 0, 0, 0.219);
}

/* TEXT */
.bottom-footer p {
  margin: 0;
  letter-spacing: 0.5px;
}


#topBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;
  background: #c40000;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  display: none;

  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.45);
  z-index: 999;

  transition: all 0.25s ease;
}

/* IMAGE */
#topBtn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* HOVER */
#topBtn:hover {
  transform: translateY(-5px) scale(1.05);
  background: #c40000da;
}