/* ----- POPPINS FONT Link ----- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* ----- VARIABLES ----- */
:root {
  --body-color: rgb(250, 250, 250);
  --color-white: rgb(255, 255, 255);

  --text-color-second: rgb(68, 68, 68);
  --text-color-third: rgb(30, 159, 171);

  --first-color: rgb(110, 87, 224);
  --first-color-hover: rgb(40, 91, 212);

  --second-color: rgb(0, 201, 255);
  --third-color: rgb(192, 166, 49);
  --first-shadow-color: rgba(0, 0, 0, 0.1);
}

/* ----- BASE ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* ----- SMOOTH SCROLL ----- */
html {
  scroll-behavior: smooth;
}

/* ----- CHANGE THE SCROLL BAR DESIGN ----- */
::-webkit-scrollbar {
  width: 10px;
  border-radius: 25px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

/* ---##-- REUSABLE CSS --##--- */

/* ----- GLOBAL BUTTON DESIGN ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: var(--color-white);
  background: var(--first-color);
  border: 2px solid var(--first-color);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn i {
  font-size: 1.1rem;
}

.btn-small i {
  font-size: 1rem;
}

.btn:hover {
  background: transparent;
  color: var(--first-color);
  transform: translateY(-2px);
}

.btn:hover i {
  animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.nav-button .btn {
  margin-left: 10px;
}

.blue-btn {
  background: var(--text-color-third);
  border-color: var(--text-color-third);
}

.blue-btn:hover {
  color: var(--text-color-third);
  background: transparent;
}

.featured-box-btn {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

/* ----- GLOBAL ICONS DESIGN ----- */
i {
  font-size: 16px;
}

/* ------- BASE -------- */
body {
  background: var(--body-color);
}
.container {
  width: 100%;
  position: relative;
}

/* ----- NAVIGATION BAR ----- */
nav {
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  line-height: 90px;
  background: var(--body-color);
  padding-inline: 9vw;
  transition: 0.3s;
  z-index: 100;
}
.nav-logo {
  position: relative;
}
.nav-name {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color-third);
}
.nav-logo span {
  position: absolute;
  top: -15px;
  right: -20px;
  font-size: 5em;
  color: var(--text-color-second);
}
.nav-menu,
.nav_menu_list {
  display: flex;
}
.nav-menu .nav_list {
  list-style: none;
  position: relative;
}
.nav-link {
  text-decoration: none;
  color: var(--text-color-second);
  font-weight: 500;
  padding-inline: 15px;
  margin-inline: 20px;
}
.nav-menu-btn {
  display: none;
}
.nav-menu-btn i {
  font-size: 28px;
  cursor: pointer;
}
.active-link {
  position: relative;
  color: var(--first-color);
  transition: 0.3;
}
.active-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  background: var(--first-color);
  border-radius: 50%;
}

/* ----- WRAPPER DESIGN ----- */
.wrapper {
  padding-inline: 10vw;
}

/* ----- FEATURED BOX ----- */
.featured-box {
  padding: 0 10%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.featured-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.featured-text {
  flex: 1;
  text-align: left;
  padding: 30px 0;
  max-width: 600px;
}

.featured-name {
  margin: 1.5rem 0;
}

.featured-name .greeting {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-color-second);
  margin-bottom: 0.5rem;
}

.featured-name .profession {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--first-color);
  margin-left: 2rem;
}

.typedText, .typed-cursor {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

.typed-cursor {
  margin-left: 0;
  font-size: inherit;
  opacity: 1;
  color: var(--first-color);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.featured-text p {
  color: var(--text-color-second);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
}

.featured-text-card span {
  background: var(--third-color);
  color: var(--color-white);
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 5px;
}

.featured-text-info {
  font-size: 15px;
  margin-bottom: 30px;
  color: var(--text-color-second);
}

.featured-text-btn {
  display: flex;
  gap: 20px;
}

.featured-text-btn > .blue-btn {
  background: var(--first-color);
  color: var(--color-white);
}

.featured-text-btn > .blue-btn:hover {
  background: var(--first-color-hover);
}

.social_icons {
  display: flex;
  margin-top: 5em;
  gap: 30px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.icon:hover {
  color: var(--first-color);
}

.featured-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.featured-image .image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--first-color);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.featured-image .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 968px) {
  .featured-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .featured-image .image {
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .featured-image .image {
    width: 200px;
    height: 200px;
  }
}

/* ----- FEATURED IMAGE BOX ----- */
.featured-image {
  display: flex;
  justify-content: right;
  align-content: center;
  min-height: 80vh;
  width: 50%;
}

.image {
  margin: auto 0;
  width: 380px;
  height: 380px;
  border-radius: 55% 45% 55% 45%;
  overflow: hidden;
  animation: imgFloat 7s ease-in-out infinite;
}

.image img {
  width: 380px;
  height: 380px;
  object-fit: cover;
}

@keyframes imgFloat {
  50% {
    transform: translateY(10px);
    border-radius: 45% 55% 45% 55%;
  }
}

.scroll-btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  gap: 5px;
  text-decoration: none;
  color: var(--text-color-second);
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.scroll-btn i {
  font-size: 20px;
}

/* ----- MAIN BOX ----- */
.section {
  padding-block: 5em;
}

.row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 50px;
}

.col {
  display: flex;
  width: 50%;
}

/* -- ## --- RESUABLE CSS -- ## -- */
.top-header {
  text-align: center;
  margin-bottom: 5em;
}

.top-header h1 {
  font-weight: 600;
  color: var(--text-color-second);
  margin-bottom: 10px;
}

.top-header span {
  color: #999;
}

h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color-second);
  margin-bottom: 15px;
}

/* ----- ABOUT INFO ----- */
.about-info {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-block: 30px 70px;
  padding-inline: 20px;
  width: 100%;
  background: var(--color-white);
  box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
  border-radius: 20px;
}

.about-info p {
  text-align: center;
  font-size: 15px;
  color: #777;
}

.about-btn button {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--first-color);
  color: var(--color-white);
  border-radius: 30px;
}

.about-btn button:hover {
  background: var(--first-color-hover);
}

/* ----- ABOUT / SKILLS BOX ----- */
.skills-box {
  background: var(--color-white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.skills-header {
  margin-bottom: 20px;
}

.skills-header h3 {
  color: var(--text-color-second);
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.skills-header h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40%;
  height: 3px;
  background: var(--first-color);
  border-radius: 10px;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills-list span {
  background: var(--first-color);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.skills-list span:hover {
  transform: translateY(-2px);
  background: var(--first-color-hover);
}

.skills-list span.featured {
  background: var(--text-color-third);
  font-size: 0.9rem;
  padding: 8px 16px;
}

.skills-list span.featured:hover {
  background: #1a8a98;
}

@media screen and (max-width: 768px) {
  .skills-box {
    padding: 20px;
  }

  .skills-header h3 {
    font-size: 1.2rem;
  }

  .skills-list span {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .skills-list span.featured {
    font-size: 0.85rem;
    padding: 7px 14px;
  }
}

/* ----- PROJECT SECTION ----- */
.project-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 30px;
}

.project-container a:last-child {
  grid-column: 1 / -1;
  max-width: 800px;
  margin: 0 auto;
}

.project-box {
  position: relative;
  background: var(--color-white);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-color-second);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-icon {
  background: var(--first-color);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-icon i {
  font-size: 24px;
  color: var(--color-white);
}

.project-content {
  flex: 1;
}

.project-content h3 {
  font-size: 1.3rem;
  color: var(--text-color-second);
  margin-bottom: 15px;
  font-weight: 600;
}

.project-content p {
  color: var(--text-color-second);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.tech-stack-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 5px;
}

.tech-stack {
  display: inline-block;
  padding: 5px 15px;
  background: var(--first-color);
  color: var(--color-white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-stack:hover {
  background: var(--first-color-hover);
  transform: translateY(-2px);
}

/* Make projects responsive */
@media screen and (max-width: 968px) {
  .project-container {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .project-container {
    grid-template-columns: 1fr;
  }

  .project-box {
    padding: 20px;
  }

  .project-content h3 {
    font-size: 1.2rem;
  }

  .tech-stack-group {
    margin-top: 10px;
  }
}

@media screen and (max-width: 576px) {
  .project-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .project-content h3 {
    font-size: 1.1rem;
  }
}

/* ----- CONTACT SECTION ----- */
.contact-container {
  margin-top: 40px;
}

.contact-info {
  background: var(--color-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-info h2 {
  color: var(--text-color-second);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.icon-box {
  background: var(--first-color);
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 20px;
  color: var(--color-white);
}

.contact-details h3 {
  font-size: 1.1rem;
  color: var(--text-color-second);
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-color-second);
  font-size: 0.9rem;
  opacity: 0.9;
}

.form-control {
  background: var(--color-white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-inputs {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
}

.input-group .input-field {
  width: 100%;
  padding: 15px 45px 15px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  color: var(--text-color-second);
}

.input-group .input-field:focus {
  border-color: var(--first-color);
}

.input-group .input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-second);
  opacity: 0.5;
}

.text-area {
  position: relative;
  margin-bottom: 20px;
}

.text-area textarea {
  width: 100%;
  height: 150px;
  padding: 15px 45px 15px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
  color: var(--text-color-second);
  resize: none;
}

.text-area textarea:focus {
  border-color: var(--first-color);
}

.text-area .input-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  color: var(--text-color-second);
  opacity: 0.5;
}

.form-button .btn {
  width: 100%;
  background: var(--first-color);
  color: var(--color-white);
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-button .btn:hover {
  background: var(--first-color-hover);
}

@media screen and (max-width: 968px) {
  .contact-container .row {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 576px) {
  .form-inputs {
    grid-template-columns: 1fr;
  }

  .contact-info-item {
    gap: 15px;
  }

  .icon-box {
    width: 40px;
    height: 40px;
  }
}

/* ----- CONTACT BOX ----- */
.contact-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  width: 100%;
  height: 315px;
  background: var(--second-color);
  border-radius: 10px;
  box-shadow: 1px 8px 10px 2px var(--first-shadow-color);
  overflow: hidden;
}

.contact-info > h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.contact-info > p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  margin-block: 5px;
}

.contact-info p > i {
  font-size: 18px;
}

.contact-info::after {
  background: var(--color-white);
}

.contact-info:hover.contact-info h2,
.contact-info:hover.contact-info p,
.contact-info:hover.contact-info i {
  color: #777;
  z-index: 2;
}

/* ----- CONTACT FORM ----- */
.form-control {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.form-inputs {
  display: flex;
  gap: 10px;
  width: 100%;
}

.input-field {
  width: 50%;
  height: 55px;
  background: transparent;
  border: 2px solid #aaa;
  border-radius: 10px;
  padding-inline: 20px;
  outline: none;
}

textarea {
  width: 100%;
  height: 250px;
  background: transparent;
  border: 2px solid #aaa;
  border-radius: 10px;
  padding: 15px 20px;
  outline: none;
  resize: none;
}

.form-button > .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--second-color);
  color: var(--color-white);
}

.form-button > .btn:hover {
  background: #00b5e7;
}

.form-button i {
  font-size: 18px;
  rotate: -45deg;
}

/* ----- FOOTER BOX ----- */
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
  background: #f8f8f8;
  padding-block: 40px 60px;
}

.top-footer p {
  font-size: 25px;
  font-weight: 600;
}

.middle-footer .footer-menu {
  display: flex;
}

.footer_menu_list {
  list-style: none;
}

.footer_menu_list a {
  text-decoration: none;
  color: var(--text-color-second);
  font-weight: 500;
  margin-inline: 20px;
}

.footer-social-icons {
  display: flex;
  gap: 30px;
}

.bottom-footer {
  font-size: 14px;
  margin-top: 10px;
}

/* ----- SOCIAL ICONS ----- */
.social_icons,
.footer-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--first-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.social-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.social-link:hover::before {
  transform: translateY(0);
}

.social-link i {
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.github {
  background: #333;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link .tooltip {
  position: absolute;
  top: -40px;
  background: var(--text-color-second);
  color: var(--color-white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.social-link .tooltip::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: var(--text-color-second) transparent transparent transparent;
}

.social-link:hover .tooltip {
  opacity: 1;
  top: -45px;
}

/* Footer social icons specific styling */
.footer-social-icons {
  justify-content: center;
  margin: 25px 0;
}

.footer-social-icons .social-link {
  width: 40px;
  height: 40px;
}

.footer-social-icons .social-link i {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link i {
    font-size: 1.3rem;
  }

  .footer-social-icons .social-link {
    width: 35px;
    height: 35px;
  }

  .footer-social-icons .social-link i {
    font-size: 1.2rem;
  }
}

/* ----- MEDIA QUERY == 1024px / RESPONSIVE ----- */
@media only screen and (max-width: 1024px) {
  .featured-text {
    padding: 0;
  }
  .image,
  .image img {
    width: 320px;
    height: 320px;
  }
}

/* ----- MEDIA QUERY == 900px / RESPONSIVE ----- */
@media only screen and (max-width: 900px) {
  .nav-button {
    display: none;
  }
  .nav-menu.responsive {
    left: 0;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    width: 100%;
    min-height: 450px;
    height: 90vh;
    transition: 0.3s;
  }
  .nav_menu_list {
    flex-direction: column;
  }
  .nav-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .featured-box {
    flex-direction: column;
    justify-content: center;
    height: 100vh;
  }

  .featured-text .typedText {
    display: inline-block;
    padding-left: 5px; /* Adds a little padding between the text and the cursor */
  }

  .featured-text .typedText {
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Smooth fade effect */
  }

  .typedText.visible {
    opacity: 1;
  }

  .featured-text {
    width: 100%;
    order: 2;
    justify-content: center;
    align-content: flex-start;
    min-height: 60vh;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s ease-out; /* Smooth spring effect */
    opacity: 0;
  }
  .social_icons {
    margin-top: 2em;
  }
  .featured-image {
    order: 1;
    justify-content: center;
    min-height: 150px;
    width: 100%;
    margin-top: 65px;
  }
  .image,
  .image img {
    width: 150px;
    height: 150px;
  }
  .row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
  }
  .col {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .about-info,
  .contact-info {
    width: 100%;
  }
  .project-container {
    justify-content: center;
  }
  .project-box {
    width: 80%;
  }
}

/* ----- MEDIA QUERY == 540px / RESPONSIVE ----- */

@media only screen and (max-width: 540px) {
  .featured-name {
    font-size: 40px;
  }
  .project-box {
    width: 100%;
  }
  .form-inputs {
    flex-direction: column;
  }
  .input-field {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .btn-small {
    padding: 7px 14px;
    font-size: 0.85rem;
  }

  .btn i {
    font-size: 1rem;
  }

  .btn-small i {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 968px) {
  .featured-name h1 {
    font-size: 2.8rem;
  }

  .featured-text p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .featured-name span {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .featured-name h1 {
    font-size: 2.3rem;
  }

  .featured-name span {
    font-size: 1rem;
  }

  .featured-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}


.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.footer_menu_list a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer_menu_list a:hover {
  color: #007bff;
}

