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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
}

.main-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
  position: relative;
}

.background-effects {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.blur-orb-1 {
  top: -10rem;
  right: -10rem;
  width: 20rem;
  height: 20rem;
  background: rgba(59, 130, 246, 0.4);
}

.blur-orb-2 {
  top: 10rem;
  left: -10rem;
  width: 20rem;
  height: 20rem;
  background: rgba(6, 182, 212, 0.4);
}

.blur-orb-3 {
  bottom: 10rem;
  right: 5rem;
  width: 15rem;
  height: 15rem;
  background: rgba(96, 165, 250, 0.4);
}

.content-wrapper {
  position: relative;
  z-index: 10;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.hero-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.profile-section {
  margin-bottom: 2rem;
}

.profile-image {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, #60a5fa, #22d3ee);
  padding: 4px;
}

.profile-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-letter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #60a5fa;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: bold;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(to right, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 4vw, 2rem);
  color: #bfdbfe;
  margin-bottom: 0.5rem;
}

.hero-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-outline {
  background: transparent;
  color: #60a5fa;
  border-color: #60a5fa;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(96, 165, 250, 0.1);
}

.btn-large {
  padding: 1rem 2rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-gradient {
  background: linear-gradient(to right, #2563eb, #0891b2);
  color: white;
}

.btn-gradient:hover {
  background: linear-gradient(to right, #1d4ed8, #0e7490);
}

.btn-outline-blue {
  background: transparent;
  color: #60a5fa;
  border-color: #60a5fa;
}

.btn-outline-blue:hover {
  background: rgba(96, 165, 250, 0.1);
}

.btn-outline-cyan {
  background: transparent;
  color: #22d3ee;
  border-color: #22d3ee;
}

.btn-outline-cyan:hover {
  background: rgba(34, 211, 238, 0.1);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}

/* Glass Card */
.glass-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-paragraph {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card {
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.info-card.blue {
  background: rgba(59, 130, 246, 0.1);
}

.info-card.cyan {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(34, 211, 238, 0.2);
}

.info-card h3 {
  color: #60a5fa;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.info-card.cyan h3 {
  color: #22d3ee;
}

.info-card p {
  color: #cbd5e1;
}

/* Skills Section */
.skills-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.skill-card {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.skill-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.skill-header span {
  color: #60a5fa;
  font-weight: 500;
}

.skill-bar {
  width: 100%;
  height: 0.75rem;
  background: rgba(71, 85, 105, 0.5);
  border-radius: 9999px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  border-radius: 9999px;
  transition: width 2s ease-out;
  width: 0;
}

.skill-description {
  color: #94a3b8;
  font-size: 0.875rem;
}

/* Projects Section */
.projects-grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  backdrop-filter: blur(16px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(96, 165, 250, 0.3);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card.blue-gradient {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
}

.project-card.cyan-gradient {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(34, 211, 238, 0.3);
}

.project-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.project-card p {
  color: #cbd5e1;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
  border-radius: 9999px;
  font-size: 0.875rem;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.project-buttons {
  display: flex;
  gap: 0.75rem;
}

.projects-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.contact-description {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.contact-card.blue {
  background: rgba(59, 130, 246, 0.1);
}

.contact-card.cyan {
  background: rgba(6, 182, 212, 0.1);
  border-color: rgba(34, 211, 238, 0.2);
}

.contact-card i {
  font-size: 1.5rem;
  color: #60a5fa;
}

.contact-card.cyan i {
  color: #22d3ee;
}

.contact-details {
  flex: 1;
}

.contact-details h4 {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: #94a3b8;
  font-size: 0.875rem;
}

.contact-cta {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cta-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(to right, #60a5fa, #22d3ee);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon i {
  font-size: 2.5rem;
  color: white;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}
