body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f5f7fa;
    color: #333;
}

/* HERO */
.hero {
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* PROFILE SECTION */
.profile {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    background: white;
}

.profile h2 {
    color: #2c5364;
    margin-top: 40px;
    position: relative;
}

/* Underline animation */
.profile h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #2c5364;
    display: block;
    margin-top: 8px;
    transition: width 0.4s ease;
}

.profile h2:hover::after {
    width: 120px;
}

/* SERVICES GRID */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.card {
    background: #2c5364;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* WHY LIST */
.why {
    margin-top: 15px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #203a43;
    color: white;
    margin-top: 40px;
}

/* SCROLL ANIMATION */
.animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

