/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f8ff;
    color: #112065;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #0032a5;
    position: fixed;
    width: 100%;
    background: transparent;
    top: 0;
    height: 70px;
    left: 0;
    z-index: 1001; /* Ensure navbar is always on top */
}

/* Logo */
.navbar .logo img {
    height: 60px;
    width: 60px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    margin-right: 120px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease-in-out;
}

.nav-links a {
    text-decoration: none;
    color:#0032a5;
    font-weight: bold;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    background: #15085a;
    color: #fff;
}

/* Toggle Button for Mobile */
.menu-toggle {
    display: none;
    font-size: 30px;
    color: blue;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        color: blue;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: white;
        padding: 10px 0;
        text-align: center;
        z-index: 1002; /* Higher than navbar */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px;
        font-size: 18px;
    }
}


/* Main Content */
.container {
    width: 90%;
    margin: 100px auto 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Text Styling */
p {
    font-size: 20px;
    font-weight: 300;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
}

#country-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}

#country-data {
    font-family: 'Times New Roman', Times, serif;
    line-height: 26px;
    font-size: 18px;
}

/* Section Cards */
.section-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.section-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h2 {
    color: #15085a;
    font-family: 'Times New Roman', Times, serif;
}

.card-content ul {
    padding-left: 20px;
}

/* FAQ Section */
.faq-section {
    margin-top: 30px;
    background: #eef2f3;
    padding: 20px;
    border-radius: 10px;
}

.faq-section h2 {
    text-align: center;
}

.faq-section #faqs {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

/* Footer */
.footer-container {
    background: #112065;
    color: white;
    text-align: center;
    margin-top: -20px;
    padding: 15px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }

    .container {
        width: 95%;
        padding: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    #country-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    #country-title {
        font-size: 32px;
    }

    p {
        font-size: 18px;
    }

    .navbar .logo img {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        width: 98%;
        padding: 15px;
    }

    .navbar {
        padding: 10px;
    }

    #country-title {
        font-size: 28px;
    }

    p {
        font-size: 16px;
    }

    .navbar .logo img {
        height: 40px;
        width: 40px;
    }
}
