/* Tailwind CSS CDN */
@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

/* Custom color variables */
:root {
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  --accent-50: #faf5ff;
  --accent-100: #f3e8ff;
  --accent-200: #e9d5ff;
  --accent-300: #d8b4fe;
  --accent-400: #c084fc;
  --accent-500: #a855f7;
  --accent-600: #9333ea;
  --accent-700: #7c3aed;
  --accent-800: #6b21a8;
  --accent-900: #581c87;

  --bg-dark: #0f172a;
  --bg-secondary: #1e293b;
  --bg-light: #f8fafc;

  --text-light: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;

  --gradient-dark: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));

  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
}

/* Custom styles for IT service company */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Glassmorphism effect */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gradients */
.gradient-blue-purple {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
}

.gradient-blue {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.gradient-purple {
  background: linear-gradient(135deg, var(--accent-500), var(--accent-700));
}

.gradient-dark {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-secondary));
}

/* Text gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hover effects */
.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-500);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-600);
}

/* Animation classes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

/* Button styles */
.btn-primary {
  background: var(--gradient-blue-purple);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* Feature card styles */
.feature-card {
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Comparison table styles */
.comparison-table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  background-color: var(--bg-light);
  font-weight: 600;
}

.comparison-table tr:hover {
  background-color: var(--primary-50);
}

/* Custom form styles */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

/* Footer styles - Modern Enterprise Design */
footer.footer {
  background: white;
  color: var(--text-dark) !important;
  padding-top: 4rem;
  padding-bottom: 2rem;
  position: relative;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.05);
}



/* Decorative elements */
footer.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500), var(--primary-500));
  background-size: 100% 100%;
}



footer.footer .container {
  position: relative;
  z-index: 2;
}

/* Company Info Section */
footer.footer .col-span-1.md\:col-span-1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Footer container */
footer.footer .container {
  position: relative;
  z-index: 2;
}

footer.footer h3 {
  color: var(--text-dark) !important;
  font-weight: 700 !important;
  font-size: 1.75rem !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

footer.footer h4 {
  color: var(--text-dark) !important;
  font-weight: 600 !important;
  font-size: 1.125rem !important;
  margin-bottom: 1.5rem !important;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

/* Title underline effect */
footer.footer h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 2px;
}

/* Text styling */
footer.footer p,
footer.footer li,
footer.footer .text-gray-300,
footer.footer .text-gray-400 {
  color: #64748b !important;
  font-size: 0.9375rem !important;
  line-height: 1.7;
  margin-bottom: 1rem !important;
}

/* Social Media Icons */
footer.footer .flex.space-x-4 {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

footer.footer .flex.space-x-4 a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5f9;
  color: #475569 !important;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

footer.footer .flex.space-x-4 a:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  border-color: transparent;
}

/* Navigation Links */
footer.footer ul.space-y-2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.footer ul.space-y-2 li {
  margin-bottom: 0.875rem !important;
}

footer.footer a {
  color: #475569 !important;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.9375rem;
  position: relative;
  display: inline-block;
  padding: 0.3rem 0;
}

footer.footer a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  transition: width 0.3s ease;
  border-radius: 1px;
}

footer.footer a:hover {
  color: var(--primary-600) !important;
  transform: translateX(3px);
}

footer.footer a:hover::after {
  width: 100%;
}

/* Contact Information */
footer.footer ul.space-y-2.text-gray-400 li {
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

footer.footer ul.space-y-2.text-gray-400 li:hover {
  transform: translateX(3px);
}

footer.footer ul.space-y-2.text-gray-400 li i {
  width: 22px;
  margin-right: 0.75rem;
  color: var(--primary-600);
  margin-top: 0.25rem;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* Divider */
footer.footer .mt-8.pt-8.border-t.border-gray-800 {
  border-color: #e2e8f0 !important;
  margin-top: 3rem !important;
  padding-top: 2rem !important;
  position: relative;
}

footer.footer .mt-8.pt-8.border-t.border-gray-800::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
  border-radius: 2px;
}

/* Copyright */
footer.footer .mt-8.pt-8.border-t.border-gray-800 p {
  color: var(--text-tertiary) !important;
  font-size: 0.875rem !important;
  margin-bottom: 0 !important;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  footer.footer {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }

  footer.footer .grid.grid-cols-1.md\:grid-cols-4.gap-8 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  footer.footer h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1.25rem !important;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  footer.footer h4 {
    margin-bottom: 1.25rem !important;
  }

  footer.footer .mt-8.pt-8.border-t.border-gray-800 {
    margin-top: 2.5rem !important;
    padding-top: 1.5rem !important;
  }

  footer.footer ul.space-y-2.text-gray-400 li {
    align-items: center;
  }

  footer.footer .flex.space-x-4 {
    justify-content: center;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    padding: 1.5rem;
  }

  .comparison-table {
    font-size: 0.875rem;
  }
}

/* Hero section styles */
.hero-gradient {
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
}

/* Service and product cards */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Icon styles */
.icon-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-primary {
  background-color: var(--primary-100);
  color: var(--primary-600);
}

.icon-accent {
  background-color: var(--accent-100);
  color: var(--accent-600);
}