/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 33, 50, 0.6), rgba(0, 0, 0, 0.9)),
                url('../assets/cloud_background.jpeg'); /* Replace with the correct image */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: #ff015b;
    text-shadow: 2px 2px 10px #000;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: #ff015b;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #fff; /* visible white border */
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    background: #d10048;
    transform: scale(1.05);
    color: #fff;
    border-color: #fff;
}

/* Ensure text stays white in all anchor states */
.cta-button:link,
.cta-button:visited,
.cta-button:active {
    color: #fff;
    border-color: #fff;
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
    color: #fff;
    border-color: #fff;
}

/* Overview Section */
.overview {
    padding: 4rem 2rem;
    background: #181d2a;
    text-align: center;
}

.overview h2 {
    color: #ff015b;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.overview p {
    font-size: 1.2rem;
    color: #ddd;
}

/* Key Services Section */
.key-services {
    padding: 4rem 2rem;
    background: #1e2536;
    text-align: center;
}

.key-services h2 {
    color: #ff015b;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-box {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #181d2a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.service-box h3 {
    color: #ff015b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-box p {
    color: #fff; /* White text */
    font-size: 1rem;
    transition: color 0.3s ease;
}

.service-box:hover p {
    color: #ff015b; /* Text turns red on hover */
}

.service-box:hover {
    transform: translateY(-10px);
}

/* CTA Section */
.cta {
    background: #ff015b;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .overview h2, .key-services h2 {
        font-size: 2rem;
    }
}
