
:root {
  
  --primary-color: #4361ee;
  --secondary-color: #3f37c9;
  --accent-color: #4895ef;
  --text-color: #2b2d42;
  --text-light: #8d99ae;
  --bg-color: #ffffff;
  --bg-secondary: #f8f9fa;
  --card-bg: #ffffff;
  --border-color: #e9ecef;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --overlay-color: rgba(255, 255, 255, 0.9);
  --success-color: #4cc9f0;
  --danger-color: #f72585;
  --warning-color: #f8961e;

  
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-round: 50%;
  
  
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.section-title span {
  color: var(--primary-color);
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 400;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  gap: var(--space-xs);
}

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

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      to bottom right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: glow 3s infinite linear;
}

@keyframes glow {
  0% {
      transform: rotate(30deg) translate(-30%, -30%);
  }
  100% {
      transform: rotate(30deg) translate(30%, 30%);
  }
}


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

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

.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }


.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--bg-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: var(--overlay-color);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
}

.logo::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--primary-color);
  opacity: 0.1;
  z-index: -1;
  transform: scale(1.2);
  filter: blur(5px);
}

.nav ul {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  position: relative;
  padding: var(--space-xs) 0;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

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

.mobile-menu {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: all var(--transition-normal);
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-content .subtitle {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content .title {
  font-size: 3.5rem;
  margin-bottom: var(--space-sm);
  line-height: 1.1;
}

.hero-content .profession {
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.hero-content .description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: var(--space-lg);
  color: var(--text-light);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: var(--radius-xl);
  z-index: 0;
}

.shape-1 {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  top: -15px;
  left: -15px;
  opacity: 0.1;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  bottom: -30px;
  right: -30px;
  opacity: 0.1;
}

.shape-3 {
  width: 80px;
  height: 80px;
  background-color: var(--danger-color);
  top: -20px;
  right: -20px;
  opacity: 0.1;
}

/* About Section */
.about-content {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  flex: 1;
  position: relative;
}

.image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--primary-color);
  color: white;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.experience-badge .years {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.about-info {
  flex: 1;
}

.about-title {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.about-text {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.personal-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.info-item {
  display: flex;
  gap: var(--space-xs);
}

.info-label {
  font-weight: 600;
  color: var(--text-color);
}

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

.action-buttons {
  display: flex;
  gap: var(--space-md);
}


.skills-container {
  margin-top: var(--space-lg);
}

.skills-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.tab-btn {
  padding: var(--space-sm) var(--space-md);
  background-color: transparent;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  color: var(--text-light);
}

.tab-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.skills-tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.skills-tab-content.active {
  display: block;
}

.skill {
  margin-bottom: var(--space-md);
}

.skill-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-xs);
}

.skill-name {
  font-weight: 500;
}

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

.skill-bar {
  height: 8px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background-color: var(--primary-color);
  border-radius: var(--radius-md);
  position: relative;
}

.skill-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
  );
  animation: progressGlow 2s infinite linear;
}

@keyframes progressGlow {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(100%);
  }
}


.projects-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.filter-btn {
  padding: var(--space-xs) var(--space-md);
  background-color: transparent;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  color: var(--text-light);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal);
  background-color: var(--card-bg);
  box-shadow: var(--shadow-md);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content {
  padding: var(--space-md);
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.project-card:hover .overlay-content {
  transform: translateY(0);
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.project-description {
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.8);
}

.project-tech {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.project-tech span {
  background-color: var(--primary-color);
  color: white;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.project-links {
  display: flex;
  justify-content: space-between;
  padding: var(--space-md);
  background-color: var(--bg-secondary);
}

.project-link {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color var(--transition-fast);
}

.project-link:hover {
  color: var(--primary-color);
}

.view-more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Experience Section */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--primary-color);
  opacity: 0.2;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: space-between;
}

.timeline-date {
  flex: 1;
  text-align: right;
  padding-right: var(--space-lg);
  font-weight: 600;
  color: var(--primary-color);
}

.timeline-content {
  flex: 1;
  padding-left: var(--space-lg);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -8px;
  width: 16px;
  height: 16px;
  border-radius: var(--radius-round);
  background-color: var(--primary-color);
  border: 3px solid var(--bg-color);
}

.timeline-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.timeline-company {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.timeline-description {
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.timeline-tasks {
  color: var(--text-light);
  padding-left: var(--space-md);
}

.timeline-tasks li {
  position: relative;
  margin-bottom: var(--space-xs);
}

.timeline-tasks li::before {
  content: '▹';
  position: absolute;
  left: -15px;
  color: var(--primary-color);
}


.contact-content {
  display: flex;
  gap: var(--space-xl);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

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

.contact-form {
  flex: 1;
  background-color: var(--card-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  background-color: var(--bg-color);
  color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.2);
}

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

/* Footer */
.footer {
  background-color: var(--bg-secondary);
  padding: var(--space-xl) 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-logo .logo {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.footer-text {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--text-color);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

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

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

.social-icons {
  display: flex;
  gap: var(--space-sm);
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all var(--transition-normal);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-menu {
  display: flex;
  gap: var(--space-md);
}

.footer-menu a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

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

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

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

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid var(--bg-secondary);
  border-top-color: var(--primary-color);
  border-radius: var(--radius-round);
  animation: spin 1s linear infinite;
}

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


.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-round);
  background-color: var(--primary-color);
  transform: translate(-50%, -50%);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  opacity: 0.5;
  transition: transform 0.1s ease;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-round);
  border: 1px solid var(--primary-color);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}


@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content .title {
      font-size: 3rem;
  }
  
  .hero-content .profession {
      font-size: 1.3rem;
  }
  
  .about-content {
      flex-direction: column;
  }
  
  .about-image {
      margin-bottom: var(--space-xl);
  }
  
  .contact-content {
      flex-direction: column;
  }
  
  .timeline::before {
      left: 30px;
  }
  
  .timeline-item {
      flex-direction: column;
  }
  
  .timeline-date {
      text-align: left;
      padding-right: 0;
      margin-bottom: var(--space-sm);
  }
  
  .timeline-content {
      padding-left: var(--space-xl);
  }
  
  .timeline-content::before {
      left: 22px;
  }
}

@media (max-width: 768px) {
  .nav {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: var(--bg-color);
      box-shadow: var(--shadow-md);
      padding: var(--space-md);
      transform: translateY(-150%);
      opacity: 0;
      transition: all var(--transition-normal);
  }
  
  .nav.active {
      transform: translateY(0);
      opacity: 1;
  }
  
  .nav ul {
      flex-direction: column;
      gap: var(--space-md);
  }
  
  .mobile-menu {
      display: block;
  }
  
  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-section .container {
      flex-direction: column;
  }
  
  .hero-content {
      order: 2;
      text-align: center;
      margin-top: var(--space-xl);
  }
  
  .hero-content .description {
      margin-left: auto;
      margin-right: auto;
  }
  
  .cta-buttons {
      justify-content: center;
  }
  
  .social-links {
      justify-content: center;
  }
  
  .hero-image {
      order: 1;
  }
  
  .image-wrapper {
      width: 250px;
      height: 250px;
  }
  
  .section-title {
      font-size: 2rem;
  }
  
  .projects-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-content .title {
      font-size: 2.5rem;
  }
  
  .hero-content .profession {
      font-size: 1.1rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      gap: var(--space-sm);
  }
  
  .personal-info {
      grid-template-columns: 1fr;
  }
  
  .action-buttons {
      flex-direction: column;
      gap: var(--space-sm);
  }
  
  .projects-filter {
      flex-wrap: wrap;
  }
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.form-status.success {
  background-color: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-status.error {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}


.fa-spinner {
  margin-right: 8px;
}