* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #000;
  color: #fff;
}

/* NAV */

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.logo img {
  width: 22px;     
  height: 22px;
}

.nav {
  height: 80px;
  padding: 0 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.contact-btn {
  background: #7c5cff;
  border: none;
  padding: 10px 20px;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}


.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 90px;
  min-height: calc(100vh - 80px);
}

.hero-left {
  max-width: 900px;
}


.title {
  font-size: 140px;        
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
}

/* NAME */
.name {
  margin-top: 20px;
  font-size: 42px;
  font-weight: 700;
  width: 100%;
}




.name span {
  background: linear-gradient(90deg, #ff5f6d, #ffc371);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ICONS */
.social-icons {
  display: flex;
  gap: 14px;
  margin: 30px 0;
}

.icon {
  width: 44px;
  height: 44px;
  border: 1px solid #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.icon {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.icon:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}


/* CV BAR */
.cv-bar {
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
  background: #222;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

/* RIGHT IMAGE */
.hero-right img {
  height: 620px; 
  width: 600px;       
  border-radius: 7px;
}


/* STATS */
.stats {
  margin: 60px 90px;
  padding: 40px 60px;
  background: #0d0d0d;
  border-radius: 20px;
  
  border: 3px solid rgba(255, 255, 255, 0.1);


  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat h2 {
  font-size: 64px;
  font-weight: 800;
  color: #c9ffcf;
}

.stat p {
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.3;
  color: #c9ffcf;
}

.divider {
  font-size:170px;
  color: #c9ffcf;
}

/* PORTFOLIO */
.portfolio {
  padding: 40px 90px 80px;
}

.portfolio-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.portfolio-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.portfolio-card {
  background: #0d0d0d;
  border-radius: 16px;
  padding: 14px;

  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}


.portfolio-card img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}

.portfolio-card h4 {
  margin: 14px 0 10px;
  font-size: 16px;
}

.tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.tags span {
  font-size: 11px;
  padding: 4px 10px;
  background: #7c5cff;
  border-radius: 12px;
}

.portfolio-card button {
  width: 100%;
  background: #1a1a1a;
  border: none;
  color: #ccc;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}



/* SKILLS SECTION */
.skills-section {
  padding: 80px 90px;
}

.skills-title {
  font-size: 42px;
  margin-bottom: 40px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.skill-card {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: #0d0d0d;
  border-radius: 18px;
  border: 1px solid rgba(195, 191, 191, 0.5);
}

/* PROGRESS RING */
.progress-ring {
  position: relative;
  width: 180px;
  height: 180px;
}

.progress-ring svg {
  transform: rotate(120deg);
}

.progress-ring circle {
  fill: none;
  stroke-width: 16;
  stroke-linecap: round;
}

.progress-ring .bg {
  stroke: rgba(255,255,255,0.08);
}

.progress-ring .fg {
  stroke: url(#grad);
  stroke-dasharray: 457;
  stroke-dashoffset: 457;
  transition: stroke-dashoffset 1.2s ease;
}

.progress-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

/* TEXT CONTENT */
.skill-content h3 {
  font-size: 32px;
  margin-bottom: 12px;
}

.skill-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #cfcfcf;
}


/* TESTIMONIAL FULL WIDTH */
.testimonial-full {
  width: 100%;
  min-height: 420px;
  padding: 80px 20px;

  background: linear-gradient(
    90deg,
    #ff512f 0%,
    #f09819 50%,
    #ff512f 100%
  );

  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-content {
  max-width: 1100px;
  text-align: center;
  color: #fff;
}

.testimonial-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

.testimonial-content p {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
}

.testimonial-icon {
  margin-top: 40px;
  font-size: 48px;
  opacity: 0.95;
}


/* FOOTER CTA */
.footer-cta {
    margin-top: 80px;
  padding: 80px 90px;
}

.cta-card {
  position: relative;
  background: #a884f7;
  border-radius: 20px;
  padding: 40px 60px 40px 260px;
  display: flex;
  align-items: center;
  min-height: 220px;
}

/* IMAGE */
.cta-image {
  position: absolute;
  left: 30px;
  top: -100px;
  width: 200px;
  border-radius: 14px;
  overflow: hidden;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.cta-text {
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  max-width: 700px;
}

/* DECORATIVE LINES */
.cta-lines {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
}

.cta-lines.left {
  left: 20px;
  bottom: 20px;
  border-right: none;
  border-top: none;
}

.cta-lines.right {
  right: 20px;
  top: 20px;
  border-left: none;
  border-bottom: none;
}

/* FOOTER */
.footer {
  padding: 40px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.4);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
}

.footer-left img {
  width: 26px;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 40px;
}

.footer-menu li {
  cursor: pointer;
  font-size: 16px;
}




@media (min-width: 1600px) {
  .nav,
  .hero,
  .stats,
  .portfolio,
  .skills-section,
  .footer,
  .footer-cta {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 1400px) {
  .title {
    font-size: 120px;
  }

  .hero-right img {
    width: 520px;
    height: auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 1200px) {
  .nav {
    padding: 0 50px;
  }

  .hero {
    padding: 60px 50px;
  }

  .stats {
    padding: 40px;
    gap: 30px;
  }

  .stat p {
    font-size: 20px;
  }

  .portfolio {
    padding: 40px 50px 70px;
  }

  .skills-section {
    padding: 60px 50px;
  }

  .footer,
  .footer-cta {
    padding-left: 50px;
    padding-right: 50px;
  }
}


@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .hero-left {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .hero-right img {
    width: 100%;
    max-width: 480px;
  }

  .stats {
    flex-direction: column;
    text-align: center;
  }

  .divider {
    display: none;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer {
    flex-direction: column;
    gap: 25px;
  }
}


@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }

  .menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    padding: 40px 20px;
  }

  .title {
    font-size: 70px;
    line-height: 1.05;
  }

  .name {
    font-size: 30px;
  }

  .cv-bar {
    max-width: 100%;
  }

  .stats {
    margin: 40px 20px;
    padding: 30px 20px;
  }

  .portfolio {
    padding: 40px 20px 60px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .skills-section {
    padding: 40px 20px;
  }

  .footer-cta {
    padding: 40px 20px;
  }

  .cta-card {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
  }

  .cta-image {
    position: static;
    width: 100%;
    max-width: 260px;
    margin-bottom: 20px;
  }

  .footer {
    padding: 30px 20px;
    text-align: center;
  }

  .footer-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}


@media (max-width: 480px) {
  .title {
    font-size: 48px;
  }

  .stat h2 {
    font-size: 46px;
  }

  .stat p {
    font-size: 16px;
  }

  .testimonial-content h3 {
    font-size: 28px;
  }

  .testimonial-content p {
    font-size: 20px;
  }

  .progress-ring {
    width: 140px;
    height: 140px;
  }

  .progress-ring svg {
    width: 140px;
    height: 140px;
  }

  .progress-ring span {
    font-size: 22px;
  }
}