/* Modern CSS with Animations and Enhanced UI */

:root {
  --primary-color: #0078d4;
  --primary-dark: #005a9e;
  --secondary-color: #605e5c;
  --success-color: #107c10;
  --warning-color: #ff8c00;
  --error-color: #d13438;
  --background-light: #f8f9fa;
  --background-card: #ffffff;
  --text-primary: #323130;
  --text-secondary: #605e5c;
  --border-color: #edebe9;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
  --border-radius: 8px;
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.4s ease-in-out;
  --transition-slow: 0.6s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
    font-family: 'Poppins', 'Inter', Arial, sans-serif;
    background: none;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* Custom Header Styles */
#header.header {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

#header.header .container-fluid {
  max-width: 100%;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Logo Styling */
#header .logo {
  text-decoration: none;
  transition: all 0.3s ease;
}

#header .logo:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
  transition: all 0.3s ease;
}

.logo-icon i {
  font-size: 22px;
  color: white;
}

.logo-container:hover .logo-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.company-name {
  font-size: 28px;
  font-weight: 800;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  line-height: 1;
}

.logo-text small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 2px;
}

#header.header.sticked {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

#header .logo img {
  transition: var(--transition-fast);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#header .logo:hover img {
  transform: scale(1.05);
}

#header .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 600;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  margin: 0 0.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

#header .nav-link:hover {
  background: rgba(251, 191, 36, 0.2);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.3);
  border-color: rgba(251, 191, 36, 0.4);
}

#header .nav-link i {
  color: #fbbf24;
  transition: all 0.3s ease;
}

#header .nav-link:hover i {
  color: white;
  transform: scale(1.1);
}

/* Header Animations */
.navbar {
  background: transparent !important;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
  transition: var(--transition-medium);
}

/* Navbar Toggler for Mobile */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive Header */
@media (max-width: 768px) {
  #header.header .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .company-name {
    font-size: 24px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }
  
  .logo-icon i {
    font-size: 18px;
  }
  
  #header .nav-link {
    padding: 0.5rem 1rem !important;
    margin: 0.25rem 0;
  }
}

.navbar-brand {
  font-weight: 600;
  color: var(--primary-color) !important;
  transition: var(--transition-fast);
}

.navbar-brand:hover {
  transform: scale(1.05);
  color: var(--primary-dark) !important;
}

.nav-link {
  position: relative;
  transition: var(--transition-fast);
  color: var(--text-secondary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(10px) translateY(-10px); }
  50% { transform: translateX(-5px) translateY(10px); }
  75% { transform: translateX(-10px) translateY(-5px); }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: slideInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Feature Cards */
.feature-card {
  background: var(--background-card);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border: 1px solid var(--border-color);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transition: var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Custom Feature Icon */
.feature-icon-custom {
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.usage-icon {
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

/* Buttons */
.btn {
  border-radius: var(--border-radius);
  font-weight: 500;
  padding: 0.75rem 2rem;
  transition: var(--transition-fast);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: var(--transition-medium);
  transform: translate(-50%, -50%);
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Cards and Containers */
.container {
  max-width: 1200px;
}

.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.card-header {
  background: linear-gradient(135deg, var(--background-light), white);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-primary);
}

/* Forms */
.form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: var(--transition-fast);
  background: white;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 120, 212, 0.25);
  transform: scale(1.02);
}

.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Progress Bars */
.progress {
  height: 8px;
  border-radius: 10px;
  background-color: var(--background-light);
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary-color), var(--success-color));
  border-radius: 10px;
  transition: width var(--transition-medium);
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(45deg, 
    rgba(255,255,255,.2) 25%, 
    transparent 25%, 
    transparent 50%, 
    rgba(255,255,255,.2) 50%, 
    rgba(255,255,255,.2) 75%, 
    transparent 75%, 
    transparent);
  background-size: 1rem 1rem;
  animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
  0% { background-position: 1rem 0; }
  100% { background-position: 0 0; }
}

/* Alerts */
.alert {
  border: none;
  border-radius: var(--border-radius);
  border-left: 4px solid;
  animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.alert-success {
  background: linear-gradient(135deg, #f8fff8, #e8f5e8);
  border-left-color: var(--success-color);
  color: var(--success-color);
}

.alert-warning {
  background: linear-gradient(135deg, #fffaf0, #ffeaa7);
  border-left-color: var(--warning-color);
  color: #8b5a00;
}

.alert-danger {
  background: linear-gradient(135deg, #fff5f5, #fed7d7);
  border-left-color: var(--error-color);
  color: var(--error-color);
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Steps Indicator */
.steps-container {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  background: white;
  padding: 0 1rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}

.step.active .step-number {
  background: var(--primary-color);
  animation: bounce 0.5s ease-out;
}

.step.completed .step-number {
  background: var(--success-color);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Migration Progress */
.migration-status {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  margin: 2rem 0;
}

.status-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
}

.status-item:hover {
  background: var(--background-light);
  margin: 0 -1rem;
  padding: 1rem;
  border-radius: var(--border-radius);
}

.status-item:last-child {
  border-bottom: none;
}

/* Animations for page transitions */
.fade-in {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .feature-card {
    margin-bottom: 1rem;
  }
  
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .step {
    margin-bottom: 1rem;
  }
}

/* Dark mode support */



/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hover-lift {
  transition: var(--transition-fast);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.border-gradient {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--primary-color), var(--primary-dark)) border-box;
}

html {
  position: relative;
  min-height: 100%;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* === MIGRATION WIZARD SPECIFIC STYLES === */
.migration-wizard-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.migration-wizard-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 600px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 1rem;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.step-item.active .step-circle {
    background: var(--primary-color);
    animation: pulse 2s infinite;
}

.step-item.completed .step-circle {
    background: var(--success-color);
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.migration-step {
    display: none;
}

.migration-step.active {
    display: block;
    animation: slideInUp 0.5s ease-out;
}

.config-section {
    background: var(--background-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-standard);
}

.config-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.config-title {
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.log-container {
    background: #1e1e1e;
    color: #d4d4d4;
    border-radius: var(--border-radius);
    padding: 1rem;
    height: 200px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.log-entry {
    margin-bottom: 0.5rem;
}

.timestamp {
    color: #569cd6;
}

.message {
    margin-left: 1rem;
}

.alert-connection {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.alert-connection.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-connection.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Enhanced wizard responsive design */
@media (max-width: 768px) {
    .migration-wizard-steps::before {
        display: none;
    }
    
    .step-indicator {
        flex-direction: column;
        align-items: center;
    }
    
    .step-item {
        margin-bottom: 1rem;
    }
    
    .config-section {
        padding: 1rem;
    }
    
    .log-container {
        height: 150px;
    }
}

/* ===============================================
   PROFESSIONAL FOOTER STYLING
   =============================================== */
.footer {
    font-size: 14px;
    padding: 50px 0;
    color: white;
    background-color: #03012d;
    position:relative!important;
}

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }

    .footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
        .footer .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
    }
    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        margin-right: 10px;
        transition: 0.3s;
    }
    .footer .footer-links {
        margin-bottom: 30px;
    }
        .footer .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            font-size:1rem;
        }

        .footer .footer-links ul a {
            color: rgba(255, 255, 255, 0.7);
            transition: 0.3s;
            display: inline-block;
            line-height: 1;
        }

.footer a {
    text-decoration: none;
}

.footer-info {
    position: relative;
    z-index: 2;
}

.footer-info .logo {
    margin-bottom: 30px;
}

.footer-info .logo span {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.footer .footer-info p {
    font-size: 14px;
    text-align: justify;
    font-family: var(--font-primary);
}

.footer-info p b {
    color: #ffffff;
    font-weight: 600;
}


/* ===============================================
   CLEAN HEADER STYLING FOR HOSTING
   =============================================== */
.clean-header {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
}

.logo-icon {
    font-size: 24px;
    color: #3b82f6;
}

.company-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 0.9;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.subtitle {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    line-height: 1;
    margin-top: -2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-item {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
}

.nav-item:hover {
    color: #3b82f6;
    text-decoration: none;
    background: rgba(59, 130, 246, 0.1);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    color: #4b5563;
    padding: 8px;
}

.mobile-nav {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.mobile-nav-item {
    display: block;
    color: #4b5563;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.mobile-nav-item:hover {
    background: #e9ecef;
    color: #3b82f6;
    text-decoration: none;
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* ===============================================
   CLEAN FOOTER STYLING FOR HOSTING
   =============================================== */
.clean-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    padding: 60px 0 20px 0;
    margin-top: 80px;
}

.footer-brand .brand-name {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
}

.company-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.achievements p {
    font-size: 13px;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}