/* Hero Section Styles */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #637395, #4C53A1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    padding: 20px;
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FBF10A; /* aureolin */
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

hero-item{
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    color: #F49F2A; /* gamboge for service highlights */
    font-weight: 600;
}

.hero-cta {
    background-color: #C35EA0; /* mulberry */
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta:hover {
    background-color: #F49F2A; /* gamboge */
    transform: scale(1.05);
}

/* Service Icons */
.service-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #FBF10A; /* aureolin */
    margin-bottom: 0.5rem;
}

.service-icon span {
    font-weight: 500;
    font-size: 1.5rem;
}

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

/* Background Animation */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(251, 241, 10, 0.2) 10%, transparent 10%);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: moveDots 20s linear infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(30px, 30px);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-cta {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .service-icons {
        gap: 15px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-icon span {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .service-icons {
        flex-direction: column;
        align-items: center;
    }

    .service-icon {
        margin-bottom: 10px;
    }
}