/* style.css */
:root {
    --navy: #0A192F;
    --gold: #FFD700;
    --gray: #E0E0E0;
    --white: #ffffff;
}

/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 60px; /* Adjust this height to fit your preference */
    width: auto;
    display: block;
    padding: 5px 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%; /* Reduced padding to accommodate logo height */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: var(--gray);
    color: var(--navy);
    line-height: 1.6;
}

header {
    background-color: var(--navy);
    padding: 0.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--gold);

    /* Sticky logic starts here */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures the header stays above all other content */
    box-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Adds a subtle shadow for depth when scrolling */
}

/* Optional: Smooth transition for links when scrolling */
nav a {
    transition: color 0.3s ease;
}
header h1 { color: var(--gold); margin: 0; font-size: 1.5rem; }

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

nav a:hover { color: var(--gold); }

.hero {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 5%;
    text-align: center;
}

.hero h2 { color: var(--gold); font-size: 3rem; margin-bottom: 10px; }

.container { padding: 40px 5%; }

.btn {
    background-color: var(--gold);
    color: var(--navy);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid var(--gold);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/*footer {
    background: var(--navy);
    color: var(--gray);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}*/

/* style.css additions */
.about-section {
    background-color: var(--white);
    padding: 60px 5%;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h3 {
    color: var(--navy);
    font-size: 2rem;
    border-left: 5px solid var(--gold);
    padding-left: 15px;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    background: var(--navy);
    color: var(--gold);
    padding: 30px;
    text-align: center;
    margin-top: 30px;
}

.stat-item h4 {
    font-size: 2.5rem;
    margin: 0;
}

.stat-item p {
    color: var(--white);
    margin: 5px 0 0;
    text-transform: uppercase;
    font-size: 0.8rem;
}
/* Mission & Vision Styling */
.mv-section {
    background-color: var(--navy);
    color: var(--white);
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border-top: 5px solid var(--gold);
}

.mv-box {
    padding: 20px;
}

.mv-box h2 {
    color: var(--gold);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.mv-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.highlight-gold {
    color: var(--gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .mv-section { grid-template-columns: 1fr; text-align: center; }
}

/* Footer Base Styles */
.site-footer {
  background-color: #0b0d0f; /* Matches your logo's dark vibe */
  color: #ffffff;
  padding: 40px 0 20px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-top: 2px solid #00c2ff; /* Accents with your logo's blue */
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-column h3 {
  color: #00c2ff;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.footer-column p, .footer-column li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ccc;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #00c2ff;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #222;
  font-size: 0.8rem;
  color: #666;
}

/* Mobile Responsive adjustment */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
/* Layout Wrapper */
    .contact-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 20px;
    }

    /* Form Styling */
    form { 
        flex: 1; 
        min-width: 300px; 
        max-width: 500px; 
        background: #1a1c1e; /* Darker background to match theme */
        padding: 30px; 
        border-radius: 8px; 
        color: white;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    form label { color: #00c2ff; font-weight: bold; }
    input, textarea, select { 
        background: #2a2d30; 
        border: 1px solid #444; 
        color: white; 
        border-radius: 4px;
    }

    /* Map Styling */
    .map-container { 
        flex: 1; 
        min-width: 300px; 
        max-width: 600px; 
        height: 500px; /* Matching the form height */
    }

    .dark-map {
        width: 100%;
        height: 100%;
        border-radius: 8px;
        border: 1px solid #333;
        /* The Dark Mode Filter */
        filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    }