﻿/* Hero Section Styling */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Using theme color 5 (dark) with a subtle gradient of color 1 */
    background: radial-gradient(circle at top right, rgba(var(--color-5-rgb), 0.9), var(--color5)), radial-gradient(circle at bottom left, var(--color4), var(--color5));
}

/* Custom Card Styling */
.solution-card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 100%;
    border: 1px solid rgba(229, 201, 150, 0.1); /* Subtle border using Color2 */
}

    .solution-card:hover {
        transform: translateY(-10px);
        /* Shadow using Color1 */
        box-shadow: 0 15px 30px -10px rgba(158, 97, 85, 0.3);
    }

/* Icon container for services */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Partnership Section Overlay */
.partnership-section {
    position: relative;
    overflow: hidden;
}

.partnership-bg-accents {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: linear-gradient(45deg, var(--color1) 25%, transparent 25%, transparent 50%, var(--color1) 50%, var(--color1) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    z-index: 0;
}

/* Utility for Staggered Animation Delays */
.delay-100 {
    animation-delay: 100ms;
}

.delay-200 {
    animation-delay: 200ms;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-400 {
    animation-delay: 400ms;
}

@media (max-width: 991.98px) {
    .custom-responsive-text {
        font-size: 0.8rem;
    }
}