:root {
  --primary-color: #1FD5F9;
  --secondary-color: #3B82F6;
  --accent-color: #22d3ee;
  --bg-dark: #0a0e1a;
  --bg-darker: #050810;
  --bg-card: #151b2e;
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #1e293b;

  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 18px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 184, 212, 0.3);
}

.btn-primary.large {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--border-color);
  transition: border-color 0.3s, background 0.3s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  background: rgba(0, 184, 212, 0.1);
}

.btn-secondary.large {
  padding: 14px 32px;
  font-size: 16px;
}

.hero {
  padding: 140px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  max-width: 100% !important;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 184, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-subtitle {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid;
border-radius: 15px;
padding:5px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-icon {
  font-size: 32px;
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-text strong {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.stat-text span {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 16px;
}

/*.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  position: relative;
  width: 400px;
  height: 400px;
}

.image-circle {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 184, 212, 0.2), rgba(34, 211, 238, 0.1));
  border-radius: 50%;
  border: 3px solid rgba(0, 184, 212, 0.3);
  position: relative;
}

.image-circle::after {
  content: '';
  position: absolute;
  inset: 20px;
  background: var(--bg-card);
  border-radius: 50%;
}

.image-label {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 184, 212, 0.3);
}*/
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  position: relative;
  width: 400px;
  height: 400px;
}

/* OUTER CIRCLE */
.image-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 184, 212, 0.25),
    rgba(34, 211, 238, 0.15)
  );
  border: 3px solid rgba(0, 184, 212, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* INNER CIRCLE (MASK) */
.image-inner {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  border-radius: 50%;
  overflow: hidden; 
  background: var(--bg-card);
  display: flex;
  align-items: flex-start;
  justify-content: center;
      clip-path: ellipse(73% 98% at 48% 1%)
  
}

/* IMAGE */
.image-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* NAME LABEL */
.image-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 184, 212, 0.3);
  z-index: 2;
}


.scroll-indicator {
  /*position: absolute;*/
  /*bottom: 40px;*/
  /*left: 50%;*/
  /*transform: translateX(-50%);*/
      position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 111111111;
    border: 1px solid;
    padding: 10px;
    border-radius: 15px;
}


.scroll-dots {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--border-color);
  border-radius: 50%;
  transition: background 0.3s, height 0.3s;
}

.dot.active {
  background: var(--primary-color);
  height: 24px;
  border-radius: 4px;
}

.services {
  padding: 120px 0;
  background: var(--bg-darker);
}

.section-label {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  text-align: center;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.section-description {
  color: var(--text-secondary);
  font-size: 18px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(0, 184, 212, 0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  background: rgba(0, 184, 212, 0.1);
  color: var(--primary-color);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.why-me {
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(0, 184, 212, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.skills {
  padding: 120px 0;
  background: var(--bg-darker);
}

.skills-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.skill-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 16px;
}

.skill-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.skill-category {
  padding: 4px 12px;
  background: rgba(0, 184, 212, 0.1);
  color: var(--primary-color);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.skill-percentage {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-left: auto;
}

.skill-bar {
  height: 8px;
  background: var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 4px;
  width: 0;
  transition: width 1s ease-out;
}

.skill-progress.animated {
  width: var(--progress-width);
}

.cta-section {
  padding: 120px 0;
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
}

.cta-description {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.benefit {
  color: var(--text-secondary);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border-color);
  padding: 64px 0 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  gap: 32px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}

.footer-social a:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .image-placeholder {
    width: 300px;
    height: 300px;
  }

  .nav-links {
    display: none;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 36px;
  }

  .cta-title {
    font-size: 36px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 28px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-benefits {
    flex-direction: column;
    gap: 12px;
  }
}
