@charset "UTF-8";
/* ===== MOBILE ===== */
#header {
  z-index: 9998;
  isolation: isolate;
  background-color: #FFFFFF;
  align-items: center;
  padding: 25px 40px;
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}
#header .header-logo img {
  width: 42px;
  height: auto;
  margin-top: -5px;
}
#header .header-logo {
  display: flex;
  align-items: center;
}
#header .header-logo .logo-wrapper {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
#header .header-logo img {
  width: 42px;
  height: auto;
  margin-top: -5px;
  display: block;
  flex-shrink: 0;
}
#header .header-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: "Bricolage Grotesque", sans-serif;
  margin-top: 0;
  background: linear-gradient(135deg, #5CE1E6, #FFDE59, #FF8D59, #FF66C4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-18px);
  filter: blur(6px);
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease, visibility 0.35s ease;
}
#header .header-logo .logo-text span {
  display: block;
  text-decoration: none;
}
#header .header-logo .logo-wrapper:hover .logo-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  filter: blur(0);
}
#header .header-logo .logo-wrapper:hover,
#header .header-logo .logo-wrapper:focus,
#header .header-logo .logo-wrapper:active {
  text-decoration: none;
}
#header .header-connect {
  display: none;
}
#header .header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: #FF66C4;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1002;
  margin-left: auto;
}
#header .header-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 3px;
  transition: all 0.4s ease;
}
#header .header-connect {
  display: none;
}
#header .header-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: #FF66C4;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1002;
  margin-left: auto;
}
#header .header-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  border-radius: 3px;
  transition: all 0.4s ease;
}
#header .header-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 102, 196, 0.95);
  z-index: 1001;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.4s ease;
}
#header .header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
#header .header-nav ul li {
  margin: 20px 0;
}
#header .header-nav ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}
#header .header-nav ul li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #5CE1E6;
  transition: width 0.3s ease;
}
#header .header-nav ul li a:hover {
  color: #5CE1E6;
}
#header .header-nav ul li a:hover::after {
  width: 60%;
}
#header .header-nav ul li a.active {
  color: #5CE1E6;
}
#header .header-nav ul li a.active::after {
  width: 60%;
}
#header .header-nav {
  /* Show Connect link in mobile overlay */
}
#header .header-nav .mobile-connect {
  display: block;
}
#header #menu-toggle:checked + .header-hamburger {
  background-color: #FF66C4;
  border: 2px solid #FFFFFF;
}
#header #menu-toggle:checked + .header-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 6px);
  transform-origin: center;
}
#header #menu-toggle:checked + .header-hamburger span:nth-child(2) {
  opacity: 0;
}
#header #menu-toggle:checked + .header-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  transform-origin: center;
}
#header #menu-toggle:checked + .header-hamburger + .header-nav {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

/* ===== TABLET ===== */
@media (min-width: 768px) {
  #header {
    height: 110px;
    width: 100%;
  }
  #header .header-hamburger {
    display: none;
  }
  #header .header-nav {
    display: block;
    position: static;
    height: auto;
    width: auto;
    background: none;
    opacity: 1;
    transform: none;
    margin-left: -30px;
  }
  #header .header-nav ul {
    display: flex;
    gap: 28px;
  }
  #header .header-nav ul .mobile-connect {
    display: none;
  }
  #header .header-nav ul li a {
    color: #2E989C;
    font-size: 18px;
    font-weight: 550;
    position: relative;
  }
  #header .header-nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #5CE1E6;
    transition: width 0.3s ease;
  }
  #header .header-nav ul li a:hover {
    color: #5CE1E6;
  }
  #header .header-nav ul li a:hover::after {
    width: 60%;
  }
  #header .header-nav ul li a.active {
    color: #5CE1E6;
  }
  #header .header-nav ul li a.active::after {
    width: 60%;
  }
  #header .header-connect {
    display: block;
    margin-left: -50px;
  }
  #header .header-connect .btn-connect {
    background-color: #FF66C4;
    color: #FFFFFF;
    border: 2px solid #FF66C4;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 17px;
    font-weight: 550;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  #header .header-connect .btn-connect.active, #header .header-connect .btn-connect:hover {
    background-color: #FFFFFF;
    border-color: #FF66C4;
    color: #FF66C4;
  }
}
/* ===== DESKTOP ===== */
@media (min-width: 1200px) {
  #header {
    height: 110px;
  }
  #header .header-hamburger {
    display: none;
  }
  #header .header-nav ul {
    gap: 40px;
  }
  #header .header-nav ul li a {
    font-size: 20px;
  }
  #header .header-nav ul .mobile-connect {
    display: none;
  }
  #header .header-connect .btn-connect {
    padding: 12px 26px;
    font-size: 19px;
  }
}
/* FOOTER SECTION */
#footer {
  background-color: #FFFFFF;
  color: #5CE1E6;
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 50px;
  padding-bottom: 30px;
  /* --- Footer Top --- */
}
#footer .footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}
#footer .footer-top .footer-nav ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-nav ul a {
  color: #2E989C;
  font-weight: 550;
  font-size: 17px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  /* --- Hover line effect (like header nav) --- */
}
#footer .footer-top .footer-nav ul a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #5CE1E6;
  transition: width 0.3s ease;
}
#footer .footer-top .footer-nav ul a:hover {
  color: #5CE1E6;
}
#footer .footer-top .footer-nav ul a:hover::after {
  width: 60%;
}
#footer .footer-top .footer-nav ul a.active {
  color: #5CE1E6;
}
#footer .footer-top .footer-nav ul a.active::after {
  width: 60%;
}
#footer .footer-top .footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
}
#footer .footer-top .footer-social a {
  color: #2E989C;
  font-size: 22px;
  transition: color 0.3s ease;
}
#footer .footer-top .footer-social a:hover {
  color: #5CE1E6;
}
#footer {
  /* --- Call To Action --- */
}
#footer .footer-cta {
  margin-bottom: 0px;
}
#footer .footer-cta h2 {
  font-weight: 800;
  font-size: 28px;
  color: #5CE1E6;
  margin-bottom: 16px;
  line-height: 1.3;
}
#footer .footer-cta h3 {
  font-weight: 800;
  font-size: 36px;
  color: #5CE1E6;
  margin-bottom: 20px;
  line-height: 1.3;
}
#footer .footer-cta p {
  color: #FF8D59;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 auto 30px;
  max-width: 600px;
}
#footer .footer-cta .btn-connect {
  display: inline-block;
  background-color: #FF66C4;
  color: #FFFFFF;
  border: 2px solid #FF66C4;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 17px;
  font-weight: 550;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#footer .footer-cta .btn-connect.active, #footer .footer-cta .btn-connect:hover {
  background-color: #FFFFFF;
  border-color: #FF66C4;
  color: #FF66C4;
}
#footer {
  /* --- Footer Bottom --- */
}
#footer .footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#footer .footer-bottom p {
  font-size: 14px;
  font-weight: 450;
  color: #2E989C;
  opacity: 0.9;
  margin: 0;
}
#footer .footer-bottom a {
  color: #5CE1E6;
  text-decoration: none;
}
#footer {
  /* --- Desktop Layout --- */
}
@media (min-width: 768px) {
  #footer {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 70px;
  }
  #footer .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: -30px;
  }
  #footer .footer-top .footer-nav ul {
    gap: 40px;
  }
  #footer .footer-top .footer-nav ul a {
    font-size: 20px;
  }
  #footer .footer-top .footer-social a {
    font-size: 28px;
  }
  #footer .footer-cta h2 {
    font-size: 40px;
  }
  #footer .footer-cta p {
    font-size: 18px;
  }
  #footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ===== HERO SECTION ===== */
#hero {
  text-align: center;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
  /* Tagline */
}
#hero .hero-tagline {
  color: #2E989C;
  font-size: 30px;
  font-weight: 600;
  margin-top: -40px;
}
#hero .hero-second-line {
  color: #FF8D59;
  font-size: 24px;
  font-weight: 550;
}
#hero .hero-banner {
  margin-bottom: 100px;
  margin-top: 50px;
  margin-left: 70px;
}
#hero .hero-banner .banner-bg {
  background-color: #5CE1E6;
  transform: rotate(-8deg);
  padding: 20px 40px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 95%;
}
#hero .hero-banner .banner-title {
  color: #FFFFFF;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 250px;
  margin-left: -10px;
}
#hero .hero-banner .hero-avatar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 0 0 6px #FFFFFF;
  margin-top: -40px;
}
#hero .hero-banner .banner-label {
  position: absolute;
  bottom: -30px;
  right: -10px;
  background-color: #FFDE59;
  padding: 10px 20px;
  border-radius: 4px;
  transform: rotate(8deg);
}
#hero .hero-banner .banner-label p {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
}
#hero {
  /* Status Button */
}
#hero .hero-status {
  display: flex;
  justify-content: center;
}
#hero .hero-status .status-btn {
  background-color: #FF66C4;
  color: #FFFFFF;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border: 2px solid #FF66C4;
}
#hero .hero-status .status-btn .dot {
  width: 9px;
  height: 9px;
  background-color: #34eb52;
  border-radius: 50%;
  position: relative;
  animation: triplePulse 2.2s ease-in-out infinite;
}
#hero .hero-status .status-btn {
  /* HOVER */
}
#hero .hero-status .status-btn.active, #hero .hero-status .status-btn:hover {
  background-color: #D8FEFF;
  border-color: #FF66C4;
  color: #FF66C4;
}
#hero {
  /* LED Glow Animation */
}
@keyframes triplePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 5px rgba(52, 235, 82, 0.6), 0 0 10px rgba(52, 235, 82, 0.4), inset 0 0 3px rgba(255, 255, 255, 0.4);
  }
  33% {
    transform: scale(1.25);
    box-shadow: 0 0 10px rgba(52, 235, 82, 0.9), 0 0 18px rgba(52, 235, 82, 0.7), inset 0 0 5px rgba(255, 255, 255, 0.7);
  }
  66% {
    transform: scale(1.45);
    box-shadow: 0 0 14px rgb(52, 235, 82), 0 0 26px rgba(52, 235, 82, 0.95), inset 0 0 7px rgba(255, 255, 255, 0.9);
  }
  100% {
    transform: scale(1.55);
    box-shadow: 0 0 18px rgba(52, 235, 82, 0.6), 0 0 34px rgba(52, 235, 82, 0.4), inset 0 0 9px rgba(255, 255, 255, 0.4);
  }
}

/* ===== TABLET ===== */
@media (min-width: 768px) {
  #hero {
    padding: 80px 0px;
    /* Tagline */
  }
  #hero .hero-tagline {
    font-size: 50px;
  }
  #hero .hero-second-line {
    font-size: 28px;
    margin-bottom: 15px;
  }
  #hero .hero-banner .banner-bg {
    background-color: #5CE1E6;
    transform: rotate(-8deg);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 140px;
  }
  #hero .hero-banner .banner-title {
    color: #FFFFFF;
    font-size: 110px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: -70px;
  }
  #hero .hero-banner .hero-avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 6px #FFFFFF;
    margin-left: 87px;
    margin-top: 4px;
  }
  #hero .hero-banner .banner-label {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: #FFDE59;
    padding: 10px 20px;
    border-radius: 4px;
    transform: rotate(8deg);
  }
  #hero .hero-banner .banner-label p {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
  }
}
.status-btn {
  background-color: #FF66C4;
  color: #FFFFFF;
  padding: 10px 28px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
}

/* ===== DESKTOP ===== */
@media (min-width: 1200px) {
  #hero {
    padding: 80px 0px;
  }
  #hero .hero-banner .banner-title {
    color: #FFFFFF;
    font-size: 150px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: -100px;
  }
  #hero .hero-banner .hero-avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 6px #FFFFFF;
    margin-left: 120px;
    margin-top: 5px;
  }
  #hero .hero-banner .banner-label {
    position: absolute;
    bottom: -30px;
    right: -40px;
    background-color: #FFDE59;
    padding: 10px 20px;
    border-radius: 4px;
    transform: rotate(8deg);
  }
  #hero .hero-banner .banner-label p {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
  }
}
/* FEATURED WORKS */
#featured-works {
  width: 100%;
  background-color: #D8FEFF;
  text-align: center;
  padding: 50px 60px 60px;
}
#featured-works #featured-heading {
  font-size: 30px;
  font-weight: 700;
  color: #2E989C;
  margin-bottom: 40px;
  white-space: nowrap;
  text-align: left;
}
#featured-works {
  /* WORK CARD */
}
#featured-works .work-card {
  border: 2px solid transparent;
  border-radius: 14px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 28px;
  padding: 30px;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, border-color 0.35s ease;
  /* HOVER TINT */
}
#featured-works .work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--tint-strong) 0%, var(--tint) 45%, rgba(255, 255, 255, 0.92) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
  pointer-events: none;
}
#featured-works .work-card {
  /* INNER HIGHLIGHT */
}
#featured-works .work-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 0;
  pointer-events: none;
}
#featured-works .work-card {
  /* ARROW */
}
#featured-works .work-card .work-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 10;
  background: color-mix(in srgb, var(--accent) 10%, white);
  border: 1.5px solid color-mix(in srgb, var(--accent) 65%, white);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
#featured-works .work-card .work-arrow i {
  font-size: 14px;
  color: var(--accent);
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
}
#featured-works .work-card {
  /* CARD LAYOUT */
}
#featured-works .work-card article {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 1;
}
#featured-works .work-card img {
  max-width: 250px;
  margin: 0 auto 14px;
  border-radius: 10px;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
#featured-works .work-card {
  /* INFO */
}
#featured-works .work-card .work-info {
  width: 100%;
  padding: 14px 14px 12px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease;
}
#featured-works .work-card .work-info h4 {
  font-size: 22px;
  font-weight: 800;
  color: #2E989C;
  margin: 0 0 6px 0;
  text-align: center;
  transition: letter-spacing 0.25s ease, transform 0.25s ease;
}
#featured-works .work-card .work-info p {
  font-size: 16px;
  color: #2E989C;
  opacity: 0.8;
  margin: 0 0 10px 0;
  transition: opacity 0.25s ease;
}
#featured-works .work-card .work-tags span {
  font-size: 14px;
  color: #2E989C;
  opacity: 0.6;
  margin-right: 6px;
  position: relative;
  transition: opacity 0.25s ease;
}
#featured-works .work-card .work-tags span:not(:last-child)::after {
  content: "|";
  margin-left: 6px;
  opacity: 0.4;
}
#featured-works .work-card {
  /* HOVER / FOCUS */
}
#featured-works .work-card:hover, #featured-works .work-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  background-color: color-mix(in srgb, var(--accent) 3%, white);
}
#featured-works .work-card:hover::before, #featured-works .work-card:focus-visible::before {
  opacity: 1;
}
#featured-works .work-card:hover::after, #featured-works .work-card:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}
#featured-works .work-card:hover img, #featured-works .work-card:focus-visible img {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}
#featured-works .work-card:hover .work-info, #featured-works .work-card:focus-visible .work-info {
  transform: translateX(8px);
}
#featured-works .work-card:hover .work-info h4, #featured-works .work-card:focus-visible .work-info h4 {
  transform: translateX(2px);
  letter-spacing: 0.4px;
}
#featured-works .work-card:hover .work-info p, #featured-works .work-card:hover .work-tags span, #featured-works .work-card:focus-visible .work-info p, #featured-works .work-card:focus-visible .work-tags span {
  opacity: 0.95;
}
#featured-works .work-card:hover .work-arrow, #featured-works .work-card:focus-visible .work-arrow {
  transform: translateY(-2px) scale(1.08);
  background: color-mix(in srgb, var(--accent) 18%, white);
  border-color: color-mix(in srgb, var(--accent) 45%, white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
#featured-works .work-card:hover .work-arrow i, #featured-works .work-card:focus-visible .work-arrow i {
  transform: rotate(0deg) translateX(2px);
}
#featured-works .work-card:active {
  transform: translateY(-3px) scale(0.995);
}
#featured-works .work-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, white);
  outline-offset: 3px;
}
#featured-works .work-card {
  /* COLOR BLUE */
}
#featured-works .work-card[data-color=blue] {
  border-color: #5CE1E6;
  --accent: #5CE1E6;
  --tint: rgba(0, 191, 214, 0.10);
  --tint-strong: rgba(0, 191, 214, 0.18);
}
#featured-works .work-card[data-color=blue] .work-info h4 {
  color: #5CE1E6;
}
#featured-works .work-card {
  /* COLOR YELLOW */
}
#featured-works .work-card[data-color=yellow] {
  border-color: #FFDE59;
  --accent: #FFDE59;
  --tint: rgba(255, 199, 0, 0.12);
  --tint-strong: rgba(255, 199, 0, 0.20);
}
#featured-works .work-card[data-color=yellow] .work-info h4 {
  color: #FFDE59;
}
#featured-works .work-card {
  /* COLOR ORANGE */
}
#featured-works .work-card[data-color=orange] {
  border-color: #FF8D59;
  --accent: #FF8D59;
  --tint: rgba(255, 120, 0, 0.11);
  --tint-strong: rgba(255, 120, 0, 0.19);
}
#featured-works .work-card[data-color=orange] .work-info h4 {
  color: #FF8D59;
}
#featured-works .work-card {
  /* COLOR PINK */
}
#featured-works .work-card[data-color=pink] {
  border-color: #FF66C4;
  --accent: #FF66C4;
  --tint: rgba(255, 60, 170, 0.10);
  --tint-strong: rgba(255, 60, 170, 0.18);
}
#featured-works .work-card[data-color=pink] .work-info h4 {
  color: #FF66C4;
}
#featured-works {
  /* BUTTON */
}
#featured-works .work-button {
  margin: 50px 0 80px;
  display: flex;
  justify-content: center;
}
#featured-works .work-button .btn-learn {
  background-color: #FF66C4;
  color: #FFFFFF;
  border: 2px solid #FF66C4;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
}
#featured-works .work-button .btn-learn.active, #featured-works .work-button .btn-learn:hover {
  background-color: #D8FEFF;
  border-color: #FF66C4;
  color: #FF66C4;
}

/* TABLET */
@media (min-width: 768px) {
  #featured-works #featured-heading {
    font-size: 35px;
    letter-spacing: 0.5px;
  }
  #featured-works .work-card {
    padding: 20px 26px;
  }
  #featured-works .work-card article {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  #featured-works .work-card img {
    width: 180px;
    min-width: 180px;
    margin: 0;
  }
  #featured-works .work-card .work-info {
    flex: 1;
    padding: 16px;
  }
  #featured-works .work-card .work-info h4 {
    font-size: 26px;
    text-align: left;
  }
  #featured-works .work-card .work-info p {
    font-size: 18px;
  }
  #featured-works .work-card .work-tags span {
    font-size: 14px;
  }
}
/* DESKTOP */
@media (min-width: 1200px) {
  #featured-works #featured-heading {
    font-size: 40px;
    margin-bottom: 65px;
  }
  #featured-works .work-card {
    padding: 28px 36px;
  }
  #featured-works .work-card article {
    gap: 28px;
  }
  #featured-works .work-card img {
    width: 220px;
    min-width: 220px;
  }
  #featured-works .work-card .work-info {
    max-width: 460px;
  }
  #featured-works .work-card .work-arrow {
    width: 42px;
    height: 42px;
    top: 12px;
    right: 12px;
  }
  #featured-works .work-card .work-arrow i {
    font-size: 15px;
  }
  #featured-works .work-card .work-info h4 {
    font-size: 30px;
  }
  #featured-works .work-card .work-info p {
    font-size: 22px;
  }
  #featured-works .work-card .work-tags span {
    font-size: 16px;
  }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  #featured-works .work-card,
  #featured-works .work-card * {
    transition: none !important;
    animation: none !important;
  }
}
/* ABOUT SECTION */
#about {
  background-color: #FFFFFF;
  color: #2E989C;
  width: 100%;
  max-width: none;
  margin: 0;
  /* AVATAR */
}
#about .about-avatar-wrapper {
  display: grid;
  place-items: center;
  margin-bottom: 60px;
}
#about .about-avatar-wrapper .about-avatar {
  width: 200px;
  height: auto;
  transition: transform 0.3s ease;
}
#about .about-avatar-wrapper .about-avatar:hover {
  transform: scale(1.1);
}
#about {
  /* ===== TEXT CONTENT ===== */
}
#about .about-text-wrapper {
  display: grid;
  place-items: center;
  max-width: 650px;
  margin-inline: auto;
}
#about .about-text-wrapper .about-intro {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 16px;
  color: #2E989C;
}
#about .about-text-wrapper .main-name {
  color: #FF66C4;
}
#about .about-text-wrapper p {
  line-height: 1.65;
  color: #2E989C;
  margin-bottom: 28px;
  text-align: left;
  font-weight: 400;
  font-size: 17.5px;
  padding: 0px 30px;
}
#about .about-text-wrapper p strong {
  color: #FF66C4;
  font-weight: bold;
}
#about .about-text-wrapper {
  /* ===== BUTTON ===== */
}
#about .about-text-wrapper .about-btn {
  background-color: #FF66C4;
  color: #FFFFFF;
  padding: 12px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
  border: 2px solid #FF66C4;
}
#about .about-text-wrapper .about-btn.active, #about .about-text-wrapper .about-btn:hover {
  background-color: #FFFFFF;
  border-color: #FF66C4;
  color: #FF66C4;
}
#about {
  /* ===========================
     TABLET — ≥ 768px
  ============================ */
}
@media (min-width: 768px) {
  #about {
    text-align: left;
  }
  #about .about-avatar-wrapper {
    grid-column: 1/5;
  }
  #about .about-avatar-wrapper .about-avatar {
    width: 240px;
  }
  #about .about-text-wrapper {
    grid-column: 5/13;
    text-align: left;
    justify-items: start;
  }
  #about .about-text-wrapper .about-intro {
    font-size: 38px;
  }
  #about .about-text-wrapper p {
    font-size: 18px;
    padding: 0px 0px;
  }
  #about .gradient-wave {
    margin: 0px;
  }
}
#about {
  /* ===========================
     DESKTOP — ≥ 1200px
  ============================ */
}
@media (min-width: 1200px) {
  #about .about-avatar-wrapper .about-avatar {
    width: 350px;
  }
  #about .about-text-wrapper .about-intro {
    font-size: 50px;
  }
  #about .about-text-wrapper p {
    font-size: 20px;
  }
}
#about {
  /* GRADIENT WAVE */
}
#about .gradient-wave {
  width: 120vw;
  height: 200px;
  position: relative;
  left: 50%;
  transform: rotate(180deg);
  margin-left: -120px;
  background: linear-gradient(90deg, #FF8D59, #FF66C4, #FFDE59, #5CE1E6, #FF8D59);
  background-size: 400% 100%;
  animation: gradientShift 8s ease-in-out infinite;
  mask-image: url("../images/wave-mask.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
#about {
  /* ANIMATION: Gradient moves left → right → left */
}
@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

/* ===== ABOUT VIDEO SECTION ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.about-video {
  background-color: #FFFFFF;
  display: grid;
  place-items: center;
  padding: 40px 5px;
  text-align: center;
  /* ===== VIDEO WRAPPER ===== */
}
.about-video .video-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  border: 1px solid #5CE1E6;
  border-radius: 12px;
  overflow: hidden;
  background-color: #2E989C;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.about-video .video-wrapper video {
  width: 100%;
  display: block;
}
.about-video .video-wrapper {
  /* ===== CENTER PLAY BUTTON ===== */
}
.about-video .video-wrapper .btn-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #5CE1E6;
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  width: 46px;
  height: 46px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(92, 225, 230, 0.4);
  transition: all 0.3s ease;
  z-index: 3;
}
.about-video .video-wrapper .btn-center-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.about-video .video-wrapper .btn-center-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 12px rgba(92, 225, 230, 0.6);
}
.about-video .video-wrapper {
  /* ===== VIDEO CONTROLS ===== */
}
.about-video .video-wrapper .video-controls {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  background: rgba(92, 225, 230, 0.08);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(92, 225, 230, 0.15);
}
.about-video .video-wrapper .video-controls {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.about-video .video-wrapper .video-controls.show {
  opacity: 1;
  pointer-events: auto;
}
.about-video .video-wrapper {
  /* ===== LEFT CONTROLS ===== */
}
.about-video .video-wrapper .left-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.about-video .video-wrapper .left-controls .btn-playpause {
  background: none;
  border: 1px solid #5CE1E6;
  color: #5CE1E6;
  border-radius: 4px;
  font-size: 13px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.about-video .video-wrapper .left-controls .btn-playpause .fa-play {
  margin-left: -2px;
}
.about-video .video-wrapper .left-controls .btn-playpause:hover {
  background-color: #5CE1E6;
  color: #FFFFFF;
}
.about-video .video-wrapper .left-controls .time-display {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #5CE1E6;
  font-weight: 500;
}
.about-video .video-wrapper {
  /* ===== PROGRESS BAR ===== */
}
.about-video .video-wrapper .center-controls {
  flex-grow: 1;
  padding: 0 10px;
}
.about-video .video-wrapper .center-controls .progress-container {
  position: relative;
  width: 100%;
  height: 5px;
  background: rgba(92, 225, 230, 0.25);
  border-radius: 10px;
  cursor: pointer;
}
.about-video .video-wrapper .center-controls .progress-container .progress-bar {
  width: 0%;
  height: 100%;
  background: #5CE1E6;
  border-radius: inherit;
  transition: width 0.1s linear;
}
.about-video .video-wrapper .center-controls .progress-container .progress-thumb {
  position: absolute;
  top: -3px;
  left: 0%;
  transform: translate(-50%, 0);
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border: 1.5px solid #5CE1E6;
  border-radius: 50%;
  transition: left 0.1s linear;
}
.about-video .video-wrapper {
  /* ===== RIGHT CONTROLS ===== */
}
.about-video .video-wrapper .right-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.about-video .video-wrapper .right-controls button {
  background: none;
  border: none;
  color: #5CE1E6;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}
.about-video .video-wrapper .right-controls button:hover {
  transform: scale(1.15);
  color: #FFFFFF;
}
.about-video .video-wrapper .right-controls .volume-container {
  display: flex;
  align-items: center;
  gap: 4px;
}
.about-video .video-wrapper .right-controls .volume-container .volume-icon {
  font-size: 13px;
}
.about-video .video-wrapper .right-controls .volume-container .volume-track {
  position: relative;
  width: 50px;
  height: 5px;
  background: rgba(92, 225, 230, 0.25);
  border-radius: 10px;
  cursor: pointer;
}
.about-video .video-wrapper .right-controls .volume-container .volume-track .volume-bar {
  width: 70%;
  height: 100%;
  background: #5CE1E6;
  border-radius: inherit;
  transition: width 0.05s linear;
}
.about-video .video-wrapper .right-controls .volume-container .volume-track .volume-thumb {
  position: absolute;
  top: -3px;
  left: 70%;
  transform: translate(-50%, 0);
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border: 1.5px solid #5CE1E6;
  border-radius: 50%;
  transition: left 0.05s linear;
}
.about-video .video-wrapper .right-controls .setting-wrapper {
  position: relative;
}
.about-video .video-wrapper .right-controls .setting-wrapper .setting-menu {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background: rgba(92, 225, 230, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(92, 225, 230, 0.3);
  border-radius: 8px;
  padding: 4px 0;
  width: 80px;
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}
.about-video .video-wrapper .right-controls .setting-wrapper .setting-menu.hidden {
  display: none;
}
.about-video .video-wrapper .right-controls .setting-wrapper .setting-menu li {
  padding: 4px 0;
  font-size: 12px;
  color: #5CE1E6;
  cursor: pointer;
}
.about-video .video-wrapper .right-controls .setting-wrapper .setting-menu li:hover {
  background: linear-gradient(90deg, #5CE1E6, rgb(136.2180851064, 233.1382978723, 236.7819148936));
  color: #FFFFFF;
}
.about-video {
  /* ===== TABLET (≥768px) ===== */
}
@media (min-width: 768px) {
  .about-video .video-wrapper {
    max-width: 760px;
    border-width: 2px;
  }
  .about-video .video-wrapper .video-controls {
    width: 94%;
    bottom: 8px;
    padding: 8px 12px;
  }
  .about-video .video-wrapper .video-controls .volume-track {
    width: 70px;
  }
  .about-video .video-wrapper .btn-center-play {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}
.about-video {
  /* ===== DESKTOP (≥1200px) ===== */
}
@media (min-width: 1200px) {
  .about-video .video-wrapper {
    max-width: 1000px;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .about-video .video-wrapper .video-controls {
    width: 96%;
    padding: 10px 18px;
    bottom: 10px;
  }
  .about-video .video-wrapper .btn-center-play {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
}
.about-video {
  /* GRADIENT WAVE */
}
.about-video .gradient-wave {
  width: 100vw;
  height: 200px;
  position: relative;
  margin-bottom: -40px;
  margin-left: -20px;
  background: linear-gradient(90deg, #FF8D59, #FF66C4, #FFDE59, #5CE1E6, #FF8D59);
  background-size: 400% 100%;
  animation: gradientShift 8s ease-in-out infinite;
  mask-image: url("../images/wave-mask.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.about-video {
  /* ANIMATION: Gradient moves left → right → left */
}
@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

/* Services Section */
#services {
  width: 300vw;
  max-width: none;
  margin: 0;
  background-color: #D8FEFF;
  text-align: center;
  overflow-x: hidden;
  margin-left: -15px;
  margin-top: -50px;
}
#services .ticker {
  width: 300vw;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background: #FFFFFF;
  padding: 25px 0;
}
#services .ticker-wrap {
  display: flex;
  white-space: nowrap;
}
#services .ticker-text {
  display: flex;
  gap: 60px;
  padding-right: 60px;
}
#services .ticker-text span {
  font-size: 2.2rem;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 1px;
}
#services .ticker-text .blue {
  color: #5CE1E6;
}
#services .ticker-text .pink {
  color: #FF66C4;
}
#services .ticker-text .yellow {
  color: #FFDE59;
}
#services .ticker-text .orange {
  color: #FF8D59;
}
#services .ticker-text .dark-blue {
  color: #2E989C;
}

/* Testimonials Section */
.testimonials-section {
  background: #D8FEFF;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 20px;
  /* Wrapper */
}
.testimonials-section .testimonials-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  transition: transform 0.4s ease;
  align-items: stretch;
  margin: 0;
}
.testimonials-section {
  /* Card */
}
.testimonials-section .testimonial-card {
  flex: 0 0 85%;
  max-width: 85%;
  margin: 0 7.5%;
  min-height: 250px;
  height: 100%;
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid transparent;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-section .testimonial-card h4 {
  color: #2E989C;
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
}
.testimonials-section .testimonial-card p {
  color: #2E989C;
  line-height: 1.5;
  flex-grow: 1;
}
.testimonials-section .testimonial-card span {
  margin-top: 10px;
  font-size: 14px;
}
.testimonials-section .testimonial-card .line {
  width: 80%;
  height: 3px;
  margin: 0.5rem auto 1.2rem auto;
}
.testimonials-section .testimonial-card.yellow {
  border-color: #FFDE59;
}
.testimonials-section .testimonial-card.yellow .line {
  background: #FFDE59;
}
.testimonials-section .testimonial-card.orange {
  border-color: #FF8D59;
}
.testimonials-section .testimonial-card.orange .line {
  background: #FF8D59;
}
.testimonials-section .testimonial-card.blue {
  border-color: #5CE1E6;
}
.testimonials-section .testimonial-card.blue .line {
  background: #5CE1E6;
}
.testimonials-section {
  /* BUTTONS BELOW SLIDER */
}
.testimonials-section .carousel-controls {
  width: 100%;
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.testimonials-section .carousel-controls button {
  display: inline-block;
  background-color: #FF66C4;
  color: #FFFFFF;
  border: 2px solid #FF66C4;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 20px;
  font-weight: 750;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.testimonials-section .carousel-controls button.active, .testimonials-section .carousel-controls button:hover {
  background-color: #D8FEFF;
  border-color: #FF66C4;
  color: #FF66C4;
}
.testimonials-section {
  /* REMOVE DOTS */
}
.testimonials-section .testimonials-dots {
  display: none;
}
.testimonials-section {
  /* RESPONSIVE */
}
@media (min-width: 768px) {
  .testimonials-section .testimonial-card {
    min-height: 360px;
  }
}
@media (min-width: 1200px) {
  .testimonials-section .testimonial-card {
    padding: 2.5rem;
  }
}

/* ===== PROJECT VIDEO SECTION ===== */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.project-video {
  background-color: #D8FEFF;
  display: grid;
  place-items: center;
  padding: 80px 40px;
  text-align: center;
  /* ===== VIDEO WRAPPER ===== */
}
.project-video .video-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  border: 1px solid #2E989C;
  border-radius: 12px;
  overflow: hidden;
  background-color: #2E989C;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.project-video .video-wrapper video {
  width: 100%;
  display: block;
}
.project-video .video-wrapper {
  /* ===== CENTER PLAY BUTTON ===== */
}
.project-video .video-wrapper .btn-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2E989C;
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  width: 46px;
  height: 46px;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(46, 152, 156, 0.4);
  transition: all 0.3s ease;
  z-index: 3;
}
.project-video .video-wrapper .btn-center-play.hidden {
  opacity: 0;
  pointer-events: none;
}
.project-video .video-wrapper .btn-center-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 0 12px rgba(46, 152, 156, 0.6);
}
.project-video .video-wrapper {
  /* ===== VIDEO CONTROLS ===== */
}
.project-video .video-wrapper .video-controls {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  background: rgba(46, 152, 156, 0.08);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(46, 152, 156, 0.15);
}
.project-video .video-wrapper .video-controls {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.project-video .video-wrapper .video-controls.show {
  opacity: 1;
  pointer-events: auto;
}
.project-video .video-wrapper {
  /* ===== LEFT CONTROLS ===== */
}
.project-video .video-wrapper .left-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-video .video-wrapper .left-controls .btn-playpause {
  background: none;
  border: 1px solid #2E989C;
  color: #2E989C;
  border-radius: 4px;
  font-size: 13px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.project-video .video-wrapper .left-controls .btn-playpause .fa-play {
  margin-left: -2px;
}
.project-video .video-wrapper .left-controls .btn-playpause:hover {
  background-color: #2E989C;
  color: #FFFFFF;
}
.project-video .video-wrapper .left-controls .time-display {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  color: #2E989C;
  font-weight: 500;
}
.project-video .video-wrapper {
  /* ===== PROGRESS BAR ===== */
}
.project-video .video-wrapper .center-controls {
  flex-grow: 1;
  padding: 0 10px;
}
.project-video .video-wrapper .center-controls .progress-container {
  position: relative;
  width: 100%;
  height: 5px;
  background: rgba(46, 152, 156, 0.25);
  border-radius: 10px;
  cursor: pointer;
}
.project-video .video-wrapper .center-controls .progress-container .progress-bar {
  width: 0%;
  height: 100%;
  background: #2E989C;
  border-radius: inherit;
  transition: width 0.1s linear;
}
.project-video .video-wrapper .center-controls .progress-container .progress-thumb {
  position: absolute;
  top: -3px;
  left: 0%;
  transform: translate(-50%, 0);
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border: 1.5px solid #2E989C;
  border-radius: 50%;
  transition: left 0.1s linear;
}
.project-video .video-wrapper {
  /* ===== RIGHT CONTROLS ===== */
}
.project-video .video-wrapper .right-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-video .video-wrapper .right-controls button {
  background: none;
  border: none;
  color: #2E989C;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}
.project-video .video-wrapper .right-controls button:hover {
  transform: scale(1.15);
  color: #FFFFFF;
}
.project-video .video-wrapper .right-controls .volume-container {
  display: flex;
  align-items: center;
  gap: 4px;
}
.project-video .video-wrapper .right-controls .volume-container .volume-icon {
  font-size: 13px;
}
.project-video .video-wrapper .right-controls .volume-container .volume-track {
  position: relative;
  width: 50px;
  height: 5px;
  background: rgba(46, 152, 156, 0.25);
  border-radius: 10px;
  cursor: pointer;
}
.project-video .video-wrapper .right-controls .volume-container .volume-track .volume-bar {
  width: 70%;
  height: 100%;
  background: #2E989C;
  border-radius: inherit;
  transition: width 0.05s linear;
}
.project-video .video-wrapper .right-controls .volume-container .volume-track .volume-thumb {
  position: absolute;
  top: -3px;
  left: 70%;
  transform: translate(-50%, 0);
  width: 10px;
  height: 10px;
  background-color: #FFFFFF;
  border: 1.5px solid #2E989C;
  border-radius: 50%;
  transition: left 0.05s linear;
}
.project-video .video-wrapper .right-controls .setting-wrapper {
  position: relative;
}
.project-video .video-wrapper .right-controls .setting-wrapper .setting-menu {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background: rgba(46, 152, 156, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(46, 152, 156, 0.3);
  border-radius: 8px;
  padding: 4px 0;
  width: 80px;
  text-align: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}
.project-video .video-wrapper .right-controls .setting-wrapper .setting-menu.hidden {
  display: none;
}
.project-video .video-wrapper .right-controls .setting-wrapper .setting-menu li {
  padding: 4px 0;
  font-size: 12px;
  color: #2E989C;
  cursor: pointer;
}
.project-video .video-wrapper .right-controls .setting-wrapper .setting-menu li:hover {
  background: linear-gradient(90deg, #2E989C, rgb(57.6138613861, 190.3762376238, 195.3861386139));
  color: #FFFFFF;
}
.project-video {
  /* ===== TABLET (≥768px) ===== */
}
@media (min-width: 768px) {
  .project-video .video-wrapper {
    max-width: 760px;
    border-width: 2px;
  }
  .project-video .video-wrapper .video-controls {
    width: 94%;
    bottom: 8px;
    padding: 8px 12px;
  }
  .project-video .video-wrapper .video-controls .volume-track {
    width: 70px;
  }
  .project-video .video-wrapper .btn-center-play {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}
.project-video {
  /* ===== DESKTOP (≥1200px) ===== */
}
@media (min-width: 1200px) {
  .project-video .video-wrapper {
    max-width: 1000px;
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .project-video .video-wrapper .video-controls {
    width: 96%;
    padding: 10px 18px;
    bottom: 10px;
  }
  .project-video .video-wrapper .btn-center-play {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
}

/* RESUME BUTTON */
.resume-wrapper {
  display: flex;
  justify-content: center;
  padding: 30px;
  margin-bottom: 40px;
  margin-top: -90px;
}

.resume-btn {
  display: inline-block;
  background-color: #FF66C4;
  color: #FFFFFF;
  border: 2px solid #FF66C4;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 17px;
  font-weight: 550;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.resume-btn:hover {
  background-color: #D8FEFF;
  border-color: #FF66C4;
  color: #FF66C4;
  transform: translateY(-2px);
}

/* TABLET */
@media (min-width: 768px) {
  .resume-wrapper {
    justify-content: flex-end;
    padding: 10px 30px;
    margin-top: 0px;
  }
}
/* DESKTOP */
@media (min-width: 1200px) {
  .resume-wrapper {
    padding: 20px 60px;
  }
}
/* RESUME PAGE */
.resume-page {
  padding: 30px 0;
}

.resume-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.resume-back,
.resume-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #FF66C4;
  color: #FFFFFF;
  border: 2px solid #FF66C4;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 550;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}
.resume-back:hover,
.resume-download:hover {
  background-color: #D8FEFF;
  border-color: #FF66C4;
  color: #FF66C4;
  transform: translateY(-2px);
}

.resume-viewer {
  width: 100%;
  height: 80vh;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border: 3px solid rgba(255, 255, 255, 0.7);
  background: #FFFFFF;
}

.resume-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ===== BASE ===== */
html, body {
  margin: 0;
  padding: 0;
  background-color: #D8FEFF;
  color: #2E989C;
  font-family: "Poppins", sans-serif;
}

/* =============================
   WORKS PAGE
============================= */
/* Floating shapes */
.float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.28;
  filter: blur(1px);
  z-index: 0;
}
.float.blue {
  background-color: #5CE1E6;
  width: 90px;
  height: 90px;
  top: 12%;
  left: 8%;
}
.float.pink {
  background-color: #FF66C4;
  width: 70px;
  height: 70px;
  bottom: 18%;
  right: 10%;
}
.float.orange {
  background-color: #FF8D59;
  width: 55px;
  height: 55px;
  top: 38%;
  right: 20%;
}
.float.yellow {
  background-color: #FFDE59;
  width: 65px;
  height: 65px;
  bottom: 10%;
  left: 25%;
}

/* Hero container */
#works-hero {
  position: relative;
}

/* Highlight bar */
.filter-highlight {
  position: absolute;
  bottom: -4px;
  height: 4px;
  border-radius: 20px;
  background-color: #FF66C4;
  width: 0;
  transform: translateX(0);
  transition: width 0.3s ease;
}

/* Hero section (mobile-first) */
#works-hero {
  background-color: #D8FEFF;
  text-align: center;
  padding: 100px 40px 0px;
}
#works-hero h2 {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.3;
  color: #2E989C;
}
#works-hero h2 .accent {
  color: #FF66C4;
}
#works-hero p {
  color: #2E989C;
  opacity: 0.8;
  font-size: 18px;
  margin: 20px 0 40px;
}
#works-hero .filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  position: relative;
}
#works-hero .filter-bar .filter-btn {
  background: none;
  border: 2px solid #FF66C4;
  color: #FF66C4;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Poppins", sans-serif;
}
#works-hero .filter-bar .filter-btn.active, #works-hero .filter-bar .filter-btn:hover {
  background-color: #FF66C4;
  border-color: #FF66C4;
  color: #FFFFFF;
}

/* =============================
   TABLET
============================= */
@media (min-width: 768px) {
  /* Larger text */
  #works-hero h2 {
    font-size: 48px;
  }
  #works-hero p {
    font-size: 20px;
    margin: 24px 0 40px;
  }
  /* Larger filter buttons */
  #works-hero .filter-btn {
    padding: 10px 28px;
    font-size: 17px;
    border-radius: 30px;
  }
  /* Spacing */
  #works-hero {
    padding: 120px 50px 20px;
  }
}
/* =============================
   DESKTOP
============================= */
@media (min-width: 1200px) {
  /* Larger hero typography */
  #works-hero h2 {
    font-size: 50px;
  }
  #works-hero p {
    font-size: 22px;
    margin: 28px 0 45px;
  }
  /* Desktop filter buttons */
  #works-hero .filter-btn {
    padding: 12px 36px;
    font-size: 18px;
    border-radius: 40px;
  }
  /* Desktop spacing */
  #works-hero {
    padding: 140px 70px 30px;
  }
}
/* ABOUT PAGE GLOBAL */
#about-hero {
  background-color: #D8FEFF;
  padding: 100px 20px 60px;
  width: 100%;
  margin-top: -30px;
}

/* HERO TITLES AND HINT */
#about-hero .about-hero-content {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
#about-hero .about-hero-content .hero-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.25;
}
#about-hero .about-hero-content .hero-title .accent {
  color: #FF66C4;
}
#about-hero .about-hero-content #hero-title-2 {
  font-size: 30px;
  margin-top: 10px;
}
#about-hero .about-hero-content .hidden-title {
  opacity: 0;
  pointer-events: none;
}
#about-hero .about-hero-content .flip-hint {
  font-size: 15px;
  opacity: 0.85;
  color: #2E989C;
  margin-top: 20px;
  animation: hintGlow 2s ease-in-out infinite;
}
@keyframes hintGlow {
  0% {
    opacity: 0.6;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-6px);
  }
  100% {
    opacity: 0.6;
    transform: translateY(0);
  }
}
#about-hero .about-hero-content .flip-hint i {
  margin-left: 5px;
  color: #FF66C4;
}

/* CARD SECTION MOBILE FIRST */
.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  width: 100%;
}

/* CARD BASE STYLE */
.card {
  width: 260px;
  height: 330px;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
  cursor: pointer;
  /* Card zigzag on mobile */
}
.card:nth-child(1) {
  margin-left: -100px;
  z-index: 1000;
}
.card:nth-child(2) {
  margin-left: 100px;
  z-index: 1000;
}
.card:nth-child(3) {
  margin-left: -100px;
  z-index: 1000;
}
.card .card-front,
.card .card-back {
  width: 100%;
  height: 100%;
  inset: 0;
  position: absolute;
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card .card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.card {
  /* CARD BACK SIDE */
}
.card .card-back {
  transform: rotateY(180deg);
  color: #FFFFFF;
  position: relative;
}
.card .card-back span {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}
.card .card-back p {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 65%;
  text-align: right;
  font-size: 15px;
  opacity: 0.9;
  line-height: 1.45;
}

/* CARD BACK COLORS */
#card-1 .card-back {
  background-color: #5CE1E6;
}

#card-2 .card-back {
  background-color: #FF66C4;
}

#card-3 .card-back {
  background-color: #FF8D59;
}

/* CARD IMAGE BORDER COLORS */
#card-1 .card-front img {
  border: 4px solid #5CE1E6;
}

#card-2 .card-front img {
  border: 4px solid #FF66C4;
}

#card-3 .card-front img {
  border: 4px solid #FF8D59;
}

/* TABLET LAYOUT */
@media (min-width: 768px) {
  #about-hero {
    padding: 120px 40px 100px;
  }
  #about-hero .about-hero-content {
    text-align: center;
  }
  #about-hero .about-hero-content .hero-title {
    font-size: 48px;
    line-height: 1.15;
  }
  #about-hero .about-hero-content #hero-title-2 {
    margin-top: 22px;
    font-size: 38px;
  }
  #about-hero .about-hero-content .flip-hint {
    font-size: 19px;
    margin-top: 25px;
  }
  /* Tablet card layout */
  .card-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-inline: auto;
    gap: 0px;
  }
  .card {
    width: 300px;
    height: 400px;
  }
  .card:nth-child(1), .card:nth-child(2), .card:nth-child(3) {
    margin-left: 0;
  }
  .card-front img {
    width: 100%;
    height: 100%;
  }
}
/* DESKTOP LAYOUT */
@media (min-width: 1200px) {
  #about-hero {
    padding: 140px 40px 100px;
  }
  #about-hero .about-hero-content .hero-title {
    font-size: 52px;
  }
  #about-hero .about-hero-content .flip-hint {
    font-size: 22px;
    margin-top: 43px;
  }
  .card-container {
    max-width: 1300px;
    gap: 40px;
  }
  .card {
    width: 400px;
    height: 500px;
  }
}
/* SKILLS AND TOOLS BASE STYLE */
#skills {
  width: 100%;
  background-color: #D8FEFF;
  margin-top: -80px;
  margin-bottom: 60px;
}
#skills .skills-heading {
  font-size: 32px;
  font-weight: 700;
  color: #2E989C;
  padding: 0px 10px;
}
#skills {
  /* Skill row layout */
}
#skills .skill-row {
  display: grid;
  grid-template-columns: 60px auto;
  align-items: flex-start;
  padding: 40px 10px;
  /* Animation prep */
  --lineWidth: 0%;
  position: relative;
  overflow: hidden;
  border-bottom: none;
}
#skills {
  /* Animated line */
}
#skills .skill-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: var(--lineWidth);
  background-color: currentColor;
  transition: width 0.3s ease-out;
}
#skills .skill-number {
  font-size: 26px;
  font-weight: 700;
}
#skills {
  /* Text animation prep */
}
#skills .skill-info {
  opacity: 1;
}
#skills .skill-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
#skills p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: #2E989C;
}
#skills {
  /* Skill icons */
}
#skills .skill-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
#skills .skill-icons img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  transition: 0.25s ease;
}

/* SKILL ROW COLOR THEMES (BLUE YELLOW ORANGE PINK ORDER) */
/* SKILL 01 BLUE */
.skill-row:nth-child(2) .skill-number {
  color: #5CE1E6;
}
.skill-row:nth-child(2) .skill-info h3 {
  color: #5CE1E6;
}

/* SKILL 02 YELLOW */
.skill-row:nth-child(3) .skill-number {
  color: #FFDE59;
}
.skill-row:nth-child(3) .skill-info h3 {
  color: #FFDE59;
}

/* SKILL 03 ORANGE */
.skill-row:nth-child(4) .skill-number {
  color: #FF8D59;
}
.skill-row:nth-child(4) .skill-info h3 {
  color: #FF8D59;
}

/* SKILL 04 PINK */
.skill-row:nth-child(5) .skill-number {
  color: #FF66C4;
}
.skill-row:nth-child(5) .skill-info h3 {
  color: #FF66C4;
}

/* RESPONSIVE SKILLS */
@media (max-width: 767px) {
  #skills {
    padding: 80px 20px;
  }
  #skills .skill-row {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
  #skills .skill-info h3 {
    font-size: 20px;
  }
  #skills .skill-icons img {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 768px) {
  #skills {
    padding: 0px 40px;
    margin-top: -20px;
  }
  #skills .skills-heading {
    font-size: 37px;
  }
  #skills .skill-number {
    font-size: 28px;
  }
  #skills .skill-info h3 {
    font-size: 26px;
  }
  #skills .skill-info p {
    font-size: 17px;
  }
  #skills .skill-row {
    grid-template-columns: 50px 1fr;
  }
}
@media (min-width: 1200px) {
  #skills .skills-heading {
    font-size: 38px;
  }
  #skills .skill-number {
    font-size: 30px;
  }
  #skills .skill-info h3 {
    font-size: 28px;
  }
  #skills .skill-info p {
    font-size: 18px;
  }
}
/* CONTACT HERO */
#contact-hero {
  background-color: #D8FEFF;
  padding: 120px 40px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact-hero .letter {
  display: inline-block;
}
#contact-hero {
  /* glowing orb */
}
#contact-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  height: 680px;
  background: radial-gradient(circle at 30% 30%, rgba(92, 225, 230, 0.5), rgba(255, 222, 89, 0.45), rgba(255, 141, 89, 0.35), rgba(255, 102, 196, 0.4), transparent 70%);
  filter: blur(110px);
  opacity: 0.95;
  z-index: 0;
  animation: driftGlow 9s ease-in-out infinite alternate;
}
@keyframes driftGlow {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-46%) translateY(50px);
  }
}
#contact-hero .accent {
  display: inline-block;
  transition: 0.25s ease;
}
#contact-hero .contact-intro {
  position: relative;
  z-index: 2;
}
#contact-hero .contact-intro h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2E989C;
}
#contact-hero .contact-intro h2 .accent {
  color: #FF66C4;
}
#contact-hero .contact-intro p {
  margin-top: 22px;
  max-width: 750px;
  margin-inline: auto;
  font-size: 18px;
  opacity: 0.85;
  color: #2E989C;
  line-height: 1.6;
}

/* =========================================
   CONTACT FORM — MOBILE FIRST
========================================= */
#contact-form {
  background-color: #D8FEFF;
  padding: 60px 25px;
}
#contact-form h2 {
  font-size: 30px;
  font-weight: 800;
  color: #2E989C;
  margin-bottom: 40px;
  text-align: left;
}
#contact-form form {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}
#contact-form form .form-group {
  margin-bottom: 22px;
}
#contact-form form .form-group label {
  font-weight: 600;
  color: #2E989C;
  margin-bottom: 10px;
  display: block;
}
#contact-form form .form-group input,
#contact-form form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 30px;
  background: #f9f9f9;
  border: 2px solid transparent;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  color: #2E989C;
  transition: 0.3s;
}
#contact-form form {
  /* Input colours */
}
#contact-form form .form-group:nth-of-type(1) input {
  border-color: #5CE1E6;
}
#contact-form form .form-group:nth-of-type(2) input {
  border-color: #FFDE59;
}
#contact-form form .form-group:nth-of-type(3) textarea {
  border-color: #FF8D59;
  resize: none;
}
#contact-form form .btn-submit {
  background-color: #FF66C4;
  color: #FFFFFF;
  border-radius: 30px;
  padding: 14px 20px;
  font-size: 16px;
  border: 2px solid #FF66C4;
  font-weight: 600;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
#contact-form form .btn-submit:hover {
  background-color: #FFFFFF;
  color: #FF66C4;
}

/* FAQ */
#faqs {
  background-color: #D8FEFF;
  padding: 60px 30px;
  position: relative;
  z-index: 1;
}
#faqs h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2E989C;
  margin-bottom: 50px;
  text-align: left;
}
#faqs .faq-item {
  background-color: #FFFFFF;
  border-left: 6px solid #5CE1E6;
  border-radius: 12px;
  padding: 22px 25px;
  margin-bottom: 30px;
  min-height: 50px;
  min-width: 0;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
  will-change: transform;
  /* Alternate Border Colors */
}
#faqs .faq-item:nth-of-type(2) {
  border-left-color: #FFDE59;
}
#faqs .faq-item:nth-of-type(3) {
  border-left-color: #FF8D59;
}
#faqs .faq-item:nth-of-type(4) {
  border-left-color: #FF66C4;
}
#faqs .faq-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
#faqs .faq-item h3 i {
  margin-right: 8px;
  color: #FF66C4;
}
#faqs .faq-item p {
  font-size: 14px;
  opacity: 0.85;
  color: #2E989C;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}
#faqs .faq-item a {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}
#faqs .faq-item {
  /* Hover Effect */
}
#faqs .faq-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media screen and (min-width: 768px) {
  #faqs h2 {
    font-size: 32px;
  }
  #faqs .faq-item h3 {
    font-size: 19px;
  }
  #faqs .faq-item p {
    font-size: 16px;
  }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #faqs .faq-item:hover {
    transform: translateY(-6px);
  }
}
/* CONTACT PAGE — MEDIA QUERIES */
/* TABLET (min-width: 768px) */
@media screen and (min-width: 768px) {
  /* Contact Hero */
  #contact-hero .contact-intro h2 {
    font-size: 46px;
  }
  #contact-hero .contact-intro p {
    font-size: 19px;
  }
  /* Contact Form */
  #contact-form h2 {
    font-size: 32px;
  }
  #contact-form p {
    font-size: 16px;
  }
  /* FAQs */
  #faqs h2 {
    font-size: 32px;
  }
  #faqs .faq-item h3 {
    font-size: 19px;
  }
  #faqs .faq-item p {
    font-size: 16px;
  }
}
/* DESKTOP (min-width: 1200px) */
@media screen and (min-width: 1200px) {
  /* Contact Hero */
  #contact-hero .contact-intro h2 {
    font-size: 50px;
  }
  #contact-hero .contact-intro p {
    font-size: 22px;
  }
}
/* FORM STATUS BOX */
.form-status {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.form-status i {
  font-size: 18px;
}

/* SUCCESS MESSAGE UNDER BUTTON */
.custom-success-box {
  margin-top: 25px;
  margin-bottom: 20px;
  padding: 12px 15px;
  background-color: #e8fff1;
  border-radius: 10px;
  border-left: 5px solid #2ecc71;
}
.custom-success-box p {
  color: #2e8b57;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.custom-success-box i {
  color: #2ecc71;
  font-size: 18px;
}

/* ERROR MESSAGE UNDER BUTTON */
.custom-errors-box {
  margin-top: 25px;
  margin-bottom: 20px;
  padding: 12px 15px;
  background-color: #ffecec;
  border-radius: 10px;
  border-left: 5px solid #e74c3c;
}
.custom-errors-box ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}
.custom-errors-box li {
  color: #c0392b;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.custom-errors-box li:last-child {
  margin-bottom: 0;
}
.custom-errors-box i {
  color: #e74c3c;
  font-size: 16px;
}

.error-field {
  border-color: #e74c3c !important;
  background-color: #fff6f6;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

/* ===================================
   GLOBAL CASE STUDY STYLE
=================================== */
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #2E989C;
  text-align: left;
  margin: 60px 0px 30px;
}

.list li {
  font-size: 17px;
  color: #2E989C;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ===================================
   HERO SECTION
=================================== */
#project-hero {
  padding: 20px 40px;
  background-color: #D8FEFF;
}
#project-hero .hero-wrapper {
  text-align: left;
}
#project-hero .hero-wrapper .hero-img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
#project-hero .hero-wrapper .project-title {
  font-size: 38px;
  font-weight: 800;
  margin-top: 25px;
  color: #2E989C;
}
#project-hero .hero-wrapper .project-title .accent {
  color: #2E989C;
}
#project-hero .hero-wrapper .project-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: left;
  font-size: 16px;
  color: #2E989C;
  opacity: 0.9;
  margin-top: 10px;
}
#project-hero .hero-wrapper .project-subtitle span {
  position: relative;
}
#project-hero .hero-wrapper .project-subtitle span:not(:last-child)::after {
  content: "|";
  margin-left: 8px;
  opacity: 0.4;
}

/* ===================================
   HERO RESPONSIVE
=================================== */
@media (min-width: 768px) {
  #project-hero .hero-wrapper .project-title {
    font-size: 54px; /* +4px */
  }
  #project-hero .hero-wrapper .project-subtitle {
    font-size: 20px; /* +4px */
  }
}
@media (min-width: 1200px) {
  #project-hero .hero-wrapper .project-title {
    font-size: 58px; /* +4px */
  }
  #project-hero .hero-wrapper .project-subtitle {
    font-size: 22px; /* +4px */
  }
}
/* ===================================
   DESCRIPTION
=================================== */
#project-desc {
  padding: 20px 40px;
}
#project-desc h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
#project-desc .desc-wrapper {
  text-align: left;
}
#project-desc .desc-wrapper p {
  font-size: 16px;
  color: #2E989C;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}
#project-desc .visit-btn {
  background-color: #FF66C4;
  color: #FFFFFF;
  border: 2px solid #FF66C4;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 550;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#project-desc .visit-btn:hover {
  background-color: #D8FEFF;
  border-color: #FF66C4;
  color: #FF66C4;
}

/* ===================================
   INFO GRID
=================================== */
#project-info {
  padding: 20px 40px;
}
#project-info .info-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
#project-info .info-box .info-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #2E989C;
}
#project-info .info-box .info-item p {
  margin-top: 4px;
  font-size: 16px;
  color: #2E989C;
  opacity: 0.85;
}
#project-info .info-image {
  margin-top: 40px;
  border-radius: 18px;
  overflow: hidden;
}
#project-info .info-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}

/* ===================================
   GOALS / CHALLENGES / LEARNINGS / RESULTS
=================================== */
#project-goals,
#project-challenges,
#project-learnings,
#project-final {
  padding: 20px 40px;
}
#project-goals h3,
#project-challenges h3,
#project-learnings h3,
#project-final h3 {
  text-align: left;
  font-size: 24px;
}
#project-goals p,
#project-challenges p,
#project-learnings p,
#project-final p {
  margin-top: -20px;
}

#project-goals {
  margin-top: -40px;
}

#project-challenges {
  margin-top: -40px;
}

#project-learnings {
  margin-top: -100px;
}

#project-final {
  margin-top: -40px;
}

@media (min-width: 768px) {
  #project-goals p,
  #project-challenges p,
  #project-learnings p,
  #project-final p {
    margin-top: 60px;
  }
}
/* ===================================
   DETAIL SHOTS
=================================== */
#details {
  padding: 60px 40px;
}
#details .details-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}
#details .details-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* ===================================
   MORE PROJECTS
=================================== */
#more-projects {
  padding: 20px 40px 80px;
  margin-top: -140px;
}
#more-projects .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #2E989C;
  text-align: left;
  margin-bottom: 50px;
  position: relative;
  padding-left: 4px;
}
#more-projects .slider-wrapper {
  display: flex;
  gap: 22px;
  padding-bottom: 20px;
  justify-content: center;
  overflow-x: visible;
  max-width: 1200px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  #more-projects .slider-wrapper {
    overflow-x: auto;
    justify-content: flex-start;
    max-width: 100%;
  }
  #more-projects .slider-wrapper::-webkit-scrollbar {
    height: 6px;
  }
  #more-projects .slider-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(46, 152, 156, 0.25);
    border-radius: 20px;
  }
}
#more-projects .slider-wrapper .slider-card {
  min-width: 240px;
  background: #FFFFFF;
  border: 2px solid #2e989c;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  padding: 18px 12px 20px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
#more-projects .slider-wrapper .slider-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}
#more-projects .slider-wrapper .slider-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2E989C;
  margin-top: 6px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#more-projects .slider-wrapper .slider-card:hover {
  border: 2px solid rgba(46, 152, 156, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}
#more-projects .slider-wrapper .slider-card:hover h4 {
  opacity: 0.75;
  transform: translateY(-2px);
}

/* ===================================
   SECTION DIVIDER LINE
=================================== */
section {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 60px;
}
section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 85%;
  height: 2px;
  opacity: 1;
}

#project-goals::after {
  background-color: #5CE1E6;
}

#project-challenges::after {
  background-color: #FFDE59;
}

#project-learnings::after {
  background-color: #FF8D59;
}

#project-final::after {
  background-color: #FF66C4;
}

@media (min-width: 768px) {
  section::after {
    width: 80%;
  }
}
.divider {
  width: 100%;
  height: 2px;
  background-color: #2e989c;
  margin-top: -20px;
  opacity: 1;
}

/* ADMIN ADD PROJECT (WORKS STYLE) */
/* ADD PROJECT SECTION */
#admin-add-project {
  padding: 30px 40px 0;
}

/* ADD PROJECT CARD */
.admin-add-project-box {
  border: 2px solid #5CE1E6;
  border-radius: 14px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.admin-add-project-box:hover, .admin-add-project-box:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ADD PROJECT TITLE */
.admin-add-title {
  font-size: 30px;
  font-weight: 800;
  color: #2E989C;
  margin: 0 0 20px 0;
  text-align: left;
}

/* ADD PROJECT FORM */
.admin-add-form {
  width: 100%;
}

.admin-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.admin-form-group label {
  font-weight: 600;
  color: #2E989C;
  font-size: 15px;
}
.admin-form-group input,
.admin-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.8px solid rgba(0, 0, 0, 0.08);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.admin-form-group input:focus,
.admin-form-group textarea:focus {
  border-color: #5CE1E6;
  box-shadow: 0 0 0 3px rgba(92, 225, 230, 0.18);
  outline: none;
}
.admin-form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.admin-form-group input[type=file] {
  border-style: dashed;
  cursor: pointer;
  padding: 14px;
  background: rgba(0, 0, 0, 0.02);
}
.admin-form-group small {
  font-size: 13px;
  opacity: 0.65;
}

/* ADD PROJECT BUTTON */
.admin-add-btn {
  background-color: #FF66C4;
  color: #FFFFFF;
  border: 2px solid #FF66C4;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
  font-family: "Poppins";
}
.admin-add-btn.active, .admin-add-btn:hover {
  background-color: #FFFFFF;
  border-color: #FF66C4;
  color: #FF66C4;
}

/* ADMIN ACTIONS */
.admin-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  transition: 0.3s ease;
  font-family: "Poppins";
}

.admin-btn i {
  line-height: 1;
}

/* EDIT BUTTON */
.admin-btn-edit {
  background-color: #35c46a;
  color: #fff;
  border-color: #35c46a;
}
.admin-btn-edit:hover, .admin-btn-edit.active {
  background-color: #FFFFFF;
  color: #35c46a;
}
.admin-btn-edit:active {
  transform: translateY(1px);
}

/* DELETE BUTTON */
.admin-btn-delete {
  background-color: #ff4d4d;
  color: #fff;
  border-color: #ff4d4d;
}
.admin-btn-delete:hover, .admin-btn-delete.active {
  background-color: #FFFFFF;
  color: #ff4d4d;
}
.admin-btn-delete:active {
  transform: translateY(1px);
}

/* ADD CARD ICON */
.admin-add-card .admin-add-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* DELETE CONFIRM LIGHTBOX (NO JS) */
.admin-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.admin-modal:target {
  display: block;
}

.admin-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.admin-modal-box {
  position: relative;
  max-width: 520px;
  width: calc(100% - 40px);
  margin: 16vh auto 0;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #ff4d4d;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.admin-modal-box h4 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #2E989C;
}

.admin-modal-box p {
  margin: 0 0 16px;
  color: #2E989C;
  opacity: 0.85;
  line-height: 1.5;
}

.admin-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* CANCEL BUTTON */
.admin-btn-cancel {
  background-color: #FFFFFF;
  border: 2px solid rgba(0, 0, 0, 0.1);
  color: #2E989C;
}
.admin-btn-cancel:hover, .admin-btn-cancel.active {
  border-color: rgba(0, 0, 0, 0.18);
}

/* LOGIN FORM */
#contact-form .form-group small {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #2E989C;
  opacity: 0.8;
}
#contact-form .form-group .admin-contact-link {
  font-weight: 600;
  text-decoration: underline;
  color: #FF66C4;
  transition: color 0.3s ease;
}
#contact-form .form-group .admin-contact-link:hover {
  color: #5CE1E6;
}

/* FOOTER */
#footer-admin {
  background-color: #FFFFFF;
  color: #5CE1E6;
  text-align: center;
  height: 100px;
  margin-top: 40px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 40px;
  padding-right: 40px;
}
#footer-admin .footer-bottom-admin {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#footer-admin .footer-bottom-admin p {
  font-size: 15px;
  font-weight: 450;
  color: #2E989C;
  opacity: 0.9;
  margin: 0;
}
#footer-admin .footer-bottom-admin a {
  color: #5CE1E6;
  text-decoration: none;
}

/* TABLET OVERRIDES */
@media (min-width: 768px) {
  /* ADD PROJECT CARD */
  .admin-add-project-box {
    padding: 28px 36px;
  }
  /* ADD PROJECT TITLE */
  .admin-add-title {
    font-size: 35px;
    text-align: left;
  }
  /* ADD PROJECT BUTTON */
  .admin-add-btn {
    width: auto;
  }
  /* ADMIN ACTIONS */
  .admin-actions {
    justify-content: flex-start;
  }
  /* FOOTER LAYOUT */
  #footer-admin .footer-bottom-admin {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
/* DESKTOP */
@media (min-width: 1200px) {
  /* ADD PROJECT CARD */
  .admin-add-project-box {
    padding: 36px;
  }
  /* ADD PROJECT TITLE */
  .admin-add-title {
    font-size: 40px;
  }
}/*# sourceMappingURL=main.css.map */