/* ======================== GOOGLE FONTS ========================= */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/* ======================== GOOGLE FONTS ========================= */

/* ======================== VARIABLES CSS ======================== */
:root {
  --header-height: 3rem;

  /* ======================= COLORS ============================== */
  --hue-color: 232;

  /* ======================= HSL COLOR MODE ====================== */
  --first-color: hsl(var(--hue-color), 69%, 61%);
  --first-color-second: hsl(var(--hue-color), 69%, 61%);
  --first-color-alt: hsl(var(--hue-color), 57%, 53%);
  --first-color-lighter: hsl(var(--hue-color), 92%, 85%);
  --title-color: hsl(var(--hue-color), 100%, 58.8%);
  --text-color: hsl(var(--hue-color), 8%, 45%);
  --text-color-light: hsl(var(--hue-color), 8%, 65%);
  --input-color: hsl(var(--hue-color), 70%, 96%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --container-color: #fff;
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 80%);
  --text-black: #000;
  
  /* ======================= HSL COLOR MODE ====================== */
  /* ======================= COLORS ============================== */

  /* ========================= FONTS AND TYPOGRAPHY ================= */
  --body-font: "Poppins", sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --smaller-font-size: 0.75rem;
  /* ========================= FONTS AND TYPOGRAPHY ================= */

  /* ========================= FONT WEIGHT ========================== */
  --font-medium: 500;
  --font-semi-bold: 600;
  /* ========================= FONT WEIGHT ========================== */

  /* ========================= MARGANES BUTTON ====================== */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;

  /* ========================= MARGANES BUTTON ====================== */

  /* ============================= z Index ========================== */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  /* ============================= z Index ========================== */
}
/* ======================== VARIABLES CSS ======================== */

/* font size for large devices */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.813rem;
  }
}
/* font size for large devices */

/* =======================TOMBOL DARK/LIGHT ===================== */
.nav__btns {
  display: flex;
  align-items: center;
}

.change-theme {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1);
  cursor: pointer;
}

.change-theme:hover {
  color: var(--first-color);
}
/* =======================TOMBOL DARK/LIGHT ===================== */

/* ======================= BASE =========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0 0 var(--header-height) 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  /* color: var(--text-color); */
}

h1,
h2,
h3,
h4 {
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}
/* ======================= BASE =========================== */

/* ====================== REUSABLE CSS LAYOUT ============= */
.section {
  padding: 2rem 0 4rem;
}


.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  margin-bottom: var(--mb-3);
}

.section__subtitle,
.section__subtitle {
  text-align: center;
}
/* ====================== REUSABLE CSS LAYOUT ============= */

/* ====================== LAYOUT ======================== */
.container {
  max-width: 768px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/* Header sticky */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff; /* Bisa diganti sesuai tema */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Layout nav container */
.nav.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--container-padding);
}

/* Logo */
.nav__logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

/* Navigation menu */
.nav__menu {
  display: flex;
}

.nav__list {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__link:hover,
.nav__link.active-link {
  color: #007bff;
}
.nav__toggle {
  display:none;
}


/* ====================== NAV =========================== */

/* ====================== HOME ========================== */





.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* ini overlay hitam semi-transparan */
  z-index: 0;
}
.home__container {
  gap: 1rem;
}

.home__content {
  grid-template-columns: 0.5fr 3fr;
  padding-top: 3.5rem;
  align-items: center;
}

.home__data {
  grid-column: 1/3;
}

.home__title {
  font-size: var(--big-font-size);
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
  margin-bottom: -20px;
}

.home__subtitle {
  font-style: normal;

  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 1;
  font-weight: var(--smaller-font-size);
  margin-bottom: 0;
  text-decoration: underline;
}

.home__description {
  margin-bottom: var(--mb-2);
}

.home__scroll {
  display: none;
}

.home__scroll-button {
  color: var(--first-color);
  transition: 0.3s;
}

.home__scroll-button:hover {
  transform: translateY(0.25rem);
}

.home__scroll-mouse {
  font-size: 2rem;
}

.home__scroll-name {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: var(--font-medium);
  margin-right: var(--mb-0-25);
}

.home__scroll-arrow {
  font-size: 1.25rem;
}
/* ====================== HOME ========================== */

/* ====================== BUTTONS =========================== */
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button__icon {
  font-size: 1.25rem;
  margin-left: var(--mb-0-5);
  transition: 0.3s;
}

.button--white {
  background-color: #fff;
  color: var(--first-color);
}

.button--white:hover {
  background-color: #fff;
}

.button--flex {
  display: inline-flex;
  align-items: center;
}
.button__small {
  padding: 0.75rem 1rem;
}

.button--link {
  padding: 0;
  background-color: transparent;
  color: var(--first-color);
}

.button--link:hover {
  background-color: transparent;
  color: var(--first-color);
}
/* ====================== BUTTONS =========================== */

/* ====================== ABOUT ========================= */

.about__container {
  height: auto;
  width: 100%;
  max-width: 1340px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 1rem;
  padding: 15rem 5rem;

}

.about__img {
  /* margin-bottom: 22s2.5rem; */
  width: 100%;         /* biar ngikutin ukuran kontainer */
  max-width: 800px;    /* batas maksimal lebar gambar */
  height: auto;        /* biar rasio tetap proporsional */
  height: auto;
  border-radius: 0.5rem;
  border: 2px solid black;
  display:flex;
  justify-content: center;
  align-items: center;

  align-self: center; /* atau center kalau mau tengah */
}

.about__text {
  flex: 1;
}

.section__title {
  font-size: 2.5rem;
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.2rem;
  text-align: left;
  justify-content: left;
  color: black !important ;
}

.about__description {
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: justify;
  color: var(--text-black);
}





/* ====================== ABOUT ========================= */

/* ===================== SKILLS ======================== */


.benefits::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 255, 0.7); /* biru dengan opacity 50% */
  z-index: 0;
}

.benefits * {
  position: relative; /* pastikan semua isi tetap di atas overlay */
  z-index: 1;
}

.sectionn__title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: var(--container-color);
  margin-bottom: 0.5rem;
}

.section__underline {
  width: 60px;
  height: 4px;
  background-color: var(--container-color); /* warna garis bawah */
  margin: 0 auto 2rem;
  border-radius: 2px;
}

.benefits__list {
  list-style: none;
  padding: 0;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 1rem;
  grid-auto-rows: minmax(100px, auto); /* tinggi minimum tiap baris 100px */
  text-align: left;
}


.benefits__list li {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  color: black;
}

.benefits__list i {
  color: #008000;
  font-size: 3rem;
}

/* ===================== SKILLS ======================== */


/* ========================PORTFOLIO ====================== */

.portfolio {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.portfolio__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.5rem;
}

.section__underline {
  width: 60px;
  height: 4px;
  background-color: #007bff;
  margin: 0 auto 2.5rem;
  border-radius: 2px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.portfolio__item {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio__item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.portfolio__item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.portfolio__caption {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 1rem 1rem 0.5rem;
  color: #333;
}

.portfolio__desc {
  font-size: 0.95rem;
  margin: 0 1rem 1rem;
  color: #666;
}


/* ========================PORTFOLIO ====================== */

/* Background Gradient */
#program {
  background: linear-gradient(135deg, #f0f8ff, #d1d1f7);
}

/* Card Hover Animation */
.event-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* Modal Animation */
.modal {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.modal.show {
  display: flex !important;
  opacity: 1;
  pointer-events: auto;
}


 #kolaborasi {
    padding: 50px 20px;
    background: #f0f4f8;
    font-family: 'Poppins', sans-serif;
  }

  #kolaborasi h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 2.5rem;
    color: #2c3e50;
  }

  /* Grid kolaborasi */
  .kolab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Card styling */
  .kolab-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgb(44 62 80 / 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .kolab-card:hover {
    transform: translateY(-8px);
  }

  .kolab-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
  }

  .kolab-info {
    padding: 20px;
    text-align: center;
  }

  .kolab-info h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #34495e;
  }

  .kolab-info p {
    font-size: 0.95rem;
    color: #6c7a89;
    line-height: 1.4;
  }

  /* Overlay modal */
  .overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }

  .overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* Modal content */
  .modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.2);
    position: relative;
    text-align: center;
    animation: fadeInScale 0.3s ease forwards;
  }

  @keyframes fadeInScale {
    0% {
      opacity: 0;
      transform: scale(0.7);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  .modal-content img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
  }

  .modal-content p {
    font-size: 1rem;
    color: #566573;
    line-height: 1.5;
  }

  /* Close button */
  .close-btn {
    position: absolute;
    top: 15px; right: 15px;
    background-color: white;
    border: none;
    color: rgb(0, 0, 0);
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.25s ease;
  }


/* =========================== Kontak ============================= */
.contact-section {
  padding: 3rem 1rem;
  background-color: #f9f9f9; /* Warna background bisa diubah sesuai selera */
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #25D366; /* Hijau WhatsApp */
  color: white;
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  border-radius: 12px; /* Border radius buat rounded corner */
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 6px rgba(37, 211, 102, 0.4);
  transition: background-color 0.3s ease;
}

.btn-wa i {
  font-size: 1.8rem;
}

.btn-wa:hover {
  background-color: #1ebe57; /* Sedikit lebih gelap saat hover */
}

/* =========================== Kontak ============================= */

/* ============================= FOOTER ============================= */
/* Container dan background footer */
.footer__bg {
  background-color: var(--first-color);
  padding: 2.5rem 1rem;
  color: var(--title-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

/* Footer container grid */
.footer__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Judul dan subtitle */
.footer__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #fff;
}

.footer__subtitle {
  font-size: 1rem;
  color: #fff;
}

/* List link */
.footer__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  color: #fff;
}

/* Link style */
.footer__link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}



/* Styling khusus untuk icon IG */
.footer__social-link i {
  font-size: 1.5rem;
  color: #fff; /* warna Instagram pink */
  transition: color 0.3s ease;
}



/* Copyright */
.footer__copy {
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 2rem;
  user-select: text
}

.footer__address {
  margin-top: 1.5rem;
  color: #fff;
}

.footer__address h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.footer__address p {
  font-size: 1rem;
  line-height: 1.4;
  max-width: 300px;
}


/* Responsive */
@media screen and (max-width: 600px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

/* ============================= FOOTER ============================= */

/* ===================== RESPONSIVE MEDIA QUERIES ===================== */

/* Default: Large Devices (>= 1025px) */
:root {
  --container-padding: 5rem;
  --grid-gap: 2.5rem;
  --section-padding-vertical: 6rem;
  --section-padding-horizontal: 2rem;
}

/* Large screens (>= 1025px) */
@media (min-width: 1025px) {
.container {
    padding: 0 var(--container-padding);
  }
  .home__title {
    font-size:2.6rem;
  }
  .about__container,
  .portfolio__grid,
  .benefits__list {
    gap: var(--grid-gap);
  }



  .portfolio__grid,
  .benefits__list {
    grid-template-columns: repeat(3, 1fr);
  }

 .contact-title {
  display: flex;
  flex-direction: column; /* biar vertikal */
  align-items: center;     /* center secara horizontal */
  text-align: center;
  gap: 1rem;               /* jarak antara h2 dan tombol */
  margin-top: 5rem;
}

.contact-title h2 {
  margin: 0;
}

.btn-wa {
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s;
}

.btn-wa:hover {
  background-color: #1ebe5d;
}


  section {
    padding: var(--section-padding-vertical) var(--section-padding-horizontal);
  }
}

@media screen and (min-width: 1025px) {
  .portfolio__grid {
    grid-template-columns: 1fr 1fr 1fr; /* tetap 3 kolom */
  }
}

@media screen and (max-width: 768px) {
  .portfolio__grid {
    grid-template-columns: 1fr; /* stack satu-satu */
  }
}
/* Medium screens (769px – 1024px): scale down gap and padding */
@media (min-width: 769px) and (max-width: 1024px) {
  :root {
    --container-padding: 4rem;
    --grid-gap: 2rem;
    --section-padding-vertical: 5rem;
  }

    .portfolio__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  
  .container {
    padding: 0 var(--container-padding);
  }


}
@media screen and (min-width: 769px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
  }

  .nav__list {
    display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 2rem;
  }
}


/* Tablet (481px – 768px): two-column grid */
@media (min-width: 481px) and (max-width: 768px) {
  :root {
    --container-padding: 3rem;
    --grid-gap: 1.5rem;
    --section-padding-vertical: 4rem;
  }
  .container {
    padding: 0 var(--container-padding);
  }
  .uil .uil-bars {
    overflow:hidden;
  }
   .about__img {
  object-fit: contain;
  }
  .nav__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 1rem;
  z-index: 1000;
}

.nav__menu.show {
  max-height: 500px; /* Sesuaikan jika item banyak */
  padding: 1rem;
}

/* Tambahin ini di CSS kamu */
@media screen and (max-width: 768px) {
  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fff; /* atur sesuai warna kamu */
    display: none;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
  }

  .nav__menu.show-menu {
    display: flex;
  }

  .nav__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


@media (max-width: 480px) {
  .nav__toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: column;
    gap: 1rem;
  }
}
  
  .portfolio__grid,
  .benefits__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (<= 480px): single-column grid */
@media (max-width: 480px) {
  :root {
    --container-padding: 1.5rem;
    --grid-gap: 1rem;
    --section-padding-vertical: 3rem;
  }

.nav__menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0 1rem;
  z-index: 1000;
}

.nav__menu.show {
  max-height: 500px; /* Sesuaikan jika item banyak */
  padding: 1rem;
}

@media (max-width: 480px) {
  .nav__toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
  }

  .nav__list {
    flex-direction: column;
    gap: 1rem;
  }
}

}
  .about__container {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap; /* biar responsif di layar kecil */
}

.footer__address{
  display: flex;
  justify-content: center;
}

.about__img {
  width: 100%;
  /* height: 500px; tinggi tetap */
  object-fit: cover; /* crop bagian yang berlebih agar tetap proporsional */
  border-radius: 10px;
  margin-bottom: rem;
}

.about__text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section__title {
  display:flex;
  font-size: 2rem;
  font-weight: bold;
  justify-content: center;
  align-items:center
}

.about__description {
  display:flex;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.6;
}
  .benefits__list {
  display: grid;
  grid-template-columns: 1fr; /* 1 kolom */
  gap: 1rem;
  max-width: 700px;
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  text-align: left;
}

.benefits__list li {
  background: rgb(255, 255, 255);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefits__list li i {
  color: #00ffcc;
  font-size: 1.2rem;
}

  .container {
    padding: 0 var(--container-padding);
  }
  .portfolio__grid,
  .benefits__list {
    grid-template-columns: 1fr;
  }
