/* -------------------------- */
/*  1. Hero Section           */
.about_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% 0;
}
.about_frame {
  width: 100%;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10% 10% 10%;
}
.about_text {
  grid-area: 1 / 6 / 5 / 12;
}
.about_text h2 {
  font-size: clamp(25px, 2vw, 40px);
  font-family: "Poppins", sans-serif;
}
.about_text span {
  color: var(--secondary);
}
.about_text p {
  margin: 10px 0 20px;
}
.about_text a {
  letter-spacing: 2px;
}
.about_img {
  grid-area: 1 / 1 / 7 / 6;
  padding: 0 10% 10% 0;
}
.about_img video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.inline {
  display: flex;
  gap: 5px;
}
.inline_items {
  overflow: hidden;
  width: 50%;
  border-radius: 10px;
}
.inline img {
  width: 100%;
  border-radius: 10px;
  height: auto;
  transition: 0.5s;
}
.inline img:hover {
  scale: 1.03;
}
.about_details {
  padding: 5% 5% 0;
  border-top: 1px solid grey;
}
.about_details ul {
  margin-top: 4%;
  margin-left: 8%;
}
.about_anchors a {
  color: #fff;
  padding: 9px 20px;
  background-color: var(--secondary);
  border-radius: 4px;
  font-weight: 500;
}
.about_anchors a:last-child {
  background: #000;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .about_text {
    grid-area: 7 / 1 / 10 / 12;
  }
  .about_img {
    grid-area: 1 / 1 / 6 / 12;
    padding: 0 0 5% 0;
  }
}
@media screen and (max-width: 500px) {
  .about_text {
    grid-area: 7 / 1 / 10 / 12;
    padding: 4% 0 0;
  }
}

@media screen and (max-width: 350px) {
  .about_anchors {
    display: flex;
    flex-direction: column;
  }
  .about_anchors a {
    margin-top: 2px;
    width: 150px;
    text-align: center;
  }
}
/* -------------------------- */
/*  2. Conatct Section        */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-header h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 5vw, 48px);
}
.contact-header .lead {
  max-width: 700px;
  margin: 0 auto;
  color: #475569;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.contact-info h3 {
  margin-bottom: 24px;
  font-size: 24px;
  color: #0b1020;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-icon {
  font-size: 32px;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(76, 201, 240, 0.1),
    rgba(247, 37, 133, 0.1)
  );
  border-radius: 14px;
  flex-shrink: 0;
}
.contact-details h4 {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 700;
  color: #0b1020;
}
.contact-details p {
  margin: 0 0 4px 0;
  font-size: 15px;
}
.contact-details p a {
  color: #000033;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-details p a:hover {
  color: #2fb3da;
  text-decoration: underline;
}
.contact-details small {
  display: block;
  color: #64748b;
  font-size: 13px;
}
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
