/* Hero Section */
/* .about-section {
  margin-top: clamp(60px, 4.167vw, 80px);
  text-align: center;
} */

:root {
  --header-height: 0px;
  --header-extra-space: clamp(5px, 2vw, 30px);
}

body {
  background: url(/assets/svg/waves-with-boat-only1.svg), var(--darkblue);
  background-repeat: repeat-x, no-repeat;
  background-position: top;
  background-size: auto 50vh, contain;
  background-position: center calc(75vh);
}

/* about Section */
.about-section {
  flex-direction: column;
  gap: clamp(20px, 2.083vw, 40px);
  justify-content: center;
  background: transparent;
  min-height: max-content;
  padding-bottom: 6%;
}

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

.about-subtitle {
  text-align: left;
  font-size: clamp(20px, 1.563vw, 30px);
  margin: clamp(5px, 0.521vw, 10px) 0 clamp(20px, 2.083vw, 40px);
}

.about-text {
  font-size: clamp(16px, 0.938vw, 18px);
  line-height: 1.8;
  margin-bottom: clamp(20px, 1.563vw, 30px);
  opacity: 0.95;
}

.quote-content {
  max-width: clamp(400px, 33.9vw, 650px);
  margin: clamp(30px, 2.08vw, 40px) auto;
  text-align: center;
}

.quote-text {
  color: var(--pink);
  /* font-style: italic; */
  font-size: clamp(15px, 1.042vw, 20px);
  line-height: 1.7;
}

/* Vision Section */
.vision-section {
  gap: clamp(15px, 1.302vw, 25px);
  flex-direction: column;
  min-height: max-content;
}

.founder-card {
  text-align: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: relative;
}

.founder-image img {
  width: clamp(150px, 10vw, 220px);
  aspect-ratio: 1;
  border-radius: 50%;
  margin: 0 auto clamp(15px, 1.302vw, 25px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 clamp(5px, 0.417vw, 8px) clamp(15px, 1.563vw, 30px)
    rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 40%;
}

.founder-details {
  text-align: left;
  margin-bottom: clamp(15px, 1.302vw, 25px);
}

.vision-content {
  flex: 1;
}

.vision-heading {
  font-weight: 500;
}

.vision-box {
  background: linear-gradient(
    135deg,
    rgba(30, 80, 130, 0.4) 0%,
    rgba(40, 90, 140, 0.35) 100%
  );
  padding: clamp(30px, 2.604vw, 50px) clamp(40px, 3.125vw, 60px);
  border-radius: clamp(15px, 1.302vw, 25px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-text {
  font-size: clamp(18px, 1.302vw, 25px);
  padding: clamp(20px, 1.563vw, 30px) 0;
}

.features-content {
  text-align: center;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 80px 0 25px 0;
}

.divider-line {
  width: 100%;
  height: 1px;
  background: white;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
}

.logos-container {
  /* display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; */

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(50px, 5.2vw, 100px);
  place-items: center;
  align-items: baseline;
}

.logo-item {
  transition: transform 0.3s;
  width: calc(100% / 1.5);
  aspect-ratio: 2 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  width: 100%;
}

.about-stages {
  margin-top: 50px;
}

.about-stage {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 90px;
}

.stage-image {
  flex-shrink: 0;
  width: 35%;
  display: flex;
  justify-content: center;
}

.stage-image img {
  object-fit: contain;
}

.stage-content {
  flex: 1;
}

.ending-content {
  max-width: 800px;
  margin: clamp(30px, 2.08vw, 40px) auto;
  text-align: center;
}

.ending-content h3,
.ending-content .description {
  margin: 0;
}

@media (max-width: 1024px) {
  body {
    background-size: auto 30vh, contain;
  }

  .hero-image-section {
    min-height: max-content;
  }

  .hero-image-container {
    height: 75vh;
  }

  .vision-section {
    flex-direction: column;
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }

  .founder-image img {
    position: static;
    margin-bottom: clamp(15px, 1.95vw, 20px);
  }

  .founder-details {
    text-align: center;
    margin-bottom: 0;
    padding-left: 0;
  }

  .section-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: clamp(30px, 3.91vw, 40px);
  }

  .logos-container {
    gap: clamp(30px, 5.86vw, 60px);
    justify-content: center;
  }

  .logo-item {
    width: calc((100% - clamp(30px, 5.86vw, 60px)) / 2);
    min-width: 120px;
  }

  .section-divider {
    gap: clamp(15px, 2.6vw, 20px);
    margin: clamp(30px, 5.21vw, 50px) 0 clamp(15px, 2.6vw, 20px) 0;
  }

  .ending-content {
    margin: 0;
  }
}

@media (max-width: 768px) {
  body {
    background-size: auto 25vh, contain;

  }

  .image-caption {
    padding: clamp(10px, 1.56vw, 12px) clamp(12px, 1.95vw, 15px);
    font-size: clamp(11px, 1.56vw, 13px);
    text-align: left;
  }

  .info-icon {
    width: 22px;
    height: 22px;
  }

  .about-subtitle {
    font-size: clamp(18px, 2.6vw, 24px);
    margin: clamp(5px, 0.78vw, 8px) 0 clamp(15px, 2.6vw, 25px);
  }

  .quote-content {
    max-width: 100%;
    margin: clamp(25px, 3.91vw, 35px) auto;
  }

  .quote-text {
    font-size: clamp(14px, 2.08vw, 18px);
  }

  .vision-heading {
    font-size: clamp(20px, 3.13vw, 30px);
  }

  .founder-image img {
    width: 150px;
    height: 150px;
  }

  .founder-name {
    font-size: clamp(16px, 2.34vw, 20px);
  }

  .founder-title {
    font-size: clamp(13px, 1.82vw, 15px);
  }

  .vision-text {
    font-size: clamp(16px, 2.34vw, 20px);
    padding: clamp(15px, 2.34vw, 20px) 0;
  }

  .logos-container {
    gap: clamp(20px, 3.91vw, 30px);
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    /* height: 250px; */
    border-radius: 12px;
  }

  .image-caption {
    padding: 10px 12px;
    font-size: 11px;
  }

  .info-icon {
    width: 20px;
    height: 20px;
  }

  .about-subtitle {
    font-size: 18px;
    margin: 5px 0 15px;
  }

  .quote-content {
    margin: 25px auto;
    padding: 10px;
  }

  .quote-text {
    font-size: 14px;
  }

  .vision-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .founder-image img {
    width: 140px;
    height: 140px;
  }

  .founder-name {
    font-size: 16px;
  }

  .founder-title {
    font-size: 13px;
  }

  .vision-text {
    font-size: 16px;
    padding: 15px 0;
  }

  .section-card {
    padding: 20px;
    border-radius: 15px;
  }

  .section-divider {
    gap: 12px;
    margin: 30px 0 15px 0;
  }

  .logos-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

  .logo-item {
    width: 100%;
    max-width: 170px;
    padding: 10px;
  }

  .about-stages {
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
  .about-stage {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    /* text-align: center; */
  }

  .stage-image {
    height: clamp(150px, 32.55vw, 250px);
  }

  .no-media {
    display: none;
  }
}

/* Form  */

.form-container {
  flex-direction: column;
}

.form {
  margin-top: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.form-group {
  display: flex;
  flex-direction: column-reverse;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  text-align: left;
  margin-top: 7px;
}

input[type="text"],
input[type="email"] {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-bottom: 1px solid var(--blue);
  padding: 15px 10px;
  font-size: 1rem;
  color: white;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus {
  outline: none;
  border-bottom-color: #5b9fd8;
  background: rgba(255, 255, 255, 0.15);
}

input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form button {
  float: right;
}


@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
