/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Navbar */
.navbar {
    /* background: linear-gradient(45deg, #04cfa3, #0fcf76); */
    background-color: rgba(8, 182, 75, 0.815);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.8rem;
    color: #fff;
}

.navbar-brand:hover {
    color: #1d7008;
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, hwb(211 0% 0%), #6610f2);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero .btn-primary {
    background-color: #ffc107;
    color: #000;
}

.hero .btn-primary:hover {
    background-color: #e0a800;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.4rem;
    font-weight: bold;
    color: #333;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

footer a {
    color: #ffc107;
}

footer a:hover {
    color: #fff;
}

/* Forms (Contact Page) */
form .form-control {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 12px;
    box-shadow: none;
    transition: border-color 0.3s ease;
}

form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}

form button {
    border-radius: 30px;
}

/* Blog Section */
.blog-section .card {
    background-color: #f9f9f9;
    text-align: center;
    padding: 20px;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero {
        padding: 70px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}
