/* ABOUT PAGE STYLING */

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}


header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8%;
  background-color: transparent;
  transition: all .50s ease;
}



.h-btn {
  display: inline-block;
  padding: 7px 26px;
  background-color: var(--main-color);
  color: var(--bg-color);
  border: 2px solid var(--main-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--main-color);
  transition: all .50s ease;
}

.h-btn:hover {
  background-color: var(--main-color);
  color: var(--bg-color);
  box-shadow: 0 0 20px var(--main-color);
  transform: scale(1.1);
}


.about-section {
  padding: 150px 8% 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 15px;
}

.about-text h3 {
  font-size: 1.4rem;
  color: #111;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
  color: #555;
}

.education, .software-journey {
  margin-top: 40px;
}

.btn {
   display: inline-block;
  padding: 7px 26px;
  background-color: var(--main-color);
  color: var(--bg-color);
  border: 2px solid var(--main-color);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid var(--main-color);
  transition: all .50s ease;
}

.btn:hover {
 background-color: var(--main-color);
  color: var(--bg-color);
  box-shadow: 0 0 20px var(--main-color);
  transform: scale(1.1);
}

.navlist {
  display: flex;
}

.navlist a {
  font-size: 21px;
  color: var(--text-color);
  font-weight: 500;
  margin-left: 40px;
  transition: all .50s ease;
  padding-bottom: 10px;
}

.navlist a:hover {
  color: var(--main-color);
  box-shadow:  -2px 1px 30px var(--black);
  background-color: transparent;
}


.about-img-long {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-img-long img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.quote-section {
  text-align: center;
  padding: 200px 20px;
  background: #f9f9f9;
}

.quote-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.quote-section span {
  display: block;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #555;
}


@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-img-long img {
    max-width: 320px;
  }

  .about-text h1 {
    font-size: 2rem;
  }
}
