body {
    background-color: #f8f9fa;
}

.blog-post {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-post img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-meta {
    font-size: 14px;
    color: #6c757d;
}

.post-author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.post-content {
    margin-top: 20px;
}

.post-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.post-content p {
    font-size: 16px;
    line-height: 1.6;
}

.post-content a {
    color: #0d6efd;
    text-decoration: none;
}

.post-content a:hover {
    color: #0d6efd;
    text-decoration: underline;
}

.post-content img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.post-author {
    margin-top: 15px;
}

.post-author h6 {
    margin: 0;
}

.post-author small {
    color: #6c757d;
}

.post-author small:before {
    content: "|";
    margin-right: 5px;
    color: #6c757d;
}

.post-author small:last-child:before {
    display: none;
    margin-right: 0;
}

.post-author small:last-child {
    margin-right: 0;
}











.hero-container {
    height: 500px;
    background-image: url('/static/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-container {
        height: fit-content;
    }
}

@media (max-width: 576px) {
    .hero-container {
        height: fit-content;
    }
}


.hero-child {
    background-color: #00000076;
    height: 100% !important;
    width: 100% !important;
    
}

.hero-card {
    background: rgba(255, 255, 255, 0.605);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-card input {
    background-color: #f8f9fa79;
    border: 0px solid #f8f9fa;
    
    padding: 10px;
}

.hero-card input:focus {
    background-color: #f8f9fa79;
    border: 0px solid #f8f9fa;
    border-radius: 0px;
    padding: 10px;
}

.blog-card,
.blog-card:hover,
.blog-card img,
.blog-card:hover img,
.blog-card .card-img-overlay {
    /* Remove these styles */
}

/* New blog styles */
.blog-post {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-meta i {
    margin-right: 0.25rem;
}

.blog-title {
    color: #333;
    margin-bottom: 0.75rem;
}

.blog-excerpt {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

a:hover .blog-title {
    color: #0d6efd;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    margin-left: 0.5rem;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
}

.footer {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.footer h5 {
    color: #333;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #0d6efd;
}

.social-links a {
    color: #6c757d;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0d6efd;
}

.footer .input-group {
    max-width: 300px;
}

.footer .form-control {
    border-right: none;
}

.footer .btn {
    border-left: none;
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: #333;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    color: #0d6efd;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
}

.btn-primary {
    padding: 0.5rem 1.5rem;
}
