/* ==========================================
   CSS Variables & Base Styles
   ========================================== */
:root {
  /* Primary Colors */
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;

  /* Accent Colors */
  --accent-color: #f59e0b;
  --accent-light: #fbbf24;

  /* Neutral Colors */
  --dark-bg: #0f172a;
  --dark-secondary: #1e293b;
  --dark-tertiary: #334155;
  --light-text: #f1f5f9;
  --gray-text: #cbd5e1;
  --white: #ffffff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.3);

  /* Typography */
  --font-primary: "Syne", sans-serif;
  --font-secondary: "Work Sans", sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Spacing */
  --section-padding: 100px 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--gray-text);
  background-color: var(--dark-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--light-text);
  font-weight: 700;
  line-height: 1.2;
}

.w-max-content {
  width: max-content !important;
}

a {
  text-decoration: none;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: var(--section-padding);
}

/* ==========================================
   Preloader
   ========================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(37, 99, 235, 0.2);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: var(--light-text);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
  padding: 20px 0;
  background: transparent;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--light-text);
}

.brand-initial {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  transition: var(--transition-normal);
}

.navbar-brand:hover .brand-initial {
  transform: rotate(5deg) scale(1.1);
}

.navbar-nav .nav-link {
  color: var(--gray-text);
  font-weight: 500;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 8px;
  transition: var(--transition-normal);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--gradient-primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--gradient-accent);
  bottom: -150px;
  left: -150px;
  animation-delay: 7s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.hero-content {
  padding: 40px 0;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 10px;
  animation: slideInLeft 1s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: slideInLeft 1s ease 0.2s backwards;
}

.name-highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 25px;
  min-height: 80px;
  animation: slideInLeft 1s ease 0.4s backwards;
}

.typed-text {
  font-weight: 700;
}

.cursor {
  display: inline-block;
  background-color: var(--accent-color);
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  49% {
    background-color: var(--accent-color);
  }
  50%,
  100% {
    background-color: transparent;
  }
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 35px;
  max-width: 600px;
  animation: slideInLeft 1s ease 0.6s backwards;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  animation: slideInLeft 1s ease 0.8s backwards;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--white);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 12px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-outline-light {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 12px;
  background: transparent;
  transition: all var(--transition-normal);
}

.btn-outline-light:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.social-links {
  display: flex;
  gap: 15px;
  animation: slideInLeft 1s ease 1s backwards;
}

.social-link {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border: 2px solid rgba(37, 99, 235, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.3rem;
  transition: all var(--transition-normal);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInScale 1s ease 0.5s backwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.profile-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-normal);
}

.profile-card:hover {
  transform: translateY(-10px);
}

.profile-image-container {
  margin-bottom: 30px;
}

.profile-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  background: var(--gradient-primary);
  background-image: url("../images/profile_img.jpeg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.initials {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-primary);
}

.status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-text);
  font-size: 0.95rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  animation: blink-dot 2s infinite;
}

@keyframes blink-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  padding: 20px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.stat-item:hover {
  background: rgba(37, 99, 235, 0.2);
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.mouse {
  width: 28px;
  height: 45px;
  border: 2px solid var(--primary-light);
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* ==========================================
   Section Headers
   ========================================== */
.section-header {
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-light);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-text);
  margin: 0 auto;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
  background: var(--dark-secondary);
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.about-image {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.about-image:hover {
  transform: rotate(0deg) scale(1.05);
}

.about-initials {
  font-size: 6rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-primary);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.badge-content {
  text-align: center;
  animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.badge-content h3 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0;
}

.badge-content p {
  font-size: 0.9rem;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.about-content {
  padding-left: 30px;
}

.about-heading {
  font-size: 2rem;
  margin-bottom: 25px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  margin: 40px 0;
}

.highlight-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
  transition: all var(--transition-normal);
}

.highlight-item:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateX(10px);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.highlight-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.highlight-content p {
  margin: 0;
  color: var(--gray-text);
}

.personal-info {
  background: rgba(37, 99, 235, 0.05);
  padding: 21px;
  border-radius: 16px;
  margin: 40px 0;
}

.info-title {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-light);
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  color: var(--light-text);
  font-weight: 600;
}

.hobbies-section {
  margin-top: 40px;
}

.hobby-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.hobby-tag {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.hobby-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.hobby-description {
  color: var(--gray-text);
  font-style: italic;
}

/* ==========================================
   Skills Section
   ========================================== */
.skills-section {
  background: var(--dark-bg);
}

.skills-category {
  margin-bottom: 60px;
}

.category-title {
  font-size: 2rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.skill-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  transition: all var(--transition-normal);
}

.skill-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.skill-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(37, 99, 235, 0.2);
}

.skill-icon {
  font-size: 2rem;
  color: var(--primary-light);
}

.skill-header h4 {
  font-size: 1.3rem;
  margin: 0;
}

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

.skill-list li {
  padding: 10px 0;
  color: var(--gray-text);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color var(--transition-fast);
}

.skill-list li:hover {
  color: var(--light-text);
}

.skill-list i {
  color: var(--primary-light);
  font-size: 1rem;
}

/* Soft Skills */
.soft-skill-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all var(--transition-normal);
}

.soft-skill-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.soft-skill-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.soft-skill-card:hover .soft-skill-icon {
  transform: scale(1.1) rotate(5deg);
}

.soft-skill-icon i {
  font-size: 2rem;
  color: var(--white);
}

.soft-skill-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.soft-skill-card p {
  margin: 0;
  color: var(--gray-text);
}

/* Strengths */
.strengths-section {
  background: rgba(37, 99, 235, 0.05);
  padding: 40px;
  border-radius: 16px;
}

.strengths-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(30, 41, 59, 0.5);
  padding: 20px 35px;
  border-radius: 50px;
  border: 2px solid var(--primary-color);
  transition: all var(--transition-normal);
}

.strength-item:hover {
  background: var(--gradient-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.strength-item i {
  font-size: 1.8rem;
  color: var(--accent-light);
}

.strength-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--light-text);
}

/* ==========================================
   Experience Section
   ========================================== */
.experience-section {
  background: var(--dark-secondary);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
  /* margin-left: auto; */
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border: 4px solid var(--dark-secondary);
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-marker {
  transform: translateX(-50%) scale(1.2);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.timeline-marker i {
  font-size: 1.5rem;
  color: var(--white);
}

.timeline-content {
  width: calc(50% - 60px);
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 35px;
  transition: all var(--transition-normal);
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: calc(50% + 60px);
}

.timeline-content:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.timeline-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.timeline-company {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--light-text);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.company-location {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 400;
  margin-left: 34px;
  margin-bottom: 15px;
}

.timeline-project {
  color: var(--gray-text);
  margin-bottom: 15px;
  font-style: italic;
}

.timeline-description {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.timeline-responsibilities h5 {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 15px;
}

.timeline-responsibilities ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.timeline-responsibilities li {
  color: var(--gray-text);
  margin-bottom: 10px;
  line-height: 1.7;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(37, 99, 235, 0.2);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.tag:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ==========================================
   Education Section
   ========================================== */
.education-section {
  background: var(--dark-bg);
}

.education-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all var(--transition-normal);
  margin-bottom: 30px;
}

.education-card:hover {
  transform: translateY(-15px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.education-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.education-card:hover .education-icon {
  transform: scale(1.1) rotate(10deg);
}

.education-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.education-year {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  color: var(--primary-light);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.education-degree {
  font-size: 1.3rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.education-school {
  font-size: 1.05rem;
  color: var(--gray-text);
  font-weight: 500;
  margin-bottom: 8px;
}

.education-location {
  color: var(--gray-text);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.education-grade {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.grade-label {
  color: var(--gray-text);
  font-weight: 500;
}

.grade-value {
  color: var(--accent-light);
  font-size: 1.2rem;
  font-weight: 700;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-section {
  background: var(--dark-secondary);
}

.contact-info {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  height: 100%;
}

.contact-info-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-info-text {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.contact-item:hover {
  background: rgba(37, 99, 235, 0.1);
  transform: translateX(10px);
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.contact-item-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-item-content p {
  margin: 0;
  color: var(--gray-text);
}

.contact-item-content a {
  color: var(--primary-light);
  transition: color var(--transition-fast);
}

.contact-item-content a:hover {
  color: var(--accent-light);
}

.social-links-contact {
  display: flex;
  gap: 15px;
}

.social-link-contact {
  width: 50px;
  height: 50px;
  background: rgba(37, 99, 235, 0.1);
  border: 2px solid rgba(37, 99, 235, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.3rem;
  transition: all var(--transition-normal);
}

.social-link-contact:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Contact Form */
.contact-form-wrapper {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--light-text);
  font-weight: 500;
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  padding: 15px 45px 15px 15px;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--light-text);
  font-family: var(--font-secondary);
  transition: all var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

.form-icon {
  position: absolute;
  right: 15px;
  top: 43px;
  color: var(--gray-text);
  transition: color var(--transition-fast);
}

.form-control:focus ~ .form-icon {
  color: var(--primary-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.form-status {
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  display: none;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #10b981;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #ef4444;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: var(--dark-bg);
  padding: 30px 0 30px;
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
}

.footer-brand {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--light-text);
  margin-bottom: 15px;
}

.footer-description {
  color: var(--gray-text);
  line-height: 1.7;
}

.footer-title {
  font-size: 1.3rem;
  color: var(--light-text);
  margin-bottom: 20px;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--gray-text);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

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

.footer-contact ul li {
  color: var(--gray-text);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
}

.footer-contact a {
  color: var(--gray-text);
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--primary-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(37, 99, 235, 0.1);
  border: 2px solid rgba(37, 99, 235, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--gray-text);
}

.footer-bottom i {
  color: #ef4444;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10%,
  30% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(0.9);
  }
}

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 100%;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    #about {
        overflow-x: hidden;
    }
}

@media (max-width: 991px) {
    .banner-container {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;   
    }
    .hero-image-wrapper {
        padding-bottom: 5.8em;
    }
    #navbarNav {
        background: #000000;
    }
  .hero-title {
    font-size: 3rem;
  }
  .edu-section {
    margin-bottom: 18px;
  }
  .hero-subtitle {
    margin-top: 3rem;
  }

  .hero-role {
    font-size: 2rem;
    min-height: unset;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-marker {
    left: 30px;
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }

  .about-content {
    padding-left: 0;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-role {
    font-size: 1.5rem;
    min-height: unset;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .soft-skill-card {
    margin-bottom: 20px;
  }

  .strengths-wrapper {
    flex-direction: column;
  }

  .strength-item {
    width: 100%;
  }

  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-role {
    font-size: 1.2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  .brand-initial {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}
