*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-primary {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  background-color: #2575FC;
  color: #fff;
  border-radius: 41px;
  padding: 18px 36px;
}

.btn-primary:hover {
  background-color: #5796FF;
}

.btn-card {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #2575FC;
  color: #fff;
  border: 1px solid #f7f9fb;
  border-radius: 41px;
  padding: 14px 20px;
}

.btn-card:hover {
  background-color: #5796FF;
}

.btn-submit {
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 14px 40px;
  cursor: pointer;
  width: 100%;
}

.btn-submit:hover {
  background-color: #fff;
  color: #000;
}

.btn-cta {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 700;
  background-color: #2575FC;
  color: #fff;
  border-radius: 41px;
  padding: 16px 32px;
}

.btn-cta:hover {
  background-color: #5796FF;
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 742px;
  background-color: #000;
  background-image: url("assets/images/site31.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1154px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 72px;
  color: #fff;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 25px;
  max-width: 520px;
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 128%;
  left: -14%;
  z-index: 1;
}

.hero-shape svg {
  display: block;
  width: 100%;
  height: 183px;
}

/* ── Bio Section ── */
.bio-section {
  background: #fff;
  padding: 0 20px 60px;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.bio-card {
  max-width: 1120px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px 50px;
}

.bio-card-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.bio-text-col {
  flex: 1;
}

.bio-image-col {
  flex: 0 0 auto;
  max-width: 320px;
}

.bio-photo {
  border-radius: 12px;
}

.section-heading {
  font-family: "Sora", sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #4D4D4D;
  margin-bottom: 8px;
}

.bio-desc {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
}

.bio-body {
  padding-top: 20px;
}

.bio-body p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 16px;
}

.bio-body strong {
  color: #333;
}

/* ── Cards Section ── */
.cards-section {
  background: #fff;
  padding: 0 20px 60px;
  position: relative;
  z-index: 2;
}

.cards-container {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  border-radius: 17px;
  overflow: hidden;
}

.card-image-wrapper {
  position: relative;
  border-radius: 17px;
  overflow: hidden;
}

.card-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: brightness(51%);
  transition: transform 0.3s, opacity 0.3s;
}

.card-image-wrapper:hover img {
  transform: scale(1.01);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.card-title {
  font-family: "Sora", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
}

.card-desc {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 23px;
  margin-bottom: 20px;
}

/* ── Contact Section ── */
.contact-section {
  background-color: #000;
  padding: 74px 20px 50px;
}

.contact-container {
  max-width: 1154px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-form-col {
  flex: 1;
  padding-left: 4em;
}

.contact-heading {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2em;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: "Jost", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}

.form-group input {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: 1.7em;
  color: #fff;
  background-color: #161616;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  outline: none;
  transition: box-shadow 0.3s;
}

.form-group input:focus {
  box-shadow: 0 0 0 2px #2575FC;
}

.form-disclaimer {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999;
  line-height: 1.6;
  padding-right: 89px;
}

.contact-cta-col {
  flex: 1;
  background: #000;
}

.cta-image-link img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 24px;
}

.cta-text-block {
  padding: 0 20px;
}

.cta-text-block h3 {
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.cta-text-block p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ── Info Image Box (from Elementor) ── */
.info-image-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.info-image-box img {
  width: 100%;
}

.info-image-box .box-body {
  padding: 30px;
}

.info-image-box .box-title {
  font-family: "Sora", sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
  color: #000;
  margin-bottom: 20px;
}

.info-image-box .box-desc {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 14px;
}

/* ── Footer ── */
.site-footer {
  background-color: #282828;
  padding: 15px 20px;
}

.footer-container {
  max-width: 1154px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-family: "Poppins", sans-serif;
  font-size: 0.75em;
  color: #fff;
}

.back-to-top {
  font-family: "Nunito", sans-serif;
  font-size: 1.1em;
  color: #00A5FF;
  border: 2px solid #00A5FF;
  padding: 5px 8px;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.back-to-top:hover {
  background-color: #00BB18;
  color: #fff;
  border-color: #000;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero {
    min-height: 800px;
  }

  .hero-shape svg {
    height: 69px;
  }

  .hero-title {
    font-size: 43px;
    line-height: 52px;
  }

  .bio-card {
    margin: 0 15px;
  }

  .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .hero {
    background-image: url("assets/images/stories2.png");
    background-size: contain;
    min-height: 700px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 40px 16px 100px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-subtitle {
    margin-bottom: 0;
  }

  .hero-shape svg {
    height: 50px;
  }

  .bio-section {
    margin-top: -50px;
    padding: 0 10px 40px;
  }

  .bio-card {
    padding: 28px;
    margin: 0;
  }

  .bio-card-content {
    flex-direction: column;
  }

  .bio-image-col {
    max-width: 100%;
    order: -1;
  }

  .section-heading {
    line-height: 1.2em;
    padding: 0 23px;
  }

  .bio-desc {
    padding: 0 23px;
  }

  .bio-body {
    padding: 0 23px;
  }

  .cards-section {
    padding: 0 10px 40px;
  }

  .cards-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-image-wrapper img {
    height: 350px;
  }

  .contact-section {
    padding: 100px 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-col {
    padding-left: 0;
  }

  .contact-heading {
    padding: 0 0 7px;
  }

  .form-disclaimer {
    font-size: 14px;
    padding-right: 0;
    padding-bottom: 13px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-text {
    text-align: center;
  }
}
