/* Navbar Styling */
.navbar {
    padding: 1rem 0;
}

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Hero Section Styling */
.hero-section {
    background-color: #f8f9fa;
    position: relative;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.hero-section p {
    color: #6c757d;
    font-size: 1.2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
}

/* Decorative Shapes */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

/* Contact Section Styling */
.contact-section {
    background-color: #f8f9fc;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 10px;
}

.card {
    border: none;
    border-radius: 10px;
    background-color: #fff;
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
    border-color: #0d6efd;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}




/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}
/* Categories Section */
.filter-btn {
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.filter-btn:hover {
    background-color: #0d6efd;
    color: white;
}

/* Blog Cards */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-text {
    color: #6c757d;
    margin-bottom: 1rem;
}

.btn-primary {
    padding: 8px 20px;
    border-radius: 5px;
}
