:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #4cc9f0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
}

.navbar {
    background: url(https://filebaba.com/_next/static/media/bg.19ffafda.webp);
}


.nav-link {
    font-size: 14px;
    font-weight: 400;
    margin: 0 6px;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navbar Styles */
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.blog_wrapper_main {
    padding: 60px 0;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 0 0 20px;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #adb5bd;
    font-size: 0.9rem;
}

.blog_inner {
    padding: 60px 0;
}

.blog_inner h1 {
    font-size: 22px;
    font-family: "Roboto", sans-serif;
}

.blog_inner h2 {
    padding: 12px 0;
    font-size: 23px;
}

.blog_inner h3 {
    padding: 12px 0;
    font-size: 20px;
}


.blog_inner p,
.blog_inner ul li {
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 80px 0 60px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .blog-title {
        font-size: 1.3rem;
    }
}