/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

:root {
    --primary-color: #0078D4;
    --secondary-color: #FFA726;
    --lightbg-color: #F5F7FA;
    --headline-color: #3A3A3A;
    --paragraph-color: #555;
}

body {
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

p {
    color: var(--paragraph-color);
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 5px;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #e0950f;
}

.view-btn {
    color: #000;
    padding: 10px 30px;
}

.primary-btn {
    background: var(--primary-color);
    padding: 10px 20px;
}

.container {
    max-width: 2000px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Header Section */

.logo {
    width: 200px;
    margin-bottom: 20px;
}


.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    color: #666;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta .fa {
    color: var(--primary-color);
}


/* Footer Styles */
.footer {
    background-color: #003057;
    color: white;
    padding: 30px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 8px;
    font-size: 14px;
    display: inline-block;
    padding: 5px 0;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.social-icons a {
    margin: 0 10px;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.social-icons svg {
    fill: #003057;
    width: 20px;
    height: 20px;
}

.footer-divider {
    width: 90%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 auto 25px;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Media Queries */
@media screen and (min-width: 768px) {
    .container {
        padding: 0 25px;
    }

    .footer-links {
        display: flex;
        justify-content: center;
    }

    .footer-links a {
        margin: 0 15px;
        font-size: 16px;
    }

    .social-icons a {
        margin: 0 15px;
    }
}

@media screen and (min-width: 992px) {
    .footer-content {
        padding: 10px 0;
    }

    .footer-links a {
        margin: 0 20px;
    }

    .social-icons {
        margin-bottom: 30px;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .social-icons svg {
        width: 22px;
        height: 22px;
    }
}


@media (min-width: 1024px) {
    .container {
        padding: 0 70px;
    }

    .logo {
        margin-bottom: 30px;
        width: 300px;
    }
}

@media screen and (min-width: 1600px) and (max-width: 1920px) {
    .btn {
        font-size: 1.2rem;
    }

    .primary-btn {
        font-size: 1.5rem;
    }

    .logo {
        width: 400px;
    }
}