/* Hero section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: calc(80vh - 74px);
    padding: 80px 0;
    color: #fff;

    background: radial-gradient(
            circle at top left,
            #cde6fe 10%,
            transparent 25%
        ),
        linear-gradient(90deg, #f4f8fe 0%, #f4f8fe 100%);
}

.hero-title {
    font-size: 60px;
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.hero-character {
    width: 100%;
    display: block;
    user-select: none;
}

.hero-background-circle-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 800px;
    z-index: 0;
}

.freelancer-card {
    position: relative;
    max-width: 445px; /* previously 360px */
    padding: 2rem !important;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.freelancer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Increase inner spacing */
.freelancer-card .bg-light {
    background-color: #f3f3f3 !important;
    padding: 1.25rem 1.5rem !important;
    border-radius: 1rem;
}

/* Optional: slightly larger icons and text for better proportion */
.freelancer-card h6 {
    font-size: 1.1rem;
}

.freelancer-card small {
    font-size: 0.9rem;
}

.freelancer-card img[alt="Profile"] {
    width: 64px;
    height: 64px;
}

/* Icon button container */
.freelancer-card .icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 30%;
    background-color: #e8f0ff; /* soft blue tone */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background-color 0.2s ease;
    opacity: 1;
    z-index: 2;
    background-color: white;
}

.freelancer-card .icon-btn:hover {
    background-color: #d7e6ff; /* slightly darker on hover */
}

/* Icon image */
.freelancer-card .icon-btn img {
    width: 18px;
    height: 18px;
}

/* Slightly increase gap between them */
.freelancer-card .d-flex.align-items-center.gap-2 {
    gap: 0.75rem !important;
}

/* Media Queries */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 0px 0;
        padding-top: 40px;
        height: fit-content !important;
        display: flex;
        flex-direction: column !important;
    }
    .hero-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    .hero-title {
        font-size: 40px;
        line-height: 1.02;
        letter-spacing: -0.01em;
    }
    .hero-background-circle-wrapper {
        display: none;
    }
    .hero-ctas {
        margin-top: 30px !important;
    }
    .hero-ctas .btn {
        width: 100%;
    }

    .support-link {
        display: flex;
        justify-content: center;
    }
}
