/* ==========================
   HERO BANNER
========================== */

.hero-banner {
  padding: 30px 0;
  background: #f5f5f5;
}

.hero-banner-image {
  overflow: hidden;
  border-radius: 35px;
}

.hero-banner-image img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  display: block;
  border-radius: 35px;
  /* margin-top: 0; remove */
}
/* ==========================
   LAPTOP
========================== */

@media (max-width: 1200px) {
  .hero-banner {
    padding: 18px;
  }

  .hero-banner-image img {
    margin-top: 96px;
    height: 480px;
  }
}

/* ==========================
   TABLET LANDSCAPE
========================== */

@media (max-width: 991px) {
  .hero-banner {
    padding: 15px;
  }

  .hero-banner-image {
    border-radius: 25px;
  }

  .hero-banner-image img {
    height: 420px;
    border-radius: 25px;
  }
}

/* ==========================
   TABLET PORTRAIT
========================== */

@media (max-width: 768px) {
  .hero-banner {
    padding: 12px;
  }

  .hero-banner-image {
    border-radius: 20px;
  }

  .hero-banner-image img {
    height: 320px;
    border-radius: 20px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 576px) {
  .hero-banner {
    padding: 10px;
  }

  .hero-banner-image {
    border-radius: 18px;
  }

  .hero-banner-image img {
    height: 250px;
    border-radius: 18px;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .hero-banner {
    padding: 8px;
  }

  .hero-banner-image {
    border-radius: 15px;
  }

  .hero-banner-image img {
    height: 220px;
    border-radius: 15px;
  }
}

/* ==========================
   EXTRA SMALL MOBILE
========================== */

@media (max-width: 360px) {
  .hero-banner-image img {
    height: 180px;
  }
}

/* ==================================================
about section
==================================================== */

.about-section {
  padding: 25px 71px;
  background: #f8f8f8;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-content {
  flex: 1;
  max-width: 500px;
}

.story-tag {
  display: block;
  font-size: 37px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.green-line {
  width: 50px;
  height: 112px;
  background: linear-gradient(to bottom, #5fb52d, #ffffff);
}

.about-heading h2 {
  font-size: 38px;
  line-height: 1.3;
  /* font-weight: 700; */
  margin: 0;
  color: #111;
}

.small-title {
  display: block;
  color: #5fb52d;
  letter-spacing: 5px;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-content h3 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.about-images {
  flex: 1;
  position: relative;
}

.img-top {
  width: 90%;
  height: 246px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 20px;
}

.img-middle {
  width: 90%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
}
.img-middle1 {
  margin-bottom: 20px;
  width: 90%;
  height: 250px;
  object-fit: cover;
  border-radius: 18px;
}

.bottom-wrapper {
  position: relative;
}

.img-bottom {
  border: 7px solid #f8f8f8;
  position: absolute;
  left: -21px;
  bottom: -48px;
  /* top: -4px; */
  width: 36%;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.customer-box {
  position: absolute;
  left: 266px;
  bottom: -42px;
  /* top: 253px; */
  background: #43a047;
  color: #fff;
  padding: 5px 8px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.customer-box h4 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

.customer-box span {
  font-size: 13px;
  line-height: 1.2;
  display: block;
}

.mobile-img-top {
  display: none;
}

@media (max-width: 991px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 5px;
  }

  .about-content,
  .about-images {
    width: 100%;
    max-width: 100%;
  }

  .about-heading h2 {
    font-size: 34px;
  }

  .about-content h3 {
    font-size: 42px;
  }

  .img-top {
    height: 180px;
  }

  .img-middle {
    height: 220px;
  }

  .bottom-wrapper {
    position: relative;
    min-height: 180px;
  }

  .img-bottom {
    position: absolute;
    width: 45%;
    height: 150px;
    left: 0;
    bottom: -20px;
  }

  .customer-box {
    position: absolute;
    right: 0;
    left: auto;
    bottom: -20px;
    width: 180px;
  }
}
@media (max-width: 768px) {
  .img-middle1 {
    display: none;
  }

  .mobile-img-top {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    margin: 20px 0;
  }

  .about-images .img-top {
    display: none;
  }

  .about-section {
    padding: 30px 15px;
  }

  .about-wrapper {
    display: flex;
    flex-direction: column;
  }

  /* .about-content{
    order:1;
} */

  .story-tag {
    font-size: 20px;
  }

  .green-line {
    width: 25px;
    height: 70px;
  }

  .about-heading {
    gap: 12px;
  }

  .about-heading h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .small-title {
    letter-spacing: 4px;
  }

  .about-content h3 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .img-top {
    order: 2;
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
  }

  .img-middle {
    order: 4;
    width: 100%;
    height: 180px;
  }

  .bottom-area {
    margin-bottom: -122px;
    order: 5;
  }

  .about-images {
    display: flex;
    flex-direction: column;
  }
  .bottom-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
  }

  .img-bottom {
    position: relative;
    width: 58%;
    height: 180px;
    left: -1px;
    bottom: 53px;
    border: 7px solid #f8f8f8;
  }

  .customer-box {
    position: relative;
    width: 180px;
    margin: auto;
    left: 79px;
    bottom: 134px;
  }

  .customer-box h4 {
    font-size: 24px;
  }

  .customer-box span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-heading {
    flex-direction: row;
    align-items: flex-start;
  }

  .about-heading h2 {
    font-size: 20px;
  }

  .about-content h3 {
    font-size: 26px;
  }

  .img-top {
    height: 100px;
  }

  .img-middle {
    height: 150px;
  }

  .img-bottom {
    height: 110px;
  }

  .customer-box {
    width: 98px;
    padding: 12px;
  }

  .customer-box h4 {
    font-size: 20px;
  }

  .customer-box span {
    font-size: 12px;
  }
}

/* ====================================================
vision section
======================================================= */
.mission-vision-section {
  padding: 48px 0;
  /* background: #f8f8f8; */
}

.mission-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.mission-image {
  flex: 1;
}

.mission-image img {
  width: 95%;
  height: 643px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.mission-content {
  flex: 1;
}

.mission-box {
  margin-bottom: 50px;
}

.mission-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mission-icon {
  font-size: 55px;
  color: #43a047;
}

.mission-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.2;
}

.mission-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}
/* ===========================================
tablet
============================================== */

@media (max-width: 991px) {
  .mission-wrapper {
    gap: 40px;
  }

  .mission-image img {
    height: 400px;
  }

  .mission-header h2 {
    font-size: 32px;
  }

  .mission-icon {
    font-size: 45px;
  }
}
/* ========================================
mobile 
========================================== */
@media (max-width: 768px) {
  .mission-vision-section {
    padding: 50px 15px;
  }

  .mission-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .mission-image,
  .mission-content {
    width: 100%;
  }

  .mission-image img {
    height: 280px;
  }

  .mission-header {
    flex-direction: row;
    gap: 15px;
  }

  .mission-header h2 {
    font-size: 28px;
  }

  .mission-icon {
    font-size: 38px;
  }

  .mission-box {
    margin-bottom: 35px;
  }

  .mission-box p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ==============================
small device4
==================================== */

@media (max-width: 480px) {
  .mission-image img {
    height: 220px;
    border-radius: 15px;
  }

  .mission-header h2 {
    font-size: 24px;
  }

  .mission-icon {
    font-size: 32px;
  }

  .mission-box p {
    font-size: 14px;
  }
}

/* ============================================
 our journey section
 =============================================== */

.journey-section {
  position: relative;
  padding: 100px 0;
  background: url("../images/car-banner1.jpg") center center/cover no-repeat;
  overflow: hidden;
}

/* Dark Overlay */
.journey-section::before {
  content: "";
  position: absolute;
  inset: 1;
  /* background: rgba(0, 0, 0, 0.65); */
  z-index: 1;
}

/* Blur Effect */
.journey-section::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  z-index: 1;
}

/* Content Above Overlay */
.journey-section .container {
  position: relative;
  z-index: 2;
}

.journey-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.journey-section .container {
  position: relative;
  z-index: 2;
}

.journey-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.journey-content {
  flex: 1;
  color: #fff;
}

.journey-tag {
  display: block;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.journey-content h2 {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
}

.journey-content h2 span {
  color: #4caf50;
}

.journey-content p {
  font-size: 14px;
  /* line-height:1.9; */
  color: #f1f1f1;
}

.journey-image {
  flex: 1;
  position: relative;
}

.journey-image img {
  width: 80%;
  height: 272px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.recycle-badge {
  position: absolute;
  left: 22px;
  bottom: -4px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.recycle-badge i {
  font-size: 42px;
  color: #4caf50;
}

.badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
}

.badge-text text {
  fill: #222;
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.badge-center {
  width: 60px;
  height: 60px;
  background: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.badge-center i {
  color: #fff;
  font-size: 28px;
}
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .badge-center {
    width: 45px;
    height: 45px;
  }

  .badge-center i {
    font-size: 20px;
  }

  .badge-text text {
    font-size: 5px;
  }
}

@media (max-width: 480px) {
  .badge-center {
    width: 38px;
    height: 38px;
  }

  .badge-center i {
    font-size: 18px;
  }
}

/* ============================================
Tablet Responsive
 =============================================== */
@media (max-width: 991px) {
  .journey-section {
    padding: 70px 20px;
  }

  .journey-wrapper {
    gap: 40px;
  }

  .journey-content h2 {
    font-size: 42px;
  }

  .journey-content p {
    font-size: 16px;
  }

  .journey-image img {
    height: 320px;
  }

  .recycle-badge {
    width: 90px;
    height: 90px;
    left: -20px;
  }

  .recycle-badge i {
    font-size: 32px;
  }
}

/* ============================================
Mobile Responsive
 =============================================== */

@media (max-width: 768px) {
  .journey-section {
    padding: 60px 15px;
  }

  .journey-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .journey-content {
    order: 1;
  }

  .journey-image {
    order: 2;
    width: 100%;
  }

  .journey-tag {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .journey-content h2 {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .journey-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .journey-image img {
    height: 250px;
    border-radius: 20px;
  }

  .recycle-badge {
    width: 80px;
    height: 80px;
    left: 5%;
    transform: translateX(-50%);
    bottom: 6px;
  }

  .recycle-badge i {
    font-size: 28px;
  }
}

/* ============================================
Small Mobile
 =============================================== */

@media (max-width: 480px) {
  .journey-content h2 {
    font-size: 24px;
  }

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

  .journey-image img {
    height: 200px;
  }

  .recycle-badge {
    width: 65px;
    height: 65px;
  }

  .recycle-badge i {
    font-size: 24px;
  }
}
