/* Custom Styles */

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

/* Custom Form Styles */
.form-input:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

/* Custom Button Hover Effect */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}

.btn-hover-effect:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    transition: 0.3s;
}

.btn-hover-effect:hover:after {
    left: 100%;
}

/* Custom Card Hover Effect */
.card-hover {
    transition: transform 0.3s ease-in-out;
}

.card-hover:hover {
    transform: translateY(-5px);
}

/* Custom Image Hover Effect */
.img-hover {
    transition: transform 0.3s ease-in-out;
}

.img-hover:hover {
    transform: scale(1.05);
}

/* Custom List Style */
.custom-list {
    list-style: none;
    padding-left: 1.5rem;
}

.custom-list li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1rem;
}

/* Mobile Menu Animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu {
    animation: slideDown 0.3s ease-out;
}

/* Custom Section Spacing */
.section-spacing {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Custom Shadow */
.custom-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom Border Radius */
.custom-radius {
    border-radius: 1rem;
}

/* Custom Container Max Width */
.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* Custom Grid Gap */
.grid-gap {
    gap: 2rem;
}

/* Custom Transition */
.custom-transition {
    transition: all 0.3s ease-in-out;
}

/* Custom Focus Ring */
.focus-ring:focus {
    outline: none;
    ring: 2px;
    ring-color: #2563eb;
    ring-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #333333;
}