/* =============================================
   MAIN CSS - Compiled from SCSS
   ============================================= */

/* =============================================
   COLOR PALETTE & VARIABLES
   ============================================= */
:root {
  --primary-color: #6366f1;
  --secondary-color: #06b6d4;
  --accent-color: #f59e0b;
  --success-color: #10b981;
  --danger-color: #ef4444;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --white: #ffffff;
}

/* =============================================
   RESET & BASE STYLES
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-bg);
  overflow-x: hidden;
}

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

/* =============================================
   NAVBAR STYLES
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}

.navbar-brand i {
  margin-right: 0.5rem;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease-in-out;
}

.nav-link:hover {
  color: var(--accent-color);
}

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

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }
}

/* =============================================
   HERO HEADER
   ============================================= */
.hero-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.5rem;
  margin: 1rem 0;
  color: var(--secondary-color);
  font-weight: 500;
}

.tagline {
  font-size: 1.1rem;
  margin: 1rem 0 1.5rem 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .hero-header {
    min-height: 400px;
    padding: 2.5rem 2rem;
  }

  .hero-header h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}

/* =============================================
   SECTION STYLES
   ============================================= */
.section {
  padding: 4rem 2rem;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 1.5rem;
}

.section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  border-radius: 2px;
}

.about-section {
  background-color: var(--white);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.skills-section {
  background-color: var(--light-bg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.projects-section {
  background-color: var(--white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.contact-section {
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  color: var(--white);
  text-align: center;
}

.contact-section h2 {
  color: var(--white);
}

.contact-section h2::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
}

.contact-intro {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.contact-content {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .section {
    padding: 2.5rem 2rem;
  }

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

/* =============================================
   BUTTON STYLES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

.btn i {
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  color: var(--white);
}

.btn-primary:hover {
  color: var(--white);
}

.btn-secondary {
  background-color: var(--accent-color);
  color: var(--white);
}

.btn-secondary:hover {
  color: var(--white);
}

/* =============================================
   CARD COMPONENTS
   ============================================= */
.card {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-color: #6366f1;
}

.skill-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(99, 102, 241, 0.1);
  text-align: center;
  padding: 2rem;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-color: #6366f1;
}

.skill-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.skill-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0;
  color: var(--text-dark);
}

.skill-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.skill-card:hover i {
  transform: scale(1.2) rotate(-5deg);
  color: var(--secondary-color);
}

/* =============================================
   PROJECT CARD
   ============================================= */
.project-card {
  background-color: var(--white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(99, 102, 241, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-color: #6366f1;
}

.project-header {
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  color: var(--white);
  padding: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
}

.project-header i {
  font-size: 3rem;
}

.project-card h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
  color: var(--text-dark);
}

.project-card p {
  color: var(--text-light);
  flex-grow: 1;
  margin-bottom: 1rem;
}

.project-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.project-link:hover {
  color: var(--secondary-color);
  gap: 1rem;
}

/* =============================================
   FOOTER STYLES
   ============================================= */
.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: var(--white);
  padding: 4rem 2rem 1rem;
  margin-top: 4rem;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, #6366f1, #06b6d4, #f59e0b);
  border-image-slice: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

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

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-section a:hover {
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 1.2rem;
}

.social-links a:hover {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 1rem 0 0 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 2rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-muted {
  color: var(--text-light);
}

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

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 576px) {
  .hero-header h1 {
    font-size: 2rem;
  }

  .nav-menu {
    gap: 1rem;
  }

  .contact-content {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================= */
.about-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-intro {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-image {
  text-align: center;
}

.profile-img {
  width: 350px;
  height: 350px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  transition: transform 0.3s ease-in-out;
}

.profile-img:hover {
  transform: scale(1.05);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Skills Detailed Section */
.skills-detailed {
  background-color: var(--light-bg);
}

.skills-extended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.skill-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(99, 102, 241, 0.1);
}

.skill-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
  border-color: var(--primary-color);
}

.skill-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all 0.3s ease-in-out;
}

.skill-item:hover .skill-icon {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.skill-item h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
  color: var(--text-dark);
}

.skill-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Journey Timeline */
.journey-section {
  background-color: var(--white);
}

.timeline {
  position: relative;
  padding: 2rem 0;
  max-width: 800px;
  margin: 2rem auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: 0;
  margin-right: 52%;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 52%;
  margin-right: 0;
  text-align: left;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: var(--white);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.timeline-item:hover .timeline-marker {
  width: 24px;
  height: 24px;
  top: -4px;
  box-shadow: 0 0 0 8px rgba(99, 102, 241, 0.1);
}

.timeline-content {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.timeline-content:hover {
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
  transform: translateY(-5px);
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.timeline-date {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Values Section */
.values-section {
  background-color: var(--light-bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  background: linear-gradient(135deg, var(--white), rgba(99, 102, 241, 0.05));
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
  border-color: var(--primary-color);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
  transition: transform 0.3s ease-in-out;
}

.value-card:hover i {
  transform: scale(1.15) rotate(10deg);
  color: var(--secondary-color);
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section h2 {
  color: var(--white) !important;
}

.cta-section h2::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)) !important;
}

/* Responsive About Grid */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .profile-img {
    width: 280px;
    height: 280px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

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

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 70px;
    margin-right: 0;
    text-align: left;
  }

  .timeline-marker {
    left: 20px;
  }

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #1e293b;
  background-color: #f8fafc;
  overflow-x: hidden;
}

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  padding: 24px 32px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.3s ease-in-out;
}
.navbar-brand i {
  margin-right: 16px;
}
.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease-in-out;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f59e0b;
  transition: width 0.3s ease-in-out;
}
.nav-link:hover {
  color: #f59e0b;
}
.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 24px;
  }
}
.hero-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 64px 32px;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #f59e0b;
  margin-bottom: 32px;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 32px 0 24px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.5rem;
  margin: 24px 0;
  color: #06b6d4;
  font-weight: 500;
}

.tagline {
  font-size: 1.1rem;
  margin: 24px 0 32px 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .hero-header {
    min-height: 400px;
    padding: 48px 32px;
  }
  .hero-header h1 {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1.2rem;
  }
}
.section {
  padding: 64px 32px;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 48px;
  text-align: center;
  color: #1e293b;
  position: relative;
  padding-bottom: 32px;
}
.section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #06b6d4);
  border-radius: 2px;
}

.about-section {
  background-color: #ffffff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: #64748b;
}

.skills-section {
  background-color: #f8fafc;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.projects-section {
  background-color: #ffffff;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.contact-section {
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  color: #ffffff;
  text-align: center;
}

.contact-section h2 {
  color: #ffffff;
}
.contact-section h2::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
}

.contact-intro {
  font-size: 1.2rem;
  margin: 32px 0;
}

.contact-content {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .section {
    padding: 48px 32px;
  }
  .section h2 {
    font-size: 2rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
.btn:active {
  transform: translateY(0);
}
.btn i {
  font-size: 1.1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  color: #ffffff;
}
.btn-primary:hover {
  color: #ffffff;
}

.btn-secondary {
  background-color: #f59e0b;
  color: #ffffff;
}
.btn-secondary:hover {
  color: #ffffff;
}

.card, .project-card, .skill-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(99, 102, 241, 0.1);
}
.card:hover, .project-card:hover, .skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  border-color: #6366f1;
}

.skill-card {
  text-align: center;
  padding: 48px;
}
.skill-card i {
  font-size: 3rem;
  color: #6366f1;
  margin-bottom: 32px;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.skill-card h3 {
  font-size: 1.3rem;
  margin: 24px 0;
  color: #1e293b;
}
.skill-card p {
  color: #64748b;
  line-height: 1.6;
}
.skill-card:hover i {
  transform: scale(1.2) rotate(-5deg);
  color: #06b6d4;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.project-card .project-header {
  background: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  color: #ffffff;
  padding: 48px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.project-card .project-header i {
  font-size: 3rem;
}
.project-card h3 {
  font-size: 1.3rem;
  margin: 24px 0 16px 0;
  color: #1e293b;
}
.project-card p {
  color: #64748b;
  flex-grow: 1;
  margin-bottom: 24px;
}
.project-card .project-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease-in-out;
}
.project-card .project-link:hover {
  color: #06b6d4;
  gap: 24px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.active {
  display: flex;
}
.modal .modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 48px;
  max-width: 600px;
  width: 90%;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.3s ease-out;
}
.modal .modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #64748b;
  transition: color 0.3s ease-in-out;
}
.modal .modal-close:hover {
  color: #1e293b;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-toggle {
  cursor: pointer;
  padding: 16px 24px;
  border: 1px solid #6366f1;
  background-color: #ffffff;
  border-radius: 8px;
  color: #6366f1;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.dropdown .dropdown-toggle:hover {
  background-color: #6366f1;
  color: #ffffff;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  min-width: 200px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  z-index: 900;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.dropdown .dropdown-menu.active {
  max-height: 500px;
}
.dropdown .dropdown-menu a {
  display: block;
  padding: 24px;
  color: #1e293b;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.dropdown .dropdown-menu a:hover {
  background-color: #f8fafc;
  color: #6366f1;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}
.tooltip .tooltip-text {
  visibility: hidden;
  background-color: #6366f1;
  color: #ffffff;
  text-align: center;
  padding: 16px 24px;
  border-radius: 8px;
  position: absolute;
  z-index: 800;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.tooltip .tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #6366f1 transparent transparent transparent;
}
.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

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

.text-primary {
  color: #6366f1;
}

.text-secondary {
  color: #06b6d4;
}

.text-muted {
  color: #64748b;
}

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

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 16px;
}

.mt-2 {
  margin-top: 24px;
}

.mt-3 {
  margin-top: 32px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 16px;
}

.mb-2 {
  margin-bottom: 24px;
}

.mb-3 {
  margin-bottom: 32px;
}

.footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
  color: #ffffff;
  padding: 64px 32px 32px;
  margin-top: 64px;
  border-top: 4px solid transparent;
  -o-border-image: linear-gradient(90deg, #6366f1, #06b6d4, #f59e0b);
     border-image: linear-gradient(90deg, #6366f1, #06b6d4, #f59e0b);
  border-image-slice: 1;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #06b6d4;
}
.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 16px;
}
.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.footer-section ul li a:hover {
  color: #06b6d4;
}

.social-links {
  display: flex;
  gap: 24px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-size: 1.2rem;
}
.social-links a:hover {
  background: linear-gradient(135deg, #6366f1, #06b6d4);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.footer-bottom p {
  margin: 24px 0 0 0;
}

@media (max-width: 768px) {
  .footer {
    padding: 48px 32px 24px;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=main.css.map */