cd ~/devops-portfolio
cat > assets/css/styles.css <<'EOF'
/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  --first-color: #38bdf8;
  --first-color-alt: #0ea5e9;
  --title-color: #f8fafc;
  --text-color: #cbd5e1;
  --text-color-light: #94a3b8;
  --body-color: #020617;
  --container-color: #0f172a;
  --card-border: rgba(56, 189, 248, 0.22);

  --body-font: "Poppins", sans-serif;
  --biggest-font-size: 2.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.5rem;
  --h3-font-size: 1.15rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;
  --tiny-font-size: 0.625rem;

  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button,
input,
textarea {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background: linear-gradient(135deg, #020617 0%, #0f172a 55%, #082f49 100%);
  color: var(--text-color);
}

h1,
h2,
h3 {
  color: var(--title-color);
  font-weight: var(--font-semibold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--first-color);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

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

/*=============== REUSABLE CLASSES ===============*/
.container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.main {
  overflow: hidden;
}

.section {
  padding: 5rem 0 2rem;
}

.section__title,
.section__subtitle {
  text-align: center;
}

.section__title {
  font-size: var(--h2-font-size);
  color: var(--first-color);
  margin-bottom: 2rem;
}

.section__subtitle {
  display: block;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(2, 6, 23, 0.94);
  backdrop-filter: blur(12px);
  z-index: var(--z-fixed);
  transition: 0.4s;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--first-color);
  font-weight: var(--font-semibold);
}

.nav__menu {
  position: fixed;
  bottom: 1rem;
  background-color: rgba(15, 23, 42, 0.92);
  width: 90%;
  border-radius: 4rem;
  padding: 1rem 2.25rem;
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
}

.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__link {
  color: var(--text-color);
  font-size: 1.25rem;
  padding: 0.4rem;
  font-weight: var(--font-medium);
  display: flex;
  border-radius: 5rem;
  transition: 0.3s;
}

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

.active-link {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.5), rgba(56, 189, 248, 0.15));
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35);
  color: var(--title-color);
}

.scroll-header {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

/*=============== HOME ===============*/
.home__container {
  row-gap: 2rem;
  padding-top: 2rem;
}

.home__data {
  text-align: center;
}

.home__greeting,
.home__education {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.home__greeting {
  display: block;
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.home__education {
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

.home__name {
  font-size: var(--biggest-font-size);
  color: var(--first-color);
}

.home__img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.35);
}

.home__handle {
  display: none;
}

.home__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.home__social,
.home__scroll {
  position: absolute;
}

.home__social {
  bottom: 4rem;
  left: 0;
  display: grid;
  row-gap: 0.5rem;
}

.home__social-link {
  width: max-content;
  background-color: var(--container-color);
  color: var(--first-color);
  padding: 0.35rem;
  border-radius: 0.5rem;
  display: flex;
  font-size: 1rem;
  transition: 0.3s;
  border: 1px solid var(--card-border);
}

.home__social-link:hover {
  background-color: var(--first-color);
  color: #020617;
}

.home__social::after {
  content: "";
  width: 32px;
  height: 1px;
  background-color: var(--first-color);
  transform: rotate(90deg) translate(16px, 4px);
}

.home__scroll {
  color: var(--first-color);
  right: -1.5rem;
  bottom: 4rem;
  display: grid;
  row-gap: 2.25rem;
  justify-items: center;
}

.home__scroll-icon {
  font-size: 1.25rem;
}

.home__scroll-name {
  font-size: var(--smaller-font-size);
  transform: rotate(-90deg);
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: #ffffff;
  padding: 0.85rem 1.1rem;
  border-radius: 0.8rem;
  font-weight: var(--font-medium);
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.button:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.button--ghost {
  background: transparent;
  color: var(--first-color);
  border: 1px solid var(--first-color);
  box-shadow: none;
}

/*=============== ABOUT ===============*/
.about__container {
  row-gap: 2.5rem;
}

.about__img {
  
  width: 300px;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: 1.5rem;
}

.about__data {
  text-align: center;
}

.about__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.about__box {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--card-border);
  border-radius: 0.9rem;
  padding: 1rem 0.5rem;
}

.about__icon {
  font-size: 1.5rem;
  color: var(--first-color);
  margin-bottom: 0.5rem;
}

.about__title {
  font-size: var(--small-font-size);
}

.about__subtitle {
  font-size: var(--tiny-font-size);
}

.about__description {
  margin-bottom: 2rem;
  line-height: 1.7;
}

/*=============== SKILLS ===============*/
.skills__container {
  row-gap: 2rem;
  padding-top: 1rem;
}

.skills__content {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--card-border);
  padding: 1.5rem;
  border-radius: 1.25rem;
}

.skills__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--first-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.skills__box {
  display: flex;
  justify-content: center;
  column-gap: 2.5rem;
}

.skills__group {
  display: grid;
  align-content: flex-start;
  row-gap: 1rem;
}

.skills__data {
  display: flex;
  column-gap: 0.5rem;
}

.skills .bxs-badge-check {
  font-size: 1rem;
  color: var(--first-color);
}

.skills__name {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  line-height: 18px;
}

.skills__level {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/*=============== SERVICES ===============*/
.services__container {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
}

.services__card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--card-border);
  padding: 3rem 1.5rem 1.5rem;
  border-radius: 1.25rem;
}

.services__title {
  font-size: var(--h3-font-size);
  margin-bottom: 2.5rem;
}

.services__button {
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
}

.services__icon {
  font-size: 1rem;
  transition: 0.3s;
}

.services__button:hover .services__icon {
  transform: translateX(0.25rem);
}

.services__modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.8);
  padding: 2rem 1rem;
  display: grid;
  place-items: center;
  transition: 0.4s;
  z-index: var(--z-modal);
  visibility: hidden;
  opacity: 0;
}

.services__modal-content {
  background-color: var(--body-color);
  padding: 4.5rem 1.5rem 2.5rem;
  border-radius: 1.5rem;
  position: relative;
  border: 1px solid var(--card-border);
}

.services__modal-title,
.services__modal-description {
  text-align: center;
}

.services__modal-title {
  font-size: var(--h3-font-size);
  color: var(--first-color);
  margin-bottom: 1rem;
}

.services__modal-description {
  font-size: var(--small-font-size);
  margin-bottom: 2rem;
}

.services__modal-list {
  display: grid;
  row-gap: 0.75rem;
}

.services__modal-item {
  display: flex;
  align-items: flex-start;
  column-gap: 0.5rem;
}

.services__modal-icon {
  font-size: 1.5rem;
  color: var(--first-color);
}

.services__modal-info {
  font-size: var(--small-font-size);
}

.services__modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--first-color);
  cursor: pointer;
}

.active-modal {
  visibility: visible;
  opacity: 1;
}

/*=============== WORK ===============*/
.work__container {
  padding-top: 1rem;
}

.work__filters {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.75rem;
  margin-bottom: 2rem;
}

.work__item {
  cursor: pointer;
  color: var(--title-color);
  padding: 0.25rem 0.75rem;
  font-weight: var(--font-medium);
  border-radius: 0.5rem;
}

.active-work {
  background-color: var(--first-color);
  color: #020617;
}

.work__card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--card-border);
  padding: 1.5rem;
  border-radius: 1.2rem;
  text-align: center;
  transition: 0.25s;
}

.work__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.18);
}

.work__img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 1rem;
  display: block;
}

.work__title {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 0.5rem;
}

.work__button {
  width: max-content;
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  column-gap: 0.25rem;
  cursor: pointer;
  margin: 0 auto;
}

.work__icon {
  font-size: 1rem;
  transition: 0.3s;
}

.work__button:hover .work__icon {
  transform: translateX(0.25rem);
}

/*=============== TESTIMONIAL ===============*/
.testimonial__card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--card-border);
  padding: 1.25rem 1.5rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
}

.testimonial__img {
  width: 60px;
  border-radius: 3rem;
  margin-bottom: 1rem;
}

.testimonial__name {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  margin-bottom: 0.25rem;
}

.testimonial__description {
  font-size: var(--small-font-size);
}

.swiper-pagination-bullet {
  background-color: var(--text-color-light);
}

.swiper-pagination-bullet-active {
  background-color: var(--first-color);
}

/*=============== CONTACT ===============*/
.contact__container {
  row-gap: 3rem;
  padding-bottom: 3rem;
}

.contact__title {
  text-align: center;
  font-size: var(--h3-font-size);
  margin-bottom: 1.5rem;
}

.contact__info {
  display: grid;
  gap: 1rem;
}

.contact__card {
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--card-border);
  padding: 2rem 1rem;
  border-radius: 0.75rem;
  text-align: center;
}

.contact__card-icon {
  font-size: 2rem;
  color: var(--first-color);
  margin-bottom: 0.25rem;
}

.contact__card-title,
.contact__card-data {
  font-size: var(--small-font-size);
}

.contact__card-title {
  font-weight: var(--font-medium);
}

.contact__card-data {
  display: block;
  margin-bottom: 0.75rem;
}

.contact__button {
  color: var(--first-color);
  font-size: var(--small-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.25rem;
}

.contact__button-icon {
  font-size: 1rem;
  transition: 0.3s;
}

.contact__button:hover .contact__button-icon {
  transform: translateX(0.25rem);
}

.contact__form-div {
  position: relative;
  margin-bottom: 2rem;
  height: 4rem;
}

.contact__form-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--text-color-light);
  background: transparent;
  border-radius: 0.75rem;
  padding: 1.5rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  outline: none;
  z-index: 1;
}

.contact__form-tag {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  font-size: var(--smaller-font-size);
  padding: 0.25rem;
  background-color: var(--body-color);
  z-index: 10;
}

.contact__form-area {
  height: 17rem;
}

.contact__form-area textarea {
  resize: none;
}

/*=============== FOOTER ===============*/
.footer {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
}

.footer__container {
  padding: 2rem 0 6rem;
}

.footer__title,
.footer__link {
  color: #020617;
}

.footer__title {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.25rem;
}

.footer__social-link {
  background-color: #020617;
  color: var(--first-color);
  padding: 0.35rem;
  border-radius: 0.25rem;
  font-size: 1rem;
  display: inline-flex;
}

.footer__copy {
  display: block;
  margin-top: 4.5rem;
  color: #020617;
  text-align: center;
  font-size: var(--smaller-font-size);
  margin-bottom: 2rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--container-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--first-color);
  border-radius: 0.5rem;
}

/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 320px) {
  .nav__menu {
    padding: 1rem 1.5rem;
  }

  .home__button {
    flex-direction: column;
  }

  .home__img {
    width: 180px;
    height: 180px;
  }

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

  .services__container {
    grid-template-columns: 145px;
    justify-content: center;
  }
}

@media screen and (min-width: 435px) {
  .work__container {
    justify-content: center;
    grid-template-columns: repeat(2, max-content);
  }
}

@media screen and (min-width: 630px) {
  .nav__menu {
    width: 328px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .about__info {
    grid-template-columns: repeat(3, 180px);
    justify-content: center;
  }

  .about__description {
    padding: 1rem 5rem;
    width: 600px;
    margin: 0 auto 2rem auto;
  }

  .skills__container {
    justify-content: center;
  }

  .skills__content {
    padding: 4rem 8.8rem;
  }

  .services__container {
    grid-template-columns: repeat(3, 177px);
    justify-content: center;
  }

  .work__container {
    justify-content: center;
    grid-template-columns: repeat(2, max-content);
  }

  .testimonial__container {
    width: 600px;
    margin: auto;
  }

  .contact__container {
    display: grid;
    grid-template-columns: 220px 340px;
    column-gap: 2rem;
    justify-content: center;
  }

  .contact__form {
    width: 340px;
  }
}

@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 6.5rem 0 1rem;
  }

  .section__title {
    margin-bottom: 3.5rem;
  }

  .nav {
    height: calc(var(--header-height) + 1rem);
  }

  .home__img {
    width: 260px;
    height: 350px;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    column-gap: 4rem;
  }

.about__img {
  width: 320px;
  height: 500px;
  object-fit: cover;
  object-position: top;
  border-radius: 1.5rem;
}
  .about__data {
    text-align: initial;
  }

  .about__info {
    justify-content: initial;
    gap: 2rem;
  }

  .about__description {
    padding: 0 4rem 0 0;
    margin-bottom: 2.5rem;
  }

  .skills__container {
    grid-template-columns: repeat(2, 460px);
    column-gap: 3rem;
  }

  .services__container {
    grid-template-columns: repeat(3, 300px);
    column-gap: 2rem;
  }

  .work__container {
    grid-template-columns: repeat(3, max-content);
    gap: 3rem;
  }

  .testimonial__container {
    width: 970px;
  }

  .contact__container {
    grid-template-columns: repeat(2, 430px);
    column-gap: 6rem;
  }

  .contact__form {
    width: 430px;
  }
}
EOF

/* ===== CLEAN ABOUT SECTION LAYOUT ===== */
.about__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 4rem;
}

.about__img {
  width: 300px !important;
  max-height: 500px;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 2rem;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.18);
}

.about__data {
  text-align: left !important;
}

.about__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.about__box {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__description {
  max-width: 680px;
  padding: 0 !important;
  margin: 0 0 2rem 0 !important;
  line-height: 1.8;
  font-size: 1rem;
}

.about .button {
  margin-top: 0.5rem;
}

@media screen and (max-width: 850px) {
  .about__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about__data {
    text-align: center !important;
  }

  .about__img {
    margin: 0 auto;
  }

  .about__info {
    grid-template-columns: 1fr;
  }
}

/* ===== CLEAN ABOUT SECTION LAYOUT ===== */
.about__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 4rem;
}

.about__img {
  width: 260px !important;
  max-height: 500px;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 2rem;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.18);
}

.about__data {
  text-align: left !important;
}

.about__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.about__box {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__description {
  max-width: 680px;
  padding: 0 !important;
  margin: 0 0 2rem 0 !important;
  line-height: 1.8;
  font-size: 1rem;
}

.about .button {
  margin-top: 0.5rem;
}

@media screen and (max-width: 850px) {
  .about__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about__data {
    text-align: center !important;
  }

  .about__img {
    margin: 0 auto;
  }

  .about__info {
    grid-template-columns: 1fr;
  }
}

/* ===== CLEAN ABOUT SECTION LAYOUT ===== */
.about__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 4rem;
}

.about__img {
  width: 300px !important;
  max-height: 500px;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 2rem;
  padding: 0;
  background: transparent;
  border: 2px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 0 40px rgba(56, 189, 248, 0.18);
}

.about__data {
  text-align: left !important;
}

.about__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.about__box {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__description {
  max-width: 680px;
  padding: 0 !important;
  margin: 0 0 2rem 0 !important;
  line-height: 1.8;
  font-size: 1rem;
}

.about .button {
  margin-top: 0.5rem;
}

@media screen and (max-width: 850px) {
  .about__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .about__data {
    text-align: center !important;
  }

  .about__img {
    margin: 0 auto;
  }

  .about__info {
    grid-template-columns: 1fr;
  }
}
