﻿body {
    font-family: 'Segoe UI',sans-serif;
    scroll-behavior: smooth;
}

.section-light {
    background: #f8fafc;
}

.section-soft {
    background: #eef2f7;
}

.feature-box {
    background: white;
    border-radius: 12px;
    transition: all .3s ease;
}

    .feature-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.feature-icon {
    font-size: 40px;
    color: #6c8ef5;
}

.hero {
    min-height: 90vh;
    background: linear-gradient(120deg,#cbb65f,#b39c4d);
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
}

@media(max-width: 768px)
{
    .hero {
        min-height: 150vh;
       
    }
}

.card {
    border: none;
    border-radius: 12px;
    transition: all .3s ease;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all .8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

.footer {
    background: #2c3e50;
    color: white;
    padding: 30px 0;
}
