* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ==================== Navbar Styles ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideFromTop 0.8s ease forwards;
}

.nav-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.3rem;
  animation: fadeIn 0.8s ease forwards;
}

.logo-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
  object-fit: contain;
}

.logo:hover .logo-icon {
  transform: rotate(360deg);
}

.logo span {
  font-size: 1.2rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #64ffda;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #64ffda;
}

.nav-links a:hover::after {
  width: 100%;
}

.availability-badge {
  background: rgba(100, 255, 218, 0.1);
  color: #64ffda;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9rem;
  border: 1px solid rgba(100, 255, 218, 0.2);
  animation: pulseGlow 2s infinite;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.availability-badge:hover {
  background: rgba(100, 255, 218, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

/* ==================== Hero Section ==================== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(100,255,218,0.1) 0%, transparent 70%);
  animation: rotateSlow 20s linear infinite;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideFromTop 0.8s ease forwards, glowPulse 3s infinite;
  color: #ffffff;
}

.star {
  color: #64ffda;
  margin-right: 5px;
  animation: spin 4s linear infinite;
  display: inline-block;
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: 700;
  animation: slideFromLeft 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  color: #ffffff;
}

.highlight {
  color: #64ffda;
  position: relative;
  display: inline-block;
  animation: glowPulse 3s infinite;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #64ffda, transparent);
  animation: slideLine 2s infinite;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #8892b0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: slideFromRight 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  animation: slideFromBottom 0.8s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.btn-primary {
  background-color: #64ffda;
  color: #0a0a0a;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-primary:hover {
  background-color: #4cd8b5;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100,255,218,0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.btn-secondary:hover {
  border-color: #64ffda;
  color: #64ffda;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.btn-secondary:hover::before {
  left: 100%;
}

.client-logos {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.7;
  animation: zoomIn 0.8s ease forwards;
  animation-delay: 0.8s;
}

.client-logos span {
  color: #8892b0;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  cursor: default;
}

.client-logos span:hover {
  color: #64ffda;
  transform: scale(1.1);
}

.client-logos span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #64ffda;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.client-logos span:hover::after {
  width: 80%;
}

/* ==================== About Intro Section ==================== */
.about-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
  border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.about-intro::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.03) 0%, transparent 70%);
  animation: rotateSlow 30s linear infinite;
}

.about-intro-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-intro-text {
  color: #8892b0;
  font-size: 1.2rem;
  line-height: 1.8;
  margin-top: 30px;
  animation: fadeInUp 0.8s ease forwards;
  transition: all 0.3s ease;
  position: relative;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-intro-text:hover {
  color: #ffffff;
  transform: translateY(-5px);
  border-color: rgba(100, 255, 218, 0.3);
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.about-intro-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #64ffda, transparent);
  transition: all 0.5s ease;
  transform: translateX(-50%);
}

.about-intro-text:hover::after {
  width: 80%;
}

/* ==================== Skills Section ==================== */
.skills-section {
  padding: 100px 0;
  background-color: #0f0f0f;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.skills-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(100,255,218,0.05) 0%, transparent 70%);
  animation: rotateSlow 25s linear infinite reverse;
}

.section-label {
  color: #64ffda;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  animation: slideFromTop 0.6s ease forwards;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  animation: slideFromLeft 0.7s ease forwards;
  animation-delay: 0.1s;
  opacity: 0;
  color: #ffffff;
}

.section-label2 {
  color: #8892b0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 50px;
  animation: slideFromRight 0.7s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.skill-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100,255,218,0.1), transparent);
  transition: left 0.6s ease;
}

.skill-card:hover::before {
  left: 100%;
}

.skill-card:nth-child(1) { animation: slideFromLeft 0.6s ease forwards; animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation: slideFromLeft 0.6s ease forwards; animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation: slideFromLeft 0.6s ease forwards; animation-delay: 0.3s; }

.skill-card:hover {
  transform: translateY(-5px);
  border-color: #64ffda;
  box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

.skill-card h3 {
  color: #64ffda;
  margin-bottom: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.skill-card:hover h3 {
  transform: scale(1.05);
  color: #ffffff;
}

.skill-list {
  list-style: none;
}

.skill-list li {
  color: #8892b0;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.skill-list li:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.skill-list li::before {
  content: "▹";
  color: #64ffda;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.skill-list li:hover::before {
  transform: scale(1.2);
  color: #ffffff;
}

/* ==================== WordPress Section ==================== */
.wordpress-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wordpress-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.wordpress-paragraph {
  color: #8892b0;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 30px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.wordpress-paragraph p {
  transition: all 0.3s ease;
}

.wordpress-paragraph p:hover {
  color: #ffffff;
  transform: scale(1.02);
}

/* ==================== Case Studies Section ==================== *//* ==================== Case Studies Section ==================== */
.case-studies {
  padding: 100px 0;
  background-color: #0a0a0a;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-description {
  color: #8892b0;
  font-size: 1.1rem;
  margin: 0 auto 50px;
  max-width: 600px;
  animation: slideFromBottom 0.7s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.projects-row {
  display: grid;
  gap: 30px;
  justify-content: center;
}

/* 2 columns for desktop */
.row-2 {
  grid-template-columns: repeat(2, minmax(400px, 500px));
  justify-content: center;
}

/* Make all cards behave normally */
.case-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: slideFromLeft 0.7s ease forwards;
}

/* Stagger animations for all cards */
.projects-row .case-card:nth-child(1) { animation-delay: 0.1s; }
.projects-row .case-card:nth-child(2) { animation-delay: 0.3s; }
.projects-row .case-card:nth-child(3) { animation-delay: 0.5s; }
.projects-row .case-card:nth-child(4) { animation-delay: 0.7s; }

.case-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100,255,218,0.1), transparent);
  transition: left 0.8s ease;
}

.case-card:hover::before {
  left: 100%;
}

.case-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #64ffda, transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.case-card:hover::after {
  transform: translateX(100%);
}

.case-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: #64ffda;
  box-shadow: 0 0 40px rgba(100, 255, 218, 0.3);
}

/* Rest of your case-card styles remain the same */
.case-year {
  color: #64ffda;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.case-card:hover .case-year {
  letter-spacing: 2px;
}

.case-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.case-card:hover .case-title {
  color: #64ffda;
  transform: translateX(5px);
}

.project-section {
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.case-card:hover .project-section {
  transform: translateX(3px);
}

.section-heading {
  color: #64ffda;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.case-card:hover .section-heading {
  letter-spacing: 2px;
}

.project-text {
  color: #8892b0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.case-card:hover .project-text {
  color: #ffffff;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.tech-badge {
  background: rgba(100, 255, 218, 0.1);
  color: #64ffda;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  border: 1px solid rgba(100, 255, 218, 0.2);
  transition: all 0.3s ease;
  cursor: default;
}

.tech-badge:hover {
  background: rgba(100, 255, 218, 0.2);
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
  border-color: #64ffda;
}

.project-link {
  margin-top: 20px;
  transition: all 0.3s ease;
}

.case-card:hover .project-link {
  transform: translateX(5px);
}

.case-link {
  color: #64ffda;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.case-link::after {
  content: '→';
  margin-left: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.case-link:hover {
  transform: translateX(10px);
  text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.hero-image-container img{
  height: 60px;

}

.case-link:hover::after {
  transform: translateX(5px);
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .row-2 {
    grid-template-columns: 1fr;
  }
  
  .case-card {
    padding: 20px;
  }
}
/* ==================== Section Base ==================== */

.clean-progress {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.clean-progress::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(100, 255, 218, 0.03) 0%, transparent 70%);
    animation: rotateSlow 25s linear infinite;
}

/* ==================== Header ==================== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    color: #64ffda;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.section-description {
    color: #8892b0;
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== Vertical Chart ==================== */

.vertical-chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 30px;
    height: 300px;
    margin: 60px auto 80px;
    max-width: 1000px;
    padding: 40px 20px;
    position: relative;
}

/* Grid lines */
.vertical-chart::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 100% 25%;
    pointer-events: none;
}

/* Bar */
.v-bar {
    position: relative;
    width: 65px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Track */
.v-track {
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

/* Fill */
.v-fill {
    width: 100%;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(180deg, #64ffda, #4cd8b5);
    box-shadow: 0 0 10px rgba(100,255,218,0.3);
    transition: height 1s ease;
}

/* Value */
.v-value {
    position: absolute;
    top: -28px;
    font-size: 0.75rem;
    color: #64ffda;
    font-weight: 600;
}

/* Label */
.v-label {
    position: absolute;
    bottom: -30px;
    font-size: 0.7rem;
    color: #8892b0;
    text-align: center;
    width: 100%;
    letter-spacing: 0.5px;
}

/* In Progress */
.v-bar.in-progress .v-fill {
    background: linear-gradient(180deg, #9c27b0, #ba68c8);
    box-shadow: 0 0 10px rgba(156,39,176,0.4);
}

/* ==================== Stats ==================== */

.stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 25px 20px;
    min-width: 140px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

/* Top glow line */
.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #64ffda, transparent);
    opacity: 0.6;
}

/* Hover */
.stat-box:hover {
    transform: translateY(-6px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Number */
.stat-num {
    font-size: 1.7rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 8px;
}

/* Text */
.stat-txt {
    font-size: 0.7rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Animations ==================== */

@keyframes rotateSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================== Responsive ==================== */

@media (max-width: 900px) {
    .vertical-chart {
        gap: 20px;
        height: 260px;
    }

    .v-bar {
        width: 50px;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.7rem;
    }

    .vertical-chart {
        gap: 15px;
        height: 220px;
    }

    .v-bar {
        width: 40px;
    }

    .v-label {
        font-size: 0.6rem;
    }

    .stat-box {
        min-width: 100px;
        padding: 18px 12px;
    }

    .stat-num {
        font-size: 1.3rem;
    }

    .stat-txt {
        font-size: 0.6rem;
    }
}

.profile-title {
  color: #64ffda;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 20px;
}

.rating-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stars {
  color: #ffd700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-number {
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
}

.review-count {
  color: #8892b0;
  font-size: 0.95rem;
}

.profile-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.profile-link {
  color: #64ffda;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.profile-link i {
  font-size: 1rem;
  color: #64ffda;
}

.profile-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.profile-link:hover i {
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card {
  text-align: center;
  padding: 15px 10px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #64ffda;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  color: #8892b0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certifications {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cert-badge {
  background: linear-gradient(135deg, rgba(100, 255, 218, 0.15), rgba(100, 255, 218, 0.05));
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(100, 255, 218, 0.3);
  transition: all 0.3s ease;
}

.cert-badge:hover {
  background: rgba(100, 255, 218, 0.2);
  transform: translateY(-3px);
  border-color: #64ffda;
}

.languages {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.language {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 500;
}

.language-sep {
  color: #64ffda;
  font-size: 1.2rem;
}

/* ==================== Reviews Section ==================== */
.reviews-section {
  padding: 100px 0;
  background-color: #0f0f0f;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
  color: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  align-items: center;
  gap: 25px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.review-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: #64ffda;
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.15);
}

.review-stars {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: #8892b0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-metrics {
  margin: 15px 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border-left: 3px solid #64ffda;
}

.metric {
  display: block;
  color: #b0b0b0;
  font-size: 0.8rem;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.metric:hover {
  color: #64ffda;
  transform: translateX(5px);
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.reviewer-name {
  color: #64ffda;
  font-weight: 600;
}

.review-date {
  color: #8892b0;
  font-size: 0.8rem;
}

.full-review {
  color: #64ffda;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 10px;
}

.full-review:hover {
  transform: translateX(5px);
  color: #ffffff;
}

.view-more-reviews {
  margin-top: 40px;
}

/* ==================== FAQ Section ==================== */
.faq-section {
  padding: 100px 0;
  background-color: #0f0f0f;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.faq-grid {
  max-width: 800px;
  margin: 50px auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item:nth-child(1) { animation: slideFromLeft 0.6s ease forwards; animation-delay: 0.2s; }
.faq-item:nth-child(2) { animation: slideFromRight 0.6s ease forwards; animation-delay: 0.4s; }
.faq-item:nth-child(3) { animation: slideFromLeft 0.6s ease forwards; animation-delay: 0.6s; }

.faq-item:hover {
  border-bottom-color: #64ffda;
  transform: translateX(5px);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  border-radius: 10px;
}

.faq-question:hover {
  color: #64ffda;
  background: rgba(100, 255, 218, 0.05);
}

.faq-icon {
  color: #64ffda;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.faq-question:hover .faq-icon {
  transform: rotate(90deg);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  color: #8892b0;
  margin-top: 15px;
  display: none;
  line-height: 1.8;
  padding: 0 10px 10px;
  animation: fadeIn 0.5s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer:hover {
  color: #ffffff;
}

.response-time {
  color: #8892b0;
  font-style: italic;
  margin-top: 30px;
  animation: pulseGlow 2s infinite;
  transition: all 0.3s ease;
}

.response-time:hover {
  color: #64ffda;
  transform: scale(1.05);
}

/* ==================== Work Together Section ==================== */
.work-together-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.work-together-content {
  max-width: 600px;
  margin: 0 auto;
  animation: zoomIn 0.9s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
  position: relative;
  z-index: 1;
}

.work-together-title {
  font-size: 3rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  color: #ffffff;
}

.work-together-title:hover {
  color: #64ffda;
  transform: scale(1.05);
  text-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
}

.work-together-description {
  color: #8892b0;
  font-size: 1.2rem;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.work-together-description:hover {
  color: #ffffff;
  transform: scale(1.02);
}

.work-together-link {
  display: inline-block;
  background-color: #64ffda;
  color: #0a0a0a;
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.work-together-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.work-together-link:hover {
  background-color: #4cd8b5;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 40px rgba(100, 255, 218, 0.4);
}

.work-together-link:hover::before {
  left: 100%;
}

/* ==================== Footer ==================== */
.footer {
  padding: 50px 0;
  background-color: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.footer-content p {
  color: #8892b0;
  transition: all 0.3s ease;
}

.footer-content p:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icon {
  color: #8892b0;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(100,255,218,0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  border-radius: 50%;
  z-index: -1;
}

.social-icon:hover {
  color: #64ffda;
  transform: translateY(-5px) scale(1.2);
}

.social-icon:hover::before {
  width: 40px;
  height: 40px;
}

/* ==================== Mobile Responsive Styles ==================== */
@media screen and (max-width: 768px) {
  .nav-cont {
    height: 70px;
  }
  
  /* Hide name on mobile, keep only logo */
  .logo span {
    display: none;
  }
  
  /* Adjust logo size */
  .logo-icon {
    width: 40px;
    height: 40px;
  }
  
  /* Fix available badge size */
  .availability-badge {
    padding: 5px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .nav-links.active {
    max-height: 400px;
    padding: 20px 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  
  .nav-links a {
    display: block;
    padding: 10px;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    padding: 0 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .row-2 {
    grid-template-columns: 1fr;
  }
  
  .case-card {
    padding: 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }
  
  /* ==================== Reviews Slider Styles (Add to end of your CSS) ==================== */
.reviews-slider-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 50px;
}

.reviews-slider {
  overflow: hidden;
  border-radius: 20px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #64ffda;
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: #64ffda;
  color: #0a0a0a;
  border-color: #64ffda;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8892b0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #64ffda;
  width: 28px;
  border-radius: 10px;
}

.dot:hover {
  background: #64ffda;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-slider-container {
    padding: 0 35px;
  }
  
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
  /* Keep social links horizontal on mobile */
  .profile-links {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  
  .profile-link {
    font-size: 0.9rem;
    padding: 5px 10px;
  }
  
  .certifications {
    gap: 10px;
  }
  
  .cert-badge {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    padding: 0 20px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  /* About intro mobile */
  .about-intro {
    padding: 60px 0;
  }
  
  .about-intro-text {
    font-size: 1rem;
    line-height: 1.6;
    padding: 15px;
    margin: 0 10px;
  }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    max-width: 800px;
  }
}

@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .rating-container {
    flex-direction: column;
    gap: 5px;
  }
  
  .languages {
    flex-direction: column;
    gap: 10px;
  }
  
  .language-sep {
    display: none;
  }
  
  .profile-name {
    font-size: 2rem;
  }
  
  .work-together-title {
    font-size: 2rem;
  }
  
  .about-intro {
    padding: 50px 0;
  }
  
  .about-intro-text {
    font-size: 0.95rem;
    padding: 12px;
  }
  
  .about-intro-text::after {
    display: none;
  }
}

/* ==================== Keyframe Animations ==================== */
@keyframes slideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px rgba(100, 255, 218, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.6);
  }
  100% {
    box-shadow: 0 0 5px rgba(100, 255, 218, 0.3);
  }
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.6);
  }
  100% {
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.3);
  }
}

@keyframes slideLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}/* Reviews Slider Styles - Add to end of style.css */
.reviews-slider-container {
  position: relative;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 50px;
}

.reviews-slider {
  overflow: hidden;
  border-radius: 20px;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.review-slide {
  flex: 0 0 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

.review-card-slide {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
}

.review-card-slide:hover {
  transform: translateY(-5px);
  border-color: #64ffda;
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.15);
}

.review-text-slide {
  color: #8892b0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.review-metrics-slide {
  margin: 15px 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border-left: 3px solid #64ffda;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  color: #64ffda;
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: #64ffda;
  color: #0a0a0a;
  border-color: #64ffda;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8892b0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #64ffda;
  width: 28px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .reviews-slider-container {
    padding: 0 35px;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
  }
}
/* ==================== FAQ Section ==================== */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  cursor: pointer;
}

.faq-question {
  font-weight: 600;
  color: #ffffff;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  color: #8892b0;
  padding: 10px 0 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}