/* ---------------------------------- */
/*          TABLE OF CONTENTS         */
/* ---------------------------------- */
/*
1.  Global Styles & Variables
2.  Utility Classes
3.  Loader Animation
4.  Header & Navigation
5.  Hero Section
6.  Section Styling
7.  Card & Grid Layouts
8.  Buttons
9.  About Section
10. Achievements Section
11. Icon Cards (Consumer Rights)
12. President Message
13. Testimonials
14. FAQ Accordion
15. Contact Form & Section
16. Footer
17. Back to Top Button
18. Animations
19. Dark Mode
20. Responsive Design (Media Queries)
21. Print Styles
*/


/* ---------------------------------- */
/* 1. Global Styles & Variables       */
/* ---------------------------------- */
:root {
    --deep-blue: #0a2463;
    --white: #ffffff;
    --saffron-accent: #ff9f1c;
    --green-accent: #2ec4b6;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #333;
    --bg-color: #fff;
    --header-height: 70px;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--deep-blue);
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    color: var(--saffron-accent);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--deep-blue);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ---------------------------------- */
/* 2. Utility Classes                 */
/* ---------------------------------- */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.accent-bg {
    background-color: var(--deep-blue);
    color: var(--white);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white) !important;
}

.text-white p {
    color: rgba(255, 255, 255, 0.9);
}

/* ---------------------------------- */
/* 3. Loader Animation                */
/* ---------------------------------- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader {
    border: 8px solid var(--light-gray);
    border-top: 8px solid var(--saffron-accent);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ---------------------------------- */
/* 4. Header & Navigation             */
/* ---------------------------------- */
.header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: top 0.3s;
}

.header.sticky {
    /* Styles for when header is stuck */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.nav-logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--saffron-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dark-mode-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-gray);
}
.dark-mode-btn svg {
    transition: transform 0.3s ease;
}
.dark-mode-btn:hover svg {
    transform: scale(1.1);
}


.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-gray);
    transition: all 0.3s ease-in-out;
}

/* ---------------------------------- */
/* 5. Hero Section                    */
/* ---------------------------------- */
.hero {
    background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('../assets/images/hero-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ---------------------------------- */
/* 6. Section Styling                 */
/* ---------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.accent-bg .section-header h2,
.accent-bg .section-header p {
    color: var(--white);
}

/* ---------------------------------- */
/* 7. Card & Grid Layouts             */
/* ---------------------------------- */
.grid-container, .grid-container-3 {
    display: grid;
    gap: 2rem;
}

.grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-container-3 {
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card h4 {
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

/* ---------------------------------- */
/* 8. Buttons                         */
/* ---------------------------------- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--saffron-accent);
    color: var(--white);
    border-color: var(--saffron-accent);
}

.btn-primary:hover {
    background-color: #e68a00;
    border-color: #e68a00;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-blue);
    border-color: var(--deep-blue);
}

.btn-secondary:hover {
    background-color: var(--deep-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.hero .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.hero .btn-secondary:hover {
    background-color: var(--white);
    color: var(--deep-blue);
}

.btn-light {
    background-color: var(--white);
    color: var(--deep-blue);
    border-color: var(--white);
}
.btn-light:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--deep-blue);
}

/* ---------------------------------- */
/* 9. About Section                   */
/* ---------------------------------- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-text h3 {
    margin-bottom: 1.5rem;
}

/* ---------------------------------- */
/* 10. Achievements Section           */
/* ---------------------------------- */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.achievement-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--saffron-accent);
}

.achievement-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

/* ---------------------------------- */
/* 11. Icon Cards (Consumer Rights)   */
/* ---------------------------------- */
.icon-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}
.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.icon-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--green-accent);
}
.icon-card h4 {
    margin-bottom: 0.5rem;
}

/* ---------------------------------- */
/* 12. President Message              */
/* ---------------------------------- */
blockquote {
    font-style: italic;
    color: #555;
    border-left: 4px solid var(--saffron-accent);
    padding-left: 1.5rem;
    margin-top: 1rem;
}

/* ---------------------------------- */
/* 13. Testimonials                   */
/* ---------------------------------- */
.testimonial-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--saffron-accent);
    opacity: 0.2;
    line-height: 1;
}
.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 600;
}
.testimonial-author span {
    display: block;
    font-weight: 400;
    font-size: 0.9rem;
    color: #777;
}

/* ---------------------------------- */
/* 14. FAQ Accordion                  */
/* ---------------------------------- */
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--deep-blue);
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
.faq-answer p {
    padding: 0 0 1.5rem 0;
}

/* ---------------------------------- */
/* 15. Contact Form & Section         */
/* ---------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}
.contact-info h3, .contact-form-container h3 {
    margin-bottom: 1.5rem;
}
.contact-info p {
    margin-bottom: 1.5rem;
}
.contact-info strong {
    color: var(--deep-blue);
}
.map-container {
    width: 100%;
    height: 250px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-top: 1rem;
    overflow: hidden;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-secondary);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--saffron-accent);
    box-shadow: 0 0 0 2px rgba(255, 159, 28, 0.2);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    display: none;
}
.form-group.error input, .form-group.error textarea {
    border-color: #dc3545;
}
.form-group.error .error-message {
    display: block;
}

/* ---------------------------------- */
/* 16. Footer                         */
/* ---------------------------------- */
.footer {
    background-color: var(--dark-gray);
    color: #ccc;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}
.footer-col p, .footer-col li {
    margin-bottom: 0.75rem;
}
.footer-col a {
    color: #ccc;
}
.footer-col a:hover {
    color: var(--saffron-accent);
    padding-left: 5px;
}
.social-icons {
    display: flex;
    gap: 1rem;
}
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icons a:hover {
    background-color: var(--saffron-accent);
}
.social-icons img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* ---------------------------------- */
/* 17. Back to Top Button             */
/* ---------------------------------- */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--saffron-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    transform: translateY(20px);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background-color: var(--deep-blue);
    color: var(--white);
}

/* ---------------------------------- */
/* 18. Animations                     */
/* ---------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------- */
/* 19. Dark Mode                      */
/* ---------------------------------- */
body.dark-mode {
    --bg-color: #1a1a1a;
    --text-color: #ccc;
    --deep-blue: #8cb2f5;
    --light-gray: #2c2c2c;
    --dark-gray: #e0e0e0;
    --shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}
body.dark-mode .header {
    background-color: rgba(26, 26, 26, 0.9);
}
body.dark-mode .nav-logo,
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode h4, body.dark-mode h5, body.dark-mode h6 {
    color: var(--deep-blue);
}
body.dark-mode .nav-link {
    color: var(--dark-gray);
}
body.dark-mode .bar {
    background-color: var(--dark-gray);
}
body.dark-mode .card, body.dark-mode .testimonial-card {
    background: #252525;
}
body.dark-mode .btn-secondary {
    color: #8cb2f5;
    border-color: #8cb2f5;
}
body.dark-mode .btn-secondary:hover {
    background-color: #8cb2f5;
    color: #1a1a1a;
}
body.dark-mode blockquote {
    color: #aaa;
    border-left-color: var(--saffron-accent);
}
body.dark-mode .faq-item {
    border-bottom-color: #444;
}
body.dark-mode .form-group input, body.dark-mode .form-group textarea {
    background-color: #333;
    border-color: #555;
    color: #eee;
}
body.dark-mode .dark-mode-btn {
    color: var(--dark-gray);
}

/* ---------------------------------- */
/* 20. Responsive Design              */
/* ---------------------------------- */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--header-height);
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        height: calc(100vh - var(--header-height));
        text-align: center;
        transition: 0.3s;
        gap: 2rem;
        padding-top: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-buttons .btn {
        display: none; /* Hide button in nav, can be moved to mobile menu */
    }

    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.2rem; }

    .about-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1; /* Move image to top on mobile */
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section-padding { padding: 60px 0; }
    .hero { height: 80vh; }
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; align-items: center; }
    .achievements-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .achievements-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------- */
/* 21. Print Styles                   */
/* ---------------------------------- */
@media print {
    body {
        background-color: #fff;
        color: #000;
    }
    .header, .footer, .back-to-top, .hero, .btn, .loader-wrapper, .contact-form-container, .map-container {
        display: none;
    }
    .section-padding {
        padding: 20px 0;
    }
    a {
        text-decoration: underline;
        color: #000;
    }
    .card, .about-content, .grid-container, .grid-container-3 {
        display: block;
        page-break-inside: avoid;
    }
    img {
        max-width: 50% !important;
    }
}
/* Add this to your style.css file */

.page-header {
    background: var(--deep-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-top: var(--header-height); /* Offset for sticky header */
}
.page-header h1 {
    color: var(--white);
    font-size: 3rem;
}
.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0.5rem auto 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.mission-list {
    list-style: disc;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}
.mission-list li {
    margin-bottom: 1rem;
}
.vision-statement {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.grid-container-2 {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
}

.icon-card-detailed {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}
.icon-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.icon-card-detailed .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-top: 5px;
}
.icon-card-detailed h4 {
    margin-bottom: 0.5rem;
}
body.dark-mode .icon-card-detailed {
    border-color: #444;
}

/* Styles for text-heavy pages like privacy policy and terms */
.text-content {
    max-width: 800px;
    margin: 0 auto;
}
.text-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.text-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}
.text-content li {
    margin-bottom: 0.5rem;
}

/* 404 Page Styles */
.section-404 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--header-height) - 200px); /* Adjust 200px based on footer height */
    padding: 40px 0;
}
.section-404 h1 {
    font-size: 8rem;
    font-weight: 700;
    color: var(--saffron-accent);
    line-height: 1;
}
.section-404 h2 {
    margin-bottom: 1rem;
}

/* FAQ Container on Contact Page */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.google-form-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Gallery Page Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}
.gallery-item {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}
.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    animation-name: zoom;
    animation-duration: 0.6s;
}
@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}
.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}
.lightbox-close:hover, .lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}
.lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}
.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(255, 159, 28, 0.8);
}

/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-gray);
    color: var(--bg-color);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1001;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.cookie-consent-banner p {
    margin: 0;
}
.cookie-consent-banner a {
    color: var(--saffron-accent);
    text-decoration: underline;
}

.developer-credit {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 0.5rem;
}

/* Responsive adjustments for these new sections */
@media (max-width: 992px) {
    .mission-vision-grid, .grid-container-2 {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}
