/* =======================================
   GLOBAL BASE (Same as index.css)
======================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --bg-light: #F8F8FF;
    --bg-dark: #142540;
    --primary-color: #0A2A5E;
    --accent-color: #FFC72C;
    --card-light: #E8F0FF;
    --white: #ffffff;
    --text-dark: #222222;
    --text-grey: #666666;
    --border-light: #E0E0E0;
    --smooth-transition: all 0.3s ease-out;
}

body {
    background-color: var(--bg-light);
    color: var(--primary-color);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

section {
    padding: 100px 80px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =======================================
   NAVBAR (Same style as index)
======================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}



.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
}



.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--smooth-transition);
}

.nav-item:hover {
    color: var(--primary-color);
}

.chevron {
    font-size: 0.8rem;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--white);
    width: 240px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--smooth-transition);
    border-top: 3px solid var(--accent-color);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 15px 25px;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-menu li a:hover {
    background-color: var(--card-light);
    padding-left: 30px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}


/* =======================================
   BUTTONS
======================================= */
.btn-outline {
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--smooth-transition);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-solid {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(10,42,94,0.3);
    transition: var(--smooth-transition);
}

.btn-solid:hover {
    background-color: #1a4286;
    transform: translateY(-2px);
}

/* =======================================
   3. BLOG HERO SECTION
   ======================================= */
.page-hero {
    height: 60vh;
    min-height: 450px;
    background: linear-gradient(rgba(10, 42, 94, 0.8), rgba(10, 42, 94, 0.8)), 
                url('blog.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
}

/* =======================================
   4. BLOG FEED GRID
   ======================================= */
.blog-container {
    padding: 100px 6%;
    max-width: 1300px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--smooth-transition);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(10, 42, 94, 0.1);
}

.blog-img {
    position: relative;
    height: 250px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50px;
}

.blog-info {
    padding: 30px;
}

.blog-info .date {
    color: var(--text-grey);
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

.blog-info h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-info p {
    color: var(--text-grey);
    font-size: 15px;
    margin-bottom: 25px;
}

.read-more {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.read-more:hover {
    color: var(--accent-color);
}
/* ======================================= */
/* FOOTER STYLES */
/* ======================================= */

#footer {
    background-color: var(--primary-color, #0A2A5E);
    color: var(--white, #ffffff);
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    padding-bottom: 30px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--secondary-color, #FFC72C);
}

/* About Column Styling */
.footer-about {
    max-width: 300px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}

.footer-logo .symbol {
    color: var(--secondary-color, #FFC72C);
    margin-right: 5px;
    font-size: 30px;
}

.footer-about p {
    font-size: 14px;
    opacity: 0.8;
}

/* Link Columns Styling */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white, #ffffff);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color, #FFC72C);
}

/* Contact/Working Hours Column Styling */
.footer-contact .time {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color, #FFC72C);
}

.btn-footer-contact {
    display: inline-block;
    background-color: var(--white, #ffffff);
    color: var(--primary-color, #0A2A5E);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s, transform 0.3s;
}

.btn-footer-contact:hover {
    background-color: #eee;
    transform: translateY(-1px);
}

/* --- SOCIAL ICONS (Fully Working) --- */
/* =======================================
   SOCIAL ICONS STYLE
======================================= */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color); /* Navy Blue */
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Perfect Circle */
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--smooth-transition);
    border: 2px solid transparent;
}

/* Gold Glow Hover Effect */
.social-icon:hover {
    background-color: var(--accent-color); /* Turns Gold */
    color: var(--primary-color); /* Text turns Navy */
    transform: translateY(-5px); /* Pops up */
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 199, 44, 0.4);
}

/* Specifically for the WhatsApp icon - unique green on hover if you prefer */
.social-icon .fa-whatsapp:hover {
    color: #25D366; 
}
/* Footer Bottom (Copyright) */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p, .footer-bottom .website-link {
    margin: 0;
}

.footer-bottom .website-link {
    color: var(--white, #ffffff);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-bottom .website-link:hover {
    opacity: 1;
}

/* Footer Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        justify-content: flex-start;
    }

    .footer-col {
        min-width: 45%;
        margin-right: 10px;
    }
    
    .footer-about {
        min-width: 100%;
    }

    .footer-contact {
        /* Ensure contact section stays readable */
        min-width: 45%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-col {
        min-width: 100%;
        text-align: center;
    }
    
    .footer-col h3 {
        text-align: center;
    }

    .footer-links ul {
        display: none; /* Hide link lists on very small screens to save space */
    }

    .social-links {
        justify-content: center;
        display: flex;
    }
}

    