@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at 80% 30%, rgb(15, 50, 50) 0%, rgb(2, 20, 20) 100%);
  background-attachment: fixed;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.side-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.side-nav.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(20px);
}
@media (max-width: 1024px) {
  .side-nav {
    display: none;
  }
}
.side-nav .nav-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  text-decoration: none;
}
.side-nav .nav-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.side-nav .nav-dot span {
  position: absolute;
  right: 25px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.side-nav .nav-dot:hover::before {
  background: white;
  transform: scale(1.2);
}
.side-nav .nav-dot:hover span {
  opacity: 1;
  transform: translateX(0);
}
.side-nav .nav-dot.active::before {
  background: #20c997;
  border-color: #20c997;
  transform: scale(1.5);
  box-shadow: 0 0 10px rgba(32, 201, 151, 0.4);
}
.side-nav .nav-dot.active span {
  color: #20c997;
}

.hero::after, .header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 2px;
  background: linear-gradient(to right, transparent 0%, rgba(32, 201, 151, 0.3) 50%, transparent 100%);
  box-shadow: none;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.header {
  padding: 30px 0 20px;
  position: relative;
  border-bottom: 1px solid rgba(32, 201, 151, 0.2);
}
.header::after {
  width: 50%;
  background: linear-gradient(to right, transparent, rgba(32, 201, 151, 0.25), transparent);
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nav img {
  margin-right: 40px;
}
.header .nav .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .nav .logo .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: dotTyping 1.5s infinite ease-in-out;
}
.header .nav .logo .dot.red {
  background: #ff5f56;
  animation-delay: 0s;
}
.header .nav .logo .dot.yellow {
  background: #ffbd2e;
  animation-delay: 0.2s;
}
.header .nav .logo .dot.green {
  background: #27c93f;
  animation-delay: 0.4s;
}
.header .nav nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}
.header .nav nav ul a {
  position: relative;
  color: #94a3b8;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  padding: 4px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .nav nav ul a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #20c997;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
.header .nav nav ul a:hover {
  color: #20c997;
  transform: translateY(-3px);
}
.header .nav nav ul a:hover::after {
  width: 100%;
}

.hero {
  padding: 80px 0 50px;
  position: relative;
  overflow: hidden;
}
.hero .hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .status {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 8px 16px;
  background: rgba(32, 201, 151, 0.1);
  border: 1px solid rgba(32, 201, 151, 0.2);
  border-radius: 100px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.hero .status .pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: #20c997;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(32, 201, 151, 0.5);
}
.hero .status .pulse-dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #20c997;
  border-radius: 50%;
  z-index: -1;
  animation: heroPulse 2s cubic-bezier(0.455, 0.03, 0.515, 0.95) infinite;
}
.hero h1 {
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 850;
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(30px);
  animation: nameReveal 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
  animation-delay: 0.2s;
}
.hero h1 span {
  color: #20c997;
  display: inline-block;
}
.hero .hero-text {
  color: #94a3b8;
  max-width: 450px;
  font-size: 1.25rem;
  margin-bottom: 50px;
  line-height: 1.6;
}
.hero .hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.hero .hero-socials {
  position: absolute;
  right: 0;
  bottom: 40px;
  display: flex;
  gap: 20px;
}
@media (max-width: 992px) {
  .hero .hero-socials {
    position: static;
    justify-content: flex-start;
  }
}
.hero .hero-socials .social-card {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  overflow: hidden;
}
.hero .hero-socials .social-card img {
  width: 24px;
  height: 24px;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}
.hero .hero-socials .social-card:hover {
  transform: translateY(-10px) rotate(5deg);
  background: rgba(32, 201, 151, 0.08);
  border-color: rgba(32, 201, 151, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(32, 201, 151, 0.1);
}
.hero .hero-socials .social-card:hover img {
  opacity: 1;
  transform: scale(1.2);
  filter: brightness(0) saturate(100%) invert(58%) sepia(94%) saturate(370%) hue-rotate(111deg) brightness(93%) contrast(87%);
}
.hero .hero-socials .social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: 0.5s;
}
.hero .hero-socials .social-card:hover::before {
  left: 100%;
}

.about {
  padding: 120px 0;
  position: relative;
}
.about .about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.about .about-text .section-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(32, 201, 151, 0.1);
  border: 1px solid rgba(32, 201, 151, 0.2);
  color: #20c997;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}
.about .about-text h2 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 850;
  color: white;
}
.about .about-text h2 span {
  color: #20c997;
}
.about .about-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}
.about .about-text p .highlight {
  color: white;
  font-weight: 600;
}
.about .about-text .about-footer {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.about .about-text .about-footer .status-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  font-size: 0.95rem;
}
.about .about-text .about-footer .status-pill .dot.pulse {
  width: 8px;
  height: 8px;
  background: #20c997;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}
.about .about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.about .about-cards .card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.about .about-cards .card .icon-box {
  width: 45px;
  height: 45px;
  background: rgba(32, 201, 151, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: 0.3s;
}
.about .about-cards .card .icon-box img {
  width: 24px;
  height: 24px;
  filter: invert(65%) sepia(95%) saturate(400%) hue-rotate(120deg) brightness(100%) contrast(100%);
  transition: 0.3s;
}
.about .about-cards .card h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.about .about-cards .card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.about .about-cards .card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(32, 201, 151, 0.4);
}
.about .about-cards .card:hover .icon-box {
  background: #20c997;
}
.about .about-cards .card:hover .icon-box img {
  filter: brightness(0) saturate(100%) invert(5%) sepia(20%) saturate(1500%) hue-rotate(140deg);
}

.projects {
  position: relative;
  padding: 70px 0 50px 0;
}
.projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(32, 201, 151, 0.2), transparent);
}
.projects .projects-header {
  text-align: center;
  margin-bottom: 30px;
}
.projects .projects-header .section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(32, 201, 151, 0.1);
  border: 1px solid rgba(32, 201, 151, 0.2);
  color: #20c997;
  border-radius: 100px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.projects .projects-header h2 {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 850;
  margin: 0;
}
.projects .projects-header h2 span {
  color: #20c997;
}
.projects .slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.projects .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  transition: 0.3s ease;
}
.projects .nav-arrow img {
  width: 40px;
  height: 40px;
  filter: invert(61%) sepia(80%) saturate(1352%) hue-rotate(115deg) brightness(103%) contrast(106%);
}
.projects .nav-arrow.prev {
  left: -80px;
}
.projects .nav-arrow.prev img {
  transform: rotate(180deg);
}
.projects .nav-arrow.prev:hover {
  transform: translateY(-50%) translateX(-5px);
}
.projects .nav-arrow.next {
  right: -80px;
}
.projects .nav-arrow.next:hover {
  transform: translateY(-50%) translateX(5px);
}
.projects .projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.projects .project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.projects .project-card.hidden-set {
  display: none;
}
.projects .project-card.active-set {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}
.projects .project-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(32, 201, 151, 0.4);
}
.projects .project-card:hover .project-img img {
  transform: scale(1.05);
}
.projects .project-card .project-img {
  height: 200px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #011616;
}
.projects .project-card .project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.5s ease;
}
.projects .project-card .project-info {
  padding: 20px;
}
.projects .project-card .project-info .tags {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.projects .project-card .project-info .tags span {
  font-size: 0.7rem;
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}
.projects .project-card .project-info h3 {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.projects .project-card .project-info p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
  line-height: 1.6;
}
.projects .project-card .project-info .project-footer {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.projects .project-card .project-info .project-footer .view-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #20c997;
  color: #011616;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  gap: 8px;
  transition: 0.3s all ease;
  border: 1px solid #20c997;
}
.projects .project-card .project-info .project-footer .view-project:hover {
  background: transparent;
  color: #20c997;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.15);
}
.projects .project-card .project-info .project-footer .view-project.open-btn {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.projects .project-card .project-info .project-footer .view-project.open-btn:hover {
  border-color: #20c997;
  color: #20c997;
}

.footer {
  padding: 100px 0 40px;
  position: relative;
  background: transparent;
}
.footer .section-divider {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 201, 151, 0.3), transparent);
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .footer .footer-top {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}
.footer .footer-top .footer-socials, .footer .footer-top .footer-nav, .footer .footer-top .footer-logo {
  flex: 1;
}
.footer .footer-logo {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .footer .footer-logo {
    justify-content: center;
  }
}
.footer .footer-logo a {
  font-size: 1.4rem;
  font-weight: 850;
  color: white;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.footer .footer-logo a span {
  color: #20c997;
}
.footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 35px;
}
.footer .footer-nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  transition: 0.3s ease;
}
.footer .footer-nav a:hover {
  color: #20c997;
}
.footer .footer-socials {
  display: flex;
  gap: 12px;
}
@media (max-width: 992px) {
  .footer .footer-socials {
    justify-content: center;
  }
}
.footer .footer-socials .social-icon {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  transition: 0.3s;
}
.footer .footer-socials .social-icon:hover {
  background: rgba(32, 201, 151, 0.1);
  border-color: rgba(32, 201, 151, 0.3);
  color: #20c997;
  transform: translateY(-3px);
}
.footer .footer-line {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  margin-bottom: 30px;
}
.footer .footer-bottom {
  text-align: center;
}
.footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}
.footer .footer-bottom p span {
  color: rgba(255, 255, 255, 0.4);
}

.featured {
  padding: 100px 0;
  position: relative;
}
.featured .section-divider {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 201, 151, 0.2), transparent);
}
.featured .featured-header {
  text-align: left;
  max-width: 750px;
  margin-bottom: 70px;
  margin-left: 0;
}
.featured .featured-header .section-label {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(32, 201, 151, 0.1);
  border: 1px solid rgba(32, 201, 151, 0.2);
  color: #20c997;
  border-radius: 100px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  backdrop-filter: blur(5px);
}
.featured .featured-header h2 {
  color: white;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 25px;
}
.featured .featured-header h2 span {
  color: #20c997;
}
.featured .featured-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.featured .featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1100px) {
  .featured .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .featured .featured-grid {
    grid-template-columns: 1fr;
  }
}
.featured .step-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}
.featured .step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #20c997;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.featured .step-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.featured .step-card .card-header .step-count {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(32, 201, 151, 0.3);
  transition: 0.3s ease;
}
.featured .step-card .card-header .icon-line {
  height: 1px;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.1);
}
.featured .step-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.featured .step-card p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
.featured .step-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.1);
}
.featured .step-card:hover::before {
  transform: scaleX(1);
}
.featured .step-card:hover .step-count {
  color: #20c997;
  text-shadow: 0 0 15px rgba(32, 201, 151, 0.4);
}
.featured .step-card:hover .icon-line {
  background: rgba(32, 201, 151, 0.3);
}

.contact {
  padding: 120px 0;
  position: relative;
}
.contact .section-divider {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 201, 151, 0.4), transparent);
  z-index: 10;
}
.contact .contact-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .contact .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.contact .contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact .contact-info .section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(32, 201, 151, 0.1);
  border: 1px solid rgba(32, 201, 151, 0.2);
  color: #20c997;
  border-radius: 100px;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
}
.contact .contact-info h2 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  color: white;
  font-weight: 850;
  line-height: 1.1;
  margin: 25px 0;
}
.contact .contact-info h2 span {
  color: #20c997;
}
.contact .contact-info p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  line-height: 1.7;
  font-size: 1.05rem;
}
.contact .contact-info p span {
  font-weight: 600;
  color: #ffffff;
}
.contact .status-button-container {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: 46px;
  margin-top: 50px;
  border-radius: 100px;
}
.contact .status-button-container .status-svg-border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
}
.contact .status-button-container .status-svg-border .status-rect {
  stroke: #20c997;
  stroke-width: 2;
  stroke-dasharray: 80, 250;
  animation: snakeBorder 4s linear infinite;
}
.contact .status-button-container .status-content {
  height: 100%;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.contact .status-button-container .status-content span {
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact .social-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact .social-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
}
.contact .social-item.zigzag {
  align-self: flex-end;
  width: 95%;
}
.contact .social-item .social-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.contact .social-item .social-icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.3s ease;
  filter: brightness(0) invert(1);
  opacity: 0.4;
}
.contact .social-item .social-text span {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 1.15rem;
}
.contact .social-item .social-text small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  transition: 0.3s;
}
.contact .social-item:hover {
  background: rgba(32, 201, 151, 0.05);
  border-color: rgba(32, 201, 151, 0.3);
  transform: scale(1.02) translateX(5px);
}
.contact .social-item:hover .social-icon {
  background: #20c997;
  transform: rotate(-10deg);
}
.contact .social-item:hover .social-icon img {
  filter: brightness(0);
  opacity: 1;
}
.contact .social-item:hover .social-text small {
  color: rgba(32, 201, 151, 0.8);
}

@keyframes snakeBorder {
  from {
    stroke-dashoffset: 330;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.dot-wrapper {
  position: relative;
  width: 10px;
  height: 10px;
}
.dot-wrapper .dot {
  width: 100%;
  height: 100%;
  background: #20c997;
  border-radius: 50%;
  box-shadow: 0 0 10px #20c997;
}
.dot-wrapper .pulse {
  position: absolute;
  inset: 0;
  background: #20c997;
  border-radius: 50%;
  animation: contactPulse 2s infinite;
}

@keyframes contactPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
@keyframes rotateGlow {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.dot-wrapper {
  position: relative;
  width: 9px;
  height: 9px;
}
.dot-wrapper .dot {
  width: 100%;
  height: 100%;
  background: #20c997;
  border-radius: 50%;
}
.dot-wrapper .pulse {
  position: absolute;
  inset: 0;
  background: #20c997;
  border-radius: 50%;
  animation: contactPulse 2s infinite;
}

@keyframes contactPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes contactPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes contactPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
@keyframes contactPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}
@keyframes contactPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes contactPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}
@keyframes nameReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .projects-wrapper .project-card {
    flex: 0 0 100%;
  }
  .nav-btn {
    display: none;
  }
}
@media (max-width: 768px) {
  .projects .projects-grid .project-card {
    min-width: 300px;
    width: 85vw;
  }
}
@media (max-width: 900px) {
  .projects .projects-grid {
    grid-template-columns: 1fr;
  }
}
@keyframes dotTyping {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}
@keyframes heroPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(32, 201, 151, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 201, 151, 0);
  }
}
@media (max-width: 992px) {
  .about .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about .about-cards {
    grid-template-columns: 1fr;
  }
}
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(32, 201, 151, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 201, 151, 0);
  }
}
.btn {
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}
.btn.primary {
  background: #20c997;
  color: #011616;
  box-shadow: 0 10px 20px rgba(32, 201, 151, 0.2);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}
.btn:hover {
  transform: translateY(-8px) rotate(-2deg);
}
.btn:hover.primary {
  box-shadow: 0 15px 30px rgba(32, 201, 151, 0.2);
}
.btn:hover.secondary {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
  body {
    overflow-x: hidden;
  }
  .header .dot {
    display: none;
  }
  .header .nav {
    position: relative;
    justify-content: space-between;
    width: 100%;
  }
  .header .nav nav ul {
    display: none;
  }
  .header .nav nav ul.active {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at 80% 30%, rgb(15, 50, 50) 0%, rgb(2, 20, 20) 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }
  .header .nav nav ul.active li a {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
  }
  .header .nav .burger {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    z-index: 1000;
    cursor: pointer;
    margin-left: auto;
  }
  .header .nav .burger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #20c997;
    transition: 0.3s;
  }
  .header .nav .burger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header .nav .burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header .nav .burger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
  }
  .hero .hero-content {
    align-items: center;
    gap: 30px;
  }
  .hero .status {
    margin: 0 auto 20px auto !important;
  }
  .hero h1 {
    text-align: center !important;
    width: 100%;
    margin: 0 auto 25px auto !important;
    font-size: clamp(2.2rem, 9vw, 3rem) !important;
  }
  .hero .hero-text {
    text-align: center !important;
    margin: 0 auto 35px auto !important;
    max-width: 90%;
  }
  .hero .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    gap: 12px;
    width: 100%;
    max-width: 400px;
  }
  .hero .hero-buttons .btn {
    flex: 1;
    padding: 14px 0;
    font-size: 0.9rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero .hero-buttons .btn:hover {
    transform: translateY(-3px);
  }
  .hero .hero-socials {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: static;
  }
  .section-label {
    margin: 0 auto 20px auto !important;
    display: table !important;
  }
  h2 {
    text-align: center !important;
    width: 100%;
    margin-bottom: 30px;
  }
  .about-text {
    text-align: center;
  }
  .status-pill {
    justify-content: center;
  }
  .about .about-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .about .about-cards .card {
    padding: 20px;
    text-align: center;
    height: auto;
  }
  .about .about-cards .card h3 {
    font-size: 1rem;
  }
  .projects .projects-grid {
    display: flex;
    justify-content: center;
  }
  .projects .projects-grid .project-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .projects .slider-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }
  .projects .slider-dots .dot {
    width: 12px;
    height: 12px;
    border: 2px solid #20c997;
    border-radius: 50%;
  }
  .projects .slider-dots .dot.active {
    background: #20c997;
  }
  .projects .nav-arrow {
    display: none !important;
  }
  .projects .project-info, .projects .project-footer {
    display: grid !important;
  }
  .full-popup .popup-container {
    display: block !important;
    padding: 15px;
  }
  .full-popup .pop-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .full-popup .featured-image-side {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .full-popup .featured-image-side .image-container {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    border-radius: 12px;
  }
  .full-popup .featured-image-side .image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .full-popup .pop-info {
    width: 100% !important;
  }
  .full-popup .pop-info .info-grid {
    display: flex !important;
    flex-direction: column !important;
  }
  .full-popup .pop-info .info-grid .info-card {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 15px 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
  }
  .full-popup .pop-info .info-grid .info-card h3 {
    margin-bottom: 5px !important;
    font-size: 1.1rem;
  }
  .full-popup .pop-info .info-grid .info-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 !important;
  }
  .full-popup .pop-pricing {
    flex-direction: column;
    margin-top: 20px;
  }
  .full-popup .pop-pricing .price-box, .full-popup .pop-pricing .enroll-box {
    width: 100% !important;
    padding: 15px !important;
    height: auto !important;
  }
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(5, 20, 20, 0.98) 0%, rgb(0, 5, 5) 100%);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.popup-overlay.show .popup-wrapper {
  transform: translateY(0) scale(1);
}
.popup-overlay .popup-wrapper {
  position: relative;
  width: 95%;
  max-width: 1300px;
  max-height: 90vh;
  overflow-y: auto;
  background: radial-gradient(circle at top right, #0a2e2e 0%, #011616 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transform: translateY(20px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.popup-overlay .popup-wrapper::-webkit-scrollbar {
  width: 6px;
}
.popup-overlay .popup-wrapper::-webkit-scrollbar-thumb {
  background: #20c997;
  border-radius: 10px;
}
.popup-overlay .close-popup {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.popup-overlay .close-popup:hover {
  background: #20c997;
  color: black;
  transform: rotate(90deg);
}

.featured {
  padding: 80px 50px;
  position: relative;
}
.featured .section-divider {
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(32, 201, 151, 0.2), transparent);
}
.featured .container {
  display: flex;
  flex-direction: column;
}
.featured .featured-header {
  max-width: 500px;
  text-align: left;
}
.featured .featured-header .section-label {
  display: inline-flex;
  padding: 6px 14px;
  background: rgba(32, 201, 151, 0.1);
  border: 1px solid rgba(32, 201, 151, 0.2);
  color: #20c997;
  border-radius: 100px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.featured .featured-header h2 {
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 1000;
  line-height: 1.1;
  margin-bottom: 20px;
}
.featured .featured-header h2 span {
  color: #20c997;
}
.featured .featured-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}
.featured .featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1100px) {
  .featured .featured-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.featured .featured-image-side .image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}
.featured .featured-image-side .image-container img {
  width: 100%;
  display: block;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.featured .featured-image-side .image-container .glow-effect {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(32, 201, 151, 0.15);
  pointer-events: none;
}
.featured .featured-image-side .image-container:hover img {
  transform: scale(1.04);
}
.featured .featured-text-side .featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 650px) {
  .featured .featured-text-side .featured-grid {
    grid-template-columns: 1fr;
  }
}
.featured .featured-text-side .step-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.featured .featured-text-side .step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #20c997;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.featured .featured-text-side .step-card .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.featured .featured-text-side .step-card .card-header .step-count {
  font-size: 1rem;
  font-weight: 900;
  color: #20c997;
  opacity: 0.5;
}
.featured .featured-text-side .step-card .card-header .icon-line {
  height: 1px;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.1);
}
.featured .featured-text-side .step-card h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.featured .featured-text-side .step-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}
.featured .featured-text-side .step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-5px);
}
.featured .featured-text-side .step-card:hover::before {
  transform: scaleX(1);
}
.featured .featured-text-side .step-card:hover .step-count {
  opacity: 1;

  
}/*# sourceMappingURL=main.css.map */