body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.laravel-gradient {
    background: linear-gradient(135deg, #FF2D20 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 1024px) {
    .section-container {
        padding-left: 6rem;
        padding-right: 6rem;
    }
}
.hover-lift {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-lift:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 45, 32, 0.4);
}

#navbar {
    border-bottom: 1px solid transparent;
}

.nav-scrolled {
    background: rgba(11, 15, 26, 0.8) !important;
    backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}

/* Portfolio card styles */
.portfolio-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.portfolio-card:hover {
    transform: translateY(-8px) scale(1.02);
}
.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-overlay {
    background: linear-gradient(180deg, rgba(11, 15, 26, 0) 0%, rgba(255, 45, 32, 0.2) 100%);
    transition: opacity 0.3s ease;
}

/* Responsive fixes */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    .section-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .glass-card {
        padding: 1.5rem !important;
    }
}

/* Custom Select Dropdown Styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FF2D20'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

select option {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

select option:hover,
select option:checked,
select option:focus {
    background-color: #FF2D20;
    color: #ffffff;
}

/* Service button active state */
.service-btn.active {
    background-color: #FF2D20 !important;
    border-color: #FF2D20 !important;
    color: #ffffff !important;
}
