
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

.card-img-top {
    max-height: 200px;
    object-fit: cover;
}

.content img, .content video, .content iframe {
    max-width: 100%;
    height: auto;
}



#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    object-fit: cover;
    height: 200px;
}

.content img, .content video, .content iframe {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}






.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    padding: 10px 20px;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

footer {
    background: linear-gradient(90deg, #343a40, #495057);
}

footer h5 {
    color: #fff;
    font-weight: bold;
}

#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
}

.list-group-item a {
    color: #007bff;
    text-decoration: none;
}

.list-group-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}







.featured-post {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 10px;
    overflow: hidden;
}

.featured-post .card-img-top {
    height: 300px;
    object-fit: cover;
}

.featured-post .card-title {
    font-size: 1.75rem;
    color: #007bff;
}

.featured-post .card-text {
    font-size: 1.1rem;
}

.card {
    border-radius: 10px;
}

.card-title a {
    color: #333;
    transition: color 0.2s;
}

.card-title a:hover {
    color: #007bff;
}

.btn-outline-primary {
    border-width: 2px;
    font-weight: bold;
}

.list-group-item {
    border: none;
    padding: 10px 0;
}

header .display-4 {
    color: #343a40;
}

header .lead {
    font-size: 1.25rem;
}




.text-danger {
    color: #dc3545 !important;
}






/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 60px 0 0;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-about {
    color: #b8c2cc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8c2cc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, #00dbde 0%, #fc00ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 219, 222, 0.3);
}

/* Contact Form Styles */
.footer-contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00dbde;
    background: rgba(0, 219, 222, 0.05);
    box-shadow: 0 0 0 2px rgba(0, 219, 222, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-btn {
    background: linear-gradient(135deg, #00dbde 0%, #fc00ff 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.footer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 219, 222, 0.4);
}

/* Newsletter Styles */
.newsletter-text {
    color: #b8c2cc;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-newsletter-form .form-group {
    display: flex;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px 0 0 4px;
    color: #ffffff;
    font-size: 14px;
    border-right: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, #00dbde 0%, #fc00ff 100%);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #00c4c7 0%, #e600e6 100%);
}

/* Form Messages */
.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    display: block;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #b8c2cc;
    font-size: 14px;
}

.footer-seo-links {
    display: flex;
    gap: 15px;
}

.footer-seo-links a {
    color: #b8c2cc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-seo-links a:hover {
    color: #ffffff;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
}