/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?q=80') center/cover;
    min-height: 80vh;
    color: white;
    padding-top: 80px; /* Account for fixed navbar */
}

/* Features Section */
.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Pricing Section */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #dee2e6;
}

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

.pricing-card.border-primary {
    border-width: 2px;
}

.card-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.card-price span {
    font-size: 1rem;
    color: #6c757d;
}

/* Dashboard Section */
.dashboard-preview img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.dashboard-preview img:hover {
    transform: scale(1.02);
}

/* Contact Form */
.form-control {
    padding: 0.8rem;
    border-radius: 8px;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    border-color: var(--primary-color);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    margin: 1rem 2rem;
    border-radius: 100px;
}

.navbar-brand {
    color: var(--dark-color) !important;
    font-weight: 600;
    font-size: 1.25rem;
}

.navbar .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 100px;
}

.navbar .nav-link:hover {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color) !important;
}

.navbar .nav-link.active {
    background: var(--primary-color);
    color: white !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 100px;
    background: rgba(13, 110, 253, 0.1);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: 0;
    border-radius: 0;
}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .navbar {
        margin: 0.5rem 1rem;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .navbar.scrolled {
        margin: 0;
    }
}

/* Buttons */
.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .card-price {
        font-size: 2rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 2rem 0;
}

/* Utility Classes */
.shadow-custom {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}





.card {
    margin-left: -1rem;
    margin-right: -1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 2rem;
    width: 320px;
    flex-direction: column;
    border-radius: 1rem;
    background-color: #020617;
    padding: 1.5rem;
  }
  
  header {
    display: flex;
    flex-direction: column;
  }
  
  .title {
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: 700;
    color: #f8fafc90;
  }
  
  .price {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: 700;
    color: #f8fafc;
  }
  
  .desc {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.625;
    text-wrap: pretty;
    color: #f8fafc90;
  }
  
  .lists {
    margin-bottom: 1.5rem;
    flex: 1 1 0%;
    color: #f8fafc90;
  }
  
  .lists .list {
    margin-bottom: 0.5rem;
    display: flex;
    margin-left: 0.5rem;
  }
  
  .lists .list svg {
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
    color: #0ea5e9;
  }
  
  .action {
    border: none;
    outline: none;
    display: inline-block;
    border-radius: 0.5rem;
    background-color: #0ea5e9;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #f8fafc;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  
    &:hover {
      background-color: #0284c7;
    }
  }
  