body {
  background-color: #edeceb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* FIRST SECTION - ABOUT HERO WITH SHOE */

.about-section {
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible; 
}

.about-wrapper {
  width: 100%;
  max-width: 1100px;
  text-align: center;
  position: relative;
  margin-bottom: 150px; 
}

.oval-frame {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin: 0 auto;
  width: 100%;
}

.outer-border, .inner-border {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.outer-border {
  width: 95%;
  height: 95%;
  border: 2.5px solid #cfcac4;
}

.inner-border {
  width: 90%;
  height: 86%;
  border: 2px solid #cfcac4;
}

.oval-bg {
  width: 84%;
  height: 80%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: clamp(0.85rem, 1.8vw, 1.12rem); /* Responsive font size */
  line-height: 1.7;
  text-align: center;
  z-index: 2;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);
  padding: 20px;
}

.shoe-img {
  position: absolute;
  bottom: -20%; /* Percentage-based instead of fixed pixels */
  left: 50%;
  transform: translateX(-50%);
  width: clamp(300px, 75%, 850px); /* Min, preferred, max */
  max-width: 850px;
  z-index: 3;
}

/* Large tablets and small laptops (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
  .about-wrapper {
    max-width: 90%;
    margin-bottom: 120px;
  }

  .oval-frame {
    aspect-ratio: 14 / 10;
  }

  .overlay-text {
    width: 72%;
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    line-height: 1.65;
  }

  .shoe-img {
    bottom: -18%;
    width: clamp(280px, 70%, 700px);
  }

}

/* Tablets (576px - 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-wrapper {
    max-width: 95%;
    margin-bottom: 100px;
  }

  .oval-frame {
    aspect-ratio: 1 / 1;
  }

  .oval-bg {
    width: 86%;
    height: 82%;
  }

  .overlay-text {
    width: 78%;
    font-size: clamp(0.8rem, 2.2vw, 0.95rem);
    line-height: 1.6;
    padding: 15px;
  }

  .shoe-img {
    bottom: -15%;
    width: clamp(250px, 80%, 600px);
  }

}

/* Mobile devices (up to 575px) */
@media (max-width: 575px) {
  .about-section {
    padding: 30px 10px;
    min-height: auto;
  }

  .about-wrapper {
    margin-bottom: 80px;
  }

  .oval-frame {
    aspect-ratio: 1 / 1.1;
  }

  .outer-border {
    width: 96%;
    height: 96%;
    border-width: 2px;
  }

  .inner-border {
    width: 91%;
    height: 87%;
    border-width: 1.5px;
  }

  .oval-bg {
    width: 88%;
    height: 84%;
  }

  .overlay-text {
    width: 82%;
    font-size: clamp(0.75rem, 3vw, 0.88rem);
    line-height: 1.55;
    padding: 12px;
  }

  .shoe-img {
    bottom: -12%;
    width: clamp(220px, 85%, 500px);
  }

}

/* Extra small devices - iPhone SE, small Androids (up to 375px) */
@media (max-width: 425px) {
  .about-section {
    padding: 25px 8px;
  }

  .about-wrapper {
    margin-bottom: 70px;
  }

  .overlay-text {
    width: 85%;
    font-size: 0.55rem;
    line-height: 1.5;
    padding: 10px;
  }

  .shoe-img {
    bottom: -10%;
    width: clamp(200px, 88%, 450px);
  }

}


/* iPad Pro and larger tablets (1024px+) in portrait */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .oval-frame {
    aspect-ratio: 1 / 1;
    max-width: 650px;
  }

  .overlay-text {
    width: 75%;
    font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  }

  .shoe-img {
    bottom: -16%;
  }
}

/* Mission & Vision Section */
.mission {
  background-color: #faf9f7;
  color: #222;
}

.mission h2 {
  font-size: 2rem;
  letter-spacing: 1px;
}

.mission p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* Sustainability Section */
.sustainability {
  background-color: #f7f6f4;
}

.sustainability h2 {
  color: #222;
}

.sustainability .col-md-4 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustainability .col-md-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.sustainability h5 {
  color: #333;
}

.sustainability p {
  color: #555;
  font-size: 0.95rem;
}

