/* ======================= LOGO ======================= */
.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffc107;
    animation: spin 10s linear infinite;
}

.logo-circle img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* ======================= FADE-IN ANIMATION ======================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================= GRADIENT HEADERS ======================= */
h1, h2, h3 {
    background: linear-gradient(90deg,#0d6efd,#ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ======================= ABOUT SECTION ======================= */
.about-section {
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.about-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.8s;
    opacity: 0;
    transform: translateY(20px);
}

.about-card.active {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-card p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
    font-size: 1rem;
}

/* ======================= BUTTONS ======================= */
button {
    transition: transform 0.3s, background 0.3s;
}

button:hover {
    transform: scale(1.05);
    background: #e0a800;
}

/* ======================= LOGO SPIN KEYFRAMES ======================= */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ======================= FOOTER ======================= */
.site-footer {
    background: #1f2937;
    color: #fff;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #ffc107;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* ======================= RESPONSIVE ======================= */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .logo-circle {
        margin-bottom: 15px;
    }
}
