body {
    background: #f9f9f9;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
}

h1, h2, h5 {
    font-weight: 600;
}

/* Animation classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zoom-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .zoom-hover:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

/* Hero Section */
.hero-section {
    background: linear-gradient(to right, #007BFF, #00C4CC);
    color: white;
    padding: 80px 20px;
    border-radius: 0 0 30px 30px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Card styling */
.card {
    border: none;
    border-radius: 12px;
    background: white;
}

/* Light section padding */
section {
    padding: 60px 0;
}

/* Blog / News Sections */
.bg-light-custom {
    background: #f4f7fb;
}
body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Segoe UI', sans-serif;
}

/* Navbar */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: background 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    color: #007BFF !important;
}

.nav-link {
    color: #555 !important;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: #007BFF !important;
    }

/* Buttons */
.btn-accent {
    background-color: #007BFF;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

    .btn-accent:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

/* Hero Animation */
.hero {
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
    padding: 60px 0;
    animation: fadeIn 1s ease-in-out;
}

    .hero h1 {
        font-weight: bold;
        animation: slideDown 1s ease-in-out;
    }

    .hero p {
        font-size: 1.1rem;
        animation: fadeIn 2s ease-in-out;
    }

/* Footer */
footer {
    background: #ffffff;
    padding: 20px 0;
    color: #555;
    border-top: 1px solid #eaeaea;
}

    footer a {
        color: #007BFF;
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline;
        }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}