
/* Hero Section Styles */
.hero-overlay {
    background: linear-gradient(to right, rgba(79, 70, 229, 0.8), rgba(99, 102, 241, 0.8));
}

/* Mobile menu styles */
#mobile-menu {
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  #mobile-menu {
    background-color: rgba(30, 27, 75, 0.95);
    position: absolute;
    left: 0;
    right: 0;
    padding: 0 1rem;
    z-index: 10;
  }
}

/* Custom styles that can't be done with Tailwind */
.star-rating.active {
    color: #fbbf24;
    fill: #fbbf24;
}
.service-card, .pricing-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover, .pricing-card:hover {
transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#hero-image {
    max-height: 600px;
    object-fit: cover;
}

#notification-toast {
    animation: slideIn 0.5s forwards, fadeOut 0.5s 3s forwards;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
/* Pricing and Service Plan styles */
.pricing-card, .service-plan-btn {
    position: relative;
    transition: all 0.3s ease;
}

.service-plan-btn {
    cursor: pointer;
}
.pricing-card.popular {
    border-color: #4f46e5;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #4f46e5;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0.5rem 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}
/* Works Page Styles */
.work-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

#pdf-modal {
    transition: opacity 0.3s ease;
}

#pdf-viewer {
    min-height: 80vh;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #818cf8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6366f1;
}