/* Custom Mnara Group Overrides */

/* Hero Section Styles */
/* .hero-gradient moved to Tailwind */

.hero-pattern {
    background-image:
        linear-gradient(30deg, #f9d309 12%, transparent 12.5%, transparent 87%, #f9d309 87.5%, #f9d309),
        linear-gradient(150deg, #f9d309 12%, transparent 12.5%, transparent 87%, #f9d309 87.5%, #f9d309);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.05;
}

/* Button Styles moved to Tailwind */

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #f9d309;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #23418e;
    box-shadow: 0 0 0 3px rgba(35, 65, 142, 0.1);
}

.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    min-height: 150px;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: #23418e;
    box-shadow: 0 0 0 3px rgba(35, 65, 142, 0.1);
}

/* Service Icons */
.service-icon {
    width: 5rem;
    height: 5rem;
    background-color: #23418e;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #f9d309;
}

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

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-on-scroll {
    opacity: 0;
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

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

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