/* =================================================
   Job Role: Web Developer & Media Graphic Designer
   Website Designed By Abdul Rahman Raza
   Official Website www.designerich.info
=================================================== */


 .story-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 50px 0%;
      background: #111;
      box-sizing: border-box;
    }

    .story-text {
      flex: 1 1 50%;
	   padding:0px 7%;
      max-width: 830px;
    }

    .story-text h2 {
      font-size: 2rem;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .story-text p {
      line-height: 1.6;
      font-size: 1rem;
      margin-bottom: 30px;
      color: #ddd;
    }

    .story-text .btn {
      display: inline-block;
      background: #fff;
      color: #000;
      padding: 12px 25px;
      font-size: 1rem;
      font-weight: bold;
      text-transform: uppercase;
      border: none;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
    }

    .story-text .btn:hover {
      background: #f4f4f4;
    }

.story-image {
  flex: 1 1 50%;
  text-align: right;   /* push to the right edge */
}

.story-image img {
  width: 100%;
  height: auto;
  max-width: none;     /* allow full stretch */
}

    /* Responsive */
    @media (max-width: 900px) {
      .story-section {
        flex-direction: column;
        text-align: center;
      }

      .story-text, .story-image {
        flex: 1 1 100%;
        max-width: 100%;
      }

      .story-text h2 {
        font-size: 1.8rem;
      }
    }
	
	
.values-section {
      width: 100%;
      padding: 60px 7%;
      background: linear-gradient(to right, #111, #222);
      box-sizing: border-box;
      text-align: center;
    }

    .values-container {
      max-width: 1200px;   /* lock width */
      margin: 0 auto;      /* center */
    }

    .values-section h2 {
      font-size: 2rem;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 50px;
      letter-spacing: 2px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px 60px;
      text-align: left;
    }

    .value-item h3 {
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #fff;
    }

    .value-item p {
      font-size: 1rem;
      line-height: 1.6;
      color: #ddd;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .values-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }
	
	



   .vision-section {
      width: 100%;
      padding: 60px 5%;
      background: #111;
      text-align: center;
      box-sizing: border-box;
    }

    .vision-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .vision-section h2 {
      font-size: 2rem;
      font-weight: bold;
      text-transform: uppercase;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }

    .vision-section p {
      font-size: 1rem;
      line-height: 1.6;
      color: #ddd;
      margin: 0 auto 40px auto;
      max-width: 800px;
    }

    .vision-cars {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .vision-cars img {
      width: 800px;
      height: auto;
      transition: transform 0.3s ease;
    }

    .vision-cars img:hover {
      transform: scale(1.05);
    }

  .vision-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.vision-buttons .btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

/* View Catalogue button */
.vision-buttons .catalogue {
  background: #000;
  color: #fff;
  border: 2px solid #fff;
}

.vision-buttons .catalogue:hover {
  background: #111; /* subtle hover */
}

/* Book Now button */
.vision-buttons .book {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.vision-buttons .book:hover {
  background: #f4f4f4;
}


    /* Responsive */
    @media (max-width: 768px) {
      .vision-cars img {
        width: 150px;
      }
    }