* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

header {
    background: #0b3c5d;
    color: white;
    padding: 20px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

section {
    padding: 50px 0;
}

h2 {
    text-align: center;
    color: #0b3c5d;
    margin-bottom: 20px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.btn {
    background: #f4d03f;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.btn:hover {
    background: #e6c200;
}

footer {
    background: #082c44;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

/* Form Styling */
form {
    max-width: 600px;
    margin: auto;
}

form label {
    font-weight: bold;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}


/* Header & Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 55px;
    width: auto;
}

.logo-area h1 {
    font-size: 20px;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    text-decoration: underline;
}


/* Sticky Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0b3c5d;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 55px;
}

.logo-area h1 {
    color: white;
    font-size: 20px;
}

/* Navigation */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a.active {
    border-bottom: 2px solid #f4d03f;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* Dark Mode */
.dark-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

/* Slider */
.slider {
    max-width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Dark Theme */
body.dark {
    background: #121212;
    color: #e0e0e0;
}

body.dark header,
body.dark footer {
    background: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #0b3c5d;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
}



/* Header Social Icons */
.header-social {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.header-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    background-color: #f4d03f;
    border-radius: 50%;
    color: #222;
    font-size: 18px;
    transition: 0.3s;
}

.header-social a:hover {
    background-color: #222;
    color: #f4d03f;
}



/* Footer container layout */
footer .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center everything */
    gap: 10px;
    padding: 15px 0;
    text-align: center; /* Center text */
}

/* Footer Social Icons */
footer .social-links {
    display: flex;
    gap: 12px;
    justify-content: center; /* Center the icons */
}

footer .social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #f4d03f;
    border-radius: 50%;
    color: #222;
    font-size: 20px;
    transition: 0.3s;
}

footer .social-links a:hover {
    background-color: #222;
    color: #f4d03f;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    footer .social-links a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* Developer credit */
footer .developer-credit {
    font-size: 14px;
    color: #ccc;
    margin-top: 5px;
    text-align: center;
}

/* Link inside developer credit */
footer .developer-credit a {
    color: #f4d03f; /* Yellow accent to match icons */
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

footer .developer-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    footer .developer-credit {
        font-size: 12px;
    }
}

