/* About Section Styles */
.about-section {
  overflow-x: hidden;
  overflow-y: hidden;

  width: 100%;
  background-color: rgb(10, 10, 12);
}

.about {
  padding-top: 100px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(10, 10, 12, 0.7) 0%,
    rgb(10, 10, 12) 100%
  );
  z-index: 1;
}

.about_content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.about_title {
  font-family: "Signord", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.3rem;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.about_title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
}

.about_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

/* Alternating order logic */
.about_section .image-container:nth-child(even),
.about_section .about-text:nth-child(odd) {
  order: 2;
}

.about_section .image-container:nth-child(odd),
.about_section .about-text:nth-child(even) {
  order: 1;
}

.image-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.about-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.about-text p {
  font-family: poppins, sans-serif !important;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #cccccc;
  margin: 0;
  font-weight: 400;
  text-align: left;
}

.about-text ul {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
  font-family: poppins, sans-serif !important;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #cccccc;
  font-weight: 400;
}

.about-text li {
  margin-bottom: 0.75rem;
  list-style-type: disc;
}

h6 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0.5rem 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about {
    overflow-x: hidden;
  }
  .about_section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #mobile_img {
    display: none;
  }
  .about_section .image-container,
  .about_section .about-text {
    order: unset;
  }

  .image-container {
    justify-content: center;
  }

  .about-img {
    max-width: 300px;
  }

  .about-text {
    text-align: center;
  }

  .about-text p,
  .about-text ul {
    text-align: center !important;
  }

  .about-text li {
    text-align: left;
  }

  #about_title {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .about_content {
    padding: 1.5rem;
  }

  .about-img {
    max-width: 250px;
  }

  .about-text p {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
  }

  #about_title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about {
    overflow-x: hidden;
    padding-top: 0px;
  }

  .about_content {
    padding: 1rem;
  }

  .about_section {
    gap: 1.5rem;
  }
  #mobile_img {
    display: none;
  }
  .about-img {
    max-width: 220px;
  }

  .about-text p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
}
.about_spacing {
  padding: 0;
}
.about {
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 2rem 0; /* Reduced from 4rem */
}

.about_subtitle {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  text-transform: uppercase;
  font-family: "Signord", sans-serif;
  letter-spacing: 0.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  margin-left: auto;
  margin-right: auto;
}

.about_subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 2px;
  transition: none;
  opacity: 1;
}

/* Remove hover underline effect */
.about_subtitle:hover::after {
  width: 100px;
}

.about {
  padding-top: calc(4rem + 60px); /* 60px = approximate navbar height */
}
