/* Additional custom styles */
html {
    scroll-behavior: smooth;
}

.gradient-hero {
    background: linear-gradient(135deg, #0B1F3A, #1E3A8A);
}

.gradient-btn {
    background: linear-gradient(135deg, #E63946, #FF6B6B);
    transition: all 0.3s ease;
}

.gradient-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card {
    background: white;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: #22D3EE;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #E63946;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF6B6B;
}
/* Service Cards Enhanced Styling */
.service-card {
    background: white;
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(230, 57, 70, 0.2);
}

.service-card .icon-wrapper {
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.05);
}

/* Service card hover underline animation */
.service-card .underline-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #E63946, #FF6B6B);
    transition: width 0.4s ease;
}

.service-card:hover .underline-animation {
    width: 100%;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #E63946, #FF6B6B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
/* Service icon hover effect */
.service-card .icon-bg {
    transition: all 0.3s ease;
}

.service-card:hover .icon-bg {
    background-color: #E63946 !important;
    transform: rotateY(180deg);
}

.service-card:hover .icon-bg i {
    color: white !important;
}