﻿/* SERVICES.CSS */

/* General body font */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
}

/* HERO */
.hero {
    background: linear-gradient(to right, #002244, #0055a5);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

    .hero h1 {
        font-size: 2.5rem;
        font-weight: bold;
    }

/* SECTIONS */
.section {
    padding: 60px 20px;
}

/* SERVICES SECTION */
#services {
    background: linear-gradient(-45deg, #6a11cb, #2575fc, /*#ff7e5f, */#feb47b);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
}

.service-card {
    background-color: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

    .service-card i {
        font-size: 2.5rem;
        color: #2575fc;
        margin-bottom: 20px;
        display: inline-block;
    }

    .service-card h5 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 600;
        color: #222; /* dark text for visibility */
    }

    .service-card p {
        font-size: 1.1rem;
        color: #555;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

/* CONTACT */
#contact h2 {
    margin-bottom: 30px;
    text-align: center;
}

/* FOOTER */
.footer {
    background: #f5f5f5;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #555;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section {
        padding: 80px 15px;
    }

    .about-content, .service-card {
        padding: 30px 20px;
    }
}

.text-center {
    font-size: 0; /* removes inline spacing */
}

    .text-center a {
        display: inline-block;
        font-size: initial; /* reset font-size for icons */
        margin-right: 10px; /* spacing between icons */
    }

