/* Custom variables */
:root {
    --primary: #7c3aed;
    --secondary: #0ea5e9;
    --success: #10b981;
    --info: #3b82f6;
    --warning: #f59e0b;
    --danger: #ef4444;
    --light: #f8fafc;
    --dark: #0f172a;
  }
  
  /* Custom styles */
  .hero {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    z-index: 0;
  }
  
  .card {
    transition: all 0.3s ease-in-out;
    border: none;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
  }
  
  .service-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.02) 0%, rgba(37, 99, 235, 0.02) 100%);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
  }
  
  .service-card:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  }
  
  .min-vh-75 {
    min-height: 75vh;
  }
  
  /* Custom button styles */
  .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .btn.btn-primary {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    border: none;
  }
  
  .btn.btn-primary:hover {
    background: linear-gradient(135deg, #6527d0, #1d4ed8);
    transform: translateY(-2px);
  }
  
  .btn-lg {
    padding: 1rem 2.5rem;
  }
  
  /* Navbar customization */
  .navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
  }
  
  /* Section styling */
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
    margin-bottom: 1.5rem;
  }
  
  .feature-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  /* Contact info styling */
  .contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }
  
  .contact-info i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary);
  }
  
  /* Add smooth scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* Custom animations */
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  .floating {
    animation: float 3s ease-in-out infinite;
  }