/* style.css */
:root {
    --primary-blue: #0077b6;
    --secondary-blue: #023e8a;
    --light-blue: #caf0f8;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: 5px 10%;
    font-size: 0.85rem;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
}

.logo img {
    max-height: 70px;
    width: auto;
    display: block;
    padding: 5px 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.cta-btn {
    background-color: var(--primary-blue);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,119,182,0.8), rgba(2,62,138,0.8)), url('https://images.unsplash.com/photo-1576089172869-4f5f6f315620?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 10%;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Sections */
section {
    padding: 60px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-blue);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--white);
}

th, td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Footer */
footer {
    background-color: var(--secondary-blue);
    color: var(--white);
    padding: 50px 10% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
}
/* All paragraphs and list items alignment */
p, .card p, .card li {
    text-align: justify;
    text-justify: inter-word;
}

/* Optional: To keep titles centered while text is justified */
.section-title, h1, h2, h3 {
    text-align: center;
}

/* Optional: Card content padding adjust */
.card {
    padding: 25px;
}
body {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    line-height: 1.7;
    color: #2b2d42;
}

p, .card p, .card li, .about-text, .purpose-text {
    text-align: justify;
    text-justify: inter-word; 
    hyphens: auto;
}

h1, h2, h3, h4, .section-title {
    text-align: center;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    margin-bottom: 20px;
}

.card {
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}