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

/* Body Styles */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a40 50%, #2d1b69 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}
.intro-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.intro-text h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #64ffda 0%, #7c4dff 50%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

.tagline {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: #b39ddb;
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

.intro-description {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  text-align: left;
  background: linear-gradient(
    135deg,
    rgba(100, 255, 218, 0.08) 0%,
    rgba(124, 77, 255, 0.06) 50%,
    rgba(255, 107, 157, 0.04) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(100, 255, 218, 0.25);
  border-radius: 25px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(100, 255, 218, 0.1);
  transition: all 0.3s ease;
}

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

.intro-description:hover::before {
  left: 100%;
}

.intro-description:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(100, 255, 218, 0.15);
  border-color: rgba(100, 255, 218, 0.4);
}

.intro-description p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: #e8e4f3;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.intro-description p:last-child {
  margin-bottom: 0;
}

.intro-description p:first-child::before {
  content: "💼";
  font-size: 1.5rem;
  margin-right: 0.8rem;
  vertical-align: middle;
}

.intro-description p:last-child::before {
  content: "🚀";
  font-size: 1.5rem;
  margin-right: 0.8rem;
  vertical-align: middle;
}

.intro-description strong {
  color: #64ffda;
  font-weight: 600;
  background: linear-gradient(135deg, #64ffda 0%, #7c4dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
  position: relative;
}

.intro-description strong::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #64ffda, #7c4dff);
  opacity: 0.3;
  border-radius: 1px;
}
.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Section */
header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.intro-text h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #64ffda 0%, #7c4dff 50%, #ff6b9d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
}

.tagline {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: #b39ddb;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.email {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #64ffda;
  font-weight: 500;
  margin-bottom: 3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.email:hover {
  color: #ffffff;
  text-shadow: 0 0 20px #64ffda;
}

/* Navigation Cards */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  padding: 0 1rem;
}

.nav-card {
  background: rgba(100, 255, 218, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(100, 255, 218, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-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.5s;
}

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

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

.nav-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #64ffda;
  font-weight: 600;
}

.nav-card p {
  color: #b39ddb;
  font-size: 1rem;
  line-height: 1.5;
}

/* Content Sections */
.content-section {
  margin: 6rem 0;
  padding: 4rem 2rem;
  background: rgba(100, 255, 218, 0.02);
  border-radius: 30px;
  border: 1px solid rgba(100, 255, 218, 0.1);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, #64ffda 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Experience Section */
.job {
  margin-bottom: 4rem;
  padding: 2rem;
  background: rgba(124, 77, 255, 0.05);
  border-radius: 20px;
  border-left: 4px solid #7c4dff;
}

.job h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.job h4 {
  font-size: 1.3rem;
  color: #64ffda;
  margin: 2rem 0 1rem 0;
  font-weight: 500;
}

.job ul {
  list-style: none;
  padding: 0;
}

.job li {
  margin: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: #e1bee7;
  line-height: 1.6;
}

.job li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #64ffda;
  font-size: 0.8rem;
}

/* Skills Section */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.skill-category {
  background: linear-gradient(
    135deg,
    rgba(124, 77, 255, 0.1) 0%,
    rgba(100, 255, 218, 0.1) 100%
  );
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(124, 77, 255, 0.3);
}

.skill-category h3 {
  color: #7c4dff;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.skill-tag {
  background: rgba(100, 255, 218, 0.15);
  color: #64ffda;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(100, 255, 218, 0.3);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(100, 255, 218, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.cert-item {
  background: linear-gradient(
    135deg,
    rgba(100, 255, 218, 0.1) 0%,
    rgba(124, 77, 255, 0.1) 100%
  );
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(100, 255, 218, 0.2);
  text-align: center;
  align-items: center;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
}

.cert-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.cert-item strong {
  color: #64ffda;
  font-size: 1.1rem;
}

/* Reviews Section */
.reviews-section {
  position: relative;
}

.reviews-scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 2rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.reviews-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.reviews-scroll-container::-webkit-scrollbar-track {
  background: rgba(100, 255, 218, 0.1);
  border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #64ffda, #7c4dff);
  border-radius: 10px;
}

.reviews-scroll-container::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #7c4dff, #ff6b9d);
}

.reviews-scroll-container {
  display: flex;
  justify-content: center; /* Center items when few */
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  scroll-behavior: smooth;
}

.review-card {
  flex: 0 0 350px;
  background: linear-gradient(
    135deg,
    rgba(124, 77, 255, 0.1),
    rgba(100, 255, 218, 0.05)
  );
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(124, 77, 255, 0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(124, 77, 255, 0.1);
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(100, 255, 218, 0.15),
    transparent
  );
  transition: all 0.6s ease;
}

.review-card:hover::before {
  left: 125%;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(100, 255, 218, 0.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  color: #b39ddb;
  font-size: 1rem;
  background: transparent;
}

footer a {
  color: #b39ddb;
  text-decoration: underline;
  transition: color 0.3s;
}

footer a:hover {
  color: #64ffda;
}
