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

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: .3s ease;
}

.footer-social a:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

/* Brand Colors */
.facebook {
    background: #1877F2;
}

.twitter {
    background: #000;
}

.linkedin {
    background: #0A66C2;
}

.instagram {
    background: linear-gradient(45deg, #F58529, #FEDA77, #DD2A7B, #8134AF, #515BD4);
}

:root {
    --primary: #1a3a5c;
    --secondary: #e85d2e;
    --background: #f9f9fb;
    --foreground: #1a2a3a;
    --card: #ffffff;
    --border: #e5e7eb;
    --muted: #f0f1f3;
    --text-muted: #7a8a9a;
    --radius: 12px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}



.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text h2 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #003B8E, #033170, #003785, #0054c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    margin-top: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    color: #c00113;
    text-transform: uppercase;
}

html {
    background-color: var(--background);
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--foreground);
    line-height: 1.6;
    background-color: var(--background);
}

.logo img {
    height: 60px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: slideDown 0.5s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo:hover {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--secondary);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
    margin-top: 80px;
    padding: 0px
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    object-position: top center;
}

/* .slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26, 58, 92, 0.85) 0%, rgba(232, 93, 46, 0.7) 100%);
            z-index: 1;
        } */

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 0.8s ease;
    padding: 0 2rem;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.slide-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.slide-content .btn {
    margin-top: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: white;
    transform: scale(1.3);
    border-color: var(--secondary);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(232, 93, 46, 0.9);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 1.5rem;
}

.slider-arrow.next {
    right: 1.5rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0b3c88;
    border-radius: 3px;
    transition: .3s;
}

/* Mobile */
@media (max-width:768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 20px;
        padding: 25px 25px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .1);

        display: none;
    }

    .nav-links.active {
        display: flex;
    }
}

@media (max-width: 768px) {
    .about-content {
        display: block !important;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        animation: fadeInUp 0.8s ease;
    }

    .nav-container {
        display: flex;
        justify-content: left;
        align-items: center;
        position: relative;
    }

    .about-content img {
        border-radius: 30px;
        width: 100%;
    }

    .about-text {
        margin-bottom: 30px;
    }

    .slider {
        height: 400px;
        width: 634px !important;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, #2a4f7c 100%);
    color: white;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(232, 93, 46, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: #d94a1f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 93, 46, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--muted);
    transform: translateY(-2px);
}

/* Section */
section {
    padding: 5rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: #181818;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    background: #fff
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    animation: fadeInUp 0.8s ease;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-text p {
    font-size: 1.1rem;
    color: #1e1e1e;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    letter-spacing: 0.5
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pillar {
    padding: 1rem;
    background: white;
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    transition: all 0.3s;
}

.pillar:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.pillar strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* Services Grid */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service-card p {
    color: #242424;
    font-size: 16px;
    letter-spacing: 0.5px;
}

/* Support Areas */
.support {
    background: #1a2a3a;
}

.support .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff !important;
}

.support .section-subtitle {
    color: #fff !important;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease;
}

.support-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.support-item:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(232, 93, 46, 0.1);
    transform: scale(1.05);
}

.support-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.support-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Languages Section */
.languages {
    background: white;
}

.languages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.language-card {
    background: linear-gradient(135deg, var(--primary) 0%, #2a4f7c 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1.1rem;
}

.language-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 58, 92, 0.2);
}

/* Helpdesk Section */
.helpdesk {
    background: #fff;
}

.helpdesk h2 {
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.5px;
}

.helpdesk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
    animation: fadeInUp 0.8s ease;
}

.helpdesk-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: 0 1px 7px rgb(245 143 30);
    transition: all 0.3s;
}

.helpdesk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.helpdesk-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.helpdesk-card h3 i,
.helpdesk-card p i {
    color: var(--secondary);
    margin-right: .35rem;
}

.helpdesk-card p a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.helpdesk-card p a:hover {
    color: var(--secondary);
}

/* Timeline */
.timeline {
    background: white;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    animation: fadeInUp 0.8s ease;
}

.timeline-content {
    padding: 2rem;
    background: #ffffff;
    border-radius: var(--radius);
    transition: all 0.3s;
    box-shadow: inset 0 0 10px #f68c1f;
}

.timeline-content:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--secondary);
}

.timeline-dot {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 0 0 4px var(--secondary);
}

.timeline-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Why Choose Section */
.why-choose {
    background: #ffe9eb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    border-left: 5px solid var(--secondary);
    transition: all 0.3s;
}

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

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Emergency Section */
.emergency {
    background: linear-gradient(90deg, #003B8E, #1565C0, #F7941D, #F15A29);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.emergency h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.emergency-number {
    font-size: 3rem;
    font-weight: 700;
    margin: 1.5rem 0;
    font-family: monospace;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.emergency p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    animation: fadeInUp 0.8s ease;
}

.testimonial-card {
    background: var(--muted);
    padding: 2rem;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.testimonial-card:hover {
    background: white;
    border: 2px solid var(--secondary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stars {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    background: var(--muted);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.faq-question {
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--primary);
}

.faq-question:hover {
    background: var(--muted);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: var(--muted);
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

/* Contact Section */
.contact {
    background: white;
}
.contact h2{
    font-size:32px;
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    animation: fadeInUp 0.8s ease;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #060606;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(232, 93, 46, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group button {
    margin-top: 0.5rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 0;
    position: relative;
}

.footer-wave {
    position: relative;
    width: 100%;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 2rem 1rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none !important;
}

.footer-bottom a:hover {
    text-decoration: underline !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        margin-left: 50px;
    }



    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-dot {
        justify-self: start;
        margin-left: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero {
        margin-top: 70px;
        min-height: 400px;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

.about-content img {
    border-radius: 30px;
}

.read-more {
    padding: 7px 25px;
    background: linear-gradient(90deg, #003B8E, #003d92, #0052c1, #0050bf);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.about-text a:hover {
    background-color: #033171;
}

h2 span {


    background: linear-gradient(90deg, #003B8E, #1565C0, #F7941D, #F15A29);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Assistance */

.assist-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #003B8E, #033170, #003785, #0054c7);
}


.assist-section h2 {
    color: #fff;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
}

.assist-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 25px;
}

@media(max-width:1200px) {
    .assist-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:992px) {
    .assist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .assist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {
    .assist-grid {
        grid-template-columns: 1fr;
    }
}

.assist-card {
    background: #fff;
    border-radius: 20px;
    padding: 23px 5px;
    text-align: center;
    transition: .4s;
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.assist-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #f15a29;
    transition: .4s;
}

.assist-card:hover::after {
    width: 100%;
}

.assist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.assist-icon {
    width: 50px;
    height: 50px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    transition: .5s;
}

.assist-card:hover .assist-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, #f15a29, #ff9f43);
}

.assist-card h5 {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #0d3b66;
    margin: 0;
}

/* Shared PHP subpages */
.site-nav {
    background: rgba(255, 255, 255, .96);
}

.breadcrumb-banner {
    margin-top: 80px;
    padding: 2rem 0 1.85rem;
    color: var(--primary);
    background-color: #dce5f0;
    background-image: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .95) 0 1px, transparent 2px), radial-gradient(circle at 78% 26%, rgba(255, 255, 255, .9) 0 1.5px, transparent 2.5px), radial-gradient(circle at 40% 75%, rgba(255, 255, 255, .75) 0 1px, transparent 2px);
    background-size: 29px 29px, 53px 53px, 41px 41px;
}

.breadcrumb-banner .eyebrow {
    color: #6b7d91;
    margin-bottom: .2rem;
    DISPLAY: NONE;
}

.breadcrumb-banner h1 {
    font-family: Montserrat, sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    margin: 0 0 .65rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 600;
    font-size: .94rem;
    position: relative;
    background-color: #ffffff00;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0%);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

.breadcrumbs>span[aria-hidden] {
    color: #8190a0;
    font-size: 1.25rem;
    font-weight: 400;
}

.logo-text strong {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: .09em;
    background: linear-gradient(90deg, #003B8E, #0054c7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text small {
    margin-top: .22rem;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .33em;
    color: #c00113;
}

.nav-links a.is-active {
    color: var(--secondary);
    position: relative;
}

.nav-links a.is-active::after {
    content: '';
    position: absolute;
    height: 2px;
    background: var(--secondary);
    left: 0;
    right: 0;
    bottom: -8px;
}

.nav-login {
    background: var(--primary);
    color: #fff !important;
    padding: .58rem 1rem;
    border-radius: 999px;
}

.nav-login:hover,
.nav-login.is-active {
    background: var(--secondary);
    color: #fff !important;
}

.nav-login::after {
    display: none;
}

.page-hero {
    margin-top: 80px;
    min-height: 390px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #082d59 0%, #135a9d 58%, #e56935 150%);
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border: 70px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    right: -120px;
    top: -230px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: Montserrat, sans-serif;
    max-width: 760px;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1.08;
    margin: .35rem 0 1rem;
    letter-spacing: -.045em;
}

.hero-lead {
    max-width: 630px;
    font-size: 1.12rem;
    opacity: .92;
}

.eyebrow {
    color: var(--secondary);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .16em;
    margin: 0 0 .8rem;
}

.page-hero .eyebrow {
    color: #ffd0bd;
}

.page-section {
    padding: 5.75rem 0;
}

.soft-section {
    background: #f3f7fb;
}

.story-layout,
.contact-page-grid {
    display: grid;
    grid-template-columns: 1.45fr .8fr;
    gap: 4rem;
    align-items: center;
}

.history-content {
    background: #FFF;
}

.history-content .container {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
    gap: 3.5rem;
    align-items: start;
}

.history-intro {
    padding: 2.4rem;
    border: 1px solid #e6edf4;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(22, 62, 100, .08);
}

.history-intro h2 {
    color: #333;
    font-size: 1.7rem;
    margin: 0 0 1rem;
}

.history-intro p {
    color: #1e1e1e;
    letter-spacing: 0.5px;
    font-size: .98rem;
    line-height: 1.32;
    margin: 0 0 1.25rem;
}


.history-intro strong {
    color: #303030;
}

.history-side {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.history-address {
    background: linear-gradient(135deg, #a11616, #731010);
    color: #fff;
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 14px 30px rgba(128, 16, 16, .18);
}

.history-address i {
    color: #ffd1a9;
    font-size: 1.45rem;
}

.history-address h3 {
    font-size: 1.4rem;
    margin: .8rem 0 .35rem;
}

.history-address p {
    font-weight: 700;
    line-height: 1.52;
    margin: 0;
}

.vision-card {
    border-left: 5px solid #b26c1d;
    background: #fff9f2;
    border-radius: 0 16px 16px 0;
    padding: 1.8rem;
    color: #6b431e;
}

.vision-card h3 {
    margin: 0 0 .1rem;
    font-size: 1.02rem;
}

.vision-card p {
    margin: 0 0 1.55rem;
    line-height: 1.22;
}

.vision-card h4 {
    color: #333;
    margin: 0 0 .4rem;
}

.vision-card ul {
    color: #333;
    padding: 0;
    margin: 0;
    list-style: none;
    font-size: .88rem;
    line-height: 1.55;
}

.story-layout h2,
.section-intro h2,
.contact-panel h2,
.contact-page-form h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.7rem);
    line-height: 1.18;
    color: var(--primary);
    margin: 0 0 1.25rem;
}

.story-layout p:not(.eyebrow),
.section-intro>p {
    color: #526274;
    font-size: 1.04rem;
    line-height: 1.85;
    margin: 0 0 1rem;
}

.quote-card {
    background: var(--primary);
    color: #fff;
    padding: 2.4rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(11, 53, 93, .18);
}

.quote-card i {
    color: #f7a278;
    font-size: 1.8rem;
}

.quote-card p {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.55;
    margin: 1rem 0;
}

.quote-card span {
    color: #bfd5ec;
    font-size: .86rem;
}

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

.milestones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.milestones article {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e3ebf3;
}

.milestones span {
    color: var(--secondary);
    font-weight: 800;
}

.milestones h3 {
    color: var(--primary);
    margin: .55rem 0;
}

.milestones p,
.focus-grid p {
    color: #647487;
    line-height: 1.7;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.focus-grid>div {
    padding: 1.6rem;
}

.focus-grid i {
    color: var(--secondary);
    font-size: 1.8rem;
}

.focus-grid h3 {
    color: var(--primary);
    margin: .7rem 0;
}

.section-intro {
    max-width: 650px;
    margin-bottom: 2.5rem;
}

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.service-page-card {
    padding: 2rem;
    border: 1px solid #e4ebf2;
    border-radius: 16px;
    background: #fff;
    transition: .25s ease;
}

.service-page-card:hover {
    transform: translateY(-6px);
    border-color: #f3a47e;
    box-shadow: 0 14px 35px rgba(13, 47, 82, .1);
}

.service-page-card i {
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--secondary);
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.service-page-card h3 {
    color: var(--primary);
    margin: 1.2rem 0 .55rem;
}

.service-page-card p {
    color: #617287;
    line-height: 1.65;
}

.callout {
    padding: 3.5rem 0;
    background: var(--primary);
    color: #fff;
}

.callout .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.callout h2 {
    font-size: 2rem;
}

.button-light,
.button-primary {
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font: 700 .92rem Montserrat, sans-serif;
    text-decoration: none;
    cursor: pointer;
    padding: .95rem 1.35rem;
    border-radius: 999px;
}

.button-light {
    background: #fff;
    color: var(--primary);
}

.button-primary {
    background: var(--secondary);
    color: #fff;
    align-self: flex-start;
}

.button-primary:hover {
    background: #c84b20;
}

.contact-page-grid {
    align-items: stretch;
}

.contact-panel {
    padding: 2.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
}

.contact-panel h2 {
    color: #fff;
}

.contact-panel .eyebrow {
    color: #f6a27d;
}

.contact-panel>a,
.contact-panel>div {
    color: #fff;
    text-decoration: none;
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: flex-start;
}

.contact-panel i {
    color: #f4a078;
    width: 20px;
    margin-top: .25rem;
}

.contact-panel span {
    display: flex;
    flex-direction: column;
}

.contact-panel strong {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #bbd3ea;
    margin-bottom: .2rem;
}

.contact-note {
    color: #c8daea;
    margin-top: 2rem;
    font-size: .9rem;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page-form label,
.login-card label {
    display: flex;
    flex-direction: column;
    gap: .42rem;
    color: var(--primary);
    font-weight: 700;
    font-size: .86rem;
}

.contact-page-form input,
.contact-page-form textarea,
.login-card input {
    width: 100%;
    border: 1px solid #d9e2ea;
    border-radius: 9px;
    padding: .8rem .9rem;
    font: 400 .95rem Montserrat, sans-serif;
    margin-top: .1rem;
}

.contact-page-form textarea {
    min-height: 130px;
    resize: vertical;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-map-section {
    background: #f6f9fc;
}

.map-panel {
    padding: 2.25rem;
    background: #fff;
    border: 1px solid #e4ebf2;
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(17, 54, 89, .07);
}

.map-frame {
    height: 360px;
    margin-top: 1.3rem;
    overflow: hidden;
    border-radius: 12px;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 1.2rem;
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
}

.login-main {
    background: linear-gradient(120deg, #edf4fb 0%, #fff 62%);
    min-height: calc(100vh - 80px);
    padding: 7.5rem 2rem 4rem;
}

.login-wrap {
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 5rem;
    align-items: center;
}

.login-copy h1 {
    color: var(--primary);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    margin: 0 0 1rem;
}

.login-copy>p {
    color: #587088;
    font-size: 1.1rem;
    max-width: 480px;
}

.login-points {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-top: 2rem;
    color: var(--primary);
    font-weight: 600;
}

.login-points i {
    color: var(--secondary);
    margin-right: .5rem;
}

.login-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 22px 60px rgba(26, 58, 92, .15);
}

.login-card>img {
    width: 57px;
}

.login-card h2 {
    color: var(--primary);
    margin: 0;
}

.login-card>p {
    color: #6a7a8b;
    margin: 0 0 .6rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    font-size: .8rem;
}

.form-options label {
    flex-direction: row;
    align-items: center;
    font-weight: 500;
}

.form-options input {
    width: auto;
    margin: 0;
}

.form-options a,
.login-bottom a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
}

.login-bottom {
    text-align: center;
    margin: 1rem 0 0 !important;
    font-size: .85rem;
}

.site-footer {
    background: #102f4f;
    color: #fff;
}

.site-footer .footer-content {
    padding-top: 3.5rem;
}

.site-footer .footer-section p {
    color: #cad8e5;
}

.footer-call {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
}

.site-footer .footer-bottom {
    max-width: none;
    background: #0b243d;
}

@media (max-width: 800px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        padding: 1rem 2rem 1.5rem;
        background: #fff;
        flex-direction: column;
        gap: 1.2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    }

    .hamburger {
        display: flex;
        border: 0;
        background: transparent;
    }

    .story-layout,
    .contact-page-grid,
    .login-wrap,
    .history-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .milestones,
    .focus-grid,
    .service-page-grid {
        grid-template-columns: 1fr;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .callout .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .login-main {
        padding: 4rem 1rem 3rem;
    }

    .login-wrap {
        gap: 2.5rem;
    }

    .page-section {
        padding: 4rem 0;
    }

    .breadcrumb-banner {
        padding: 1.4rem 0;
    }

    .breadcrumb-banner h1 {
        font-size: 1.7rem;
    }

    .map-frame {
        height: 300px;
    }
}

/* Services page refresh */
.services-content {
    background: #fff;
}

.services-content .section-intro {
    max-width: 720px;
}

.helpdesk-strip {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: .85rem;
    background: #fff;
    border: 2px solid #d85116;
    border-radius: 18px;
    box-shadow: 0 8px 0 #823415;
}

.helpdesk-icon {
    width: 55px;
    height: 55px;
    flex: 0 0 55px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffe2d4;
    color: #9d3513;
    font-size: 1.45rem;
}

.helpdesk-strip strong {
    color: #61240f;
    font-size: 1.05rem;
}

.helpdesk-strip p {
    color: #573927;
    margin: .2rem 0 0;
    font-weight: 600;
    line-height: 1.35;
}

.language-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.35rem;
    margin-bottom: 2rem;
    color: #52230f;
    background: #ffe8dd;
    border-radius: 13px;
}

.language-strip i {
    color: #ad4018;
    font-size: 1.45rem;
}

.language-strip p {
    margin: 0;
    line-height: 1.4;
}

.services-content .service-page-grid {
    gap: 1rem;
}

.services-content .service-page-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    min-height: 148px;
    padding: 1.35rem;
    border: 1px solid #f0ded5;
    border-radius: 15px;
}

.services-content .service-page-card i {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    color: #873415;
    background: #ffe0d1;
    font-size: 1rem;
}

.services-content .service-page-card h3 {
    margin: .1rem 0 .4rem;
    font-size: 1rem;
    line-height: 1.25;
}

.services-content .service-page-card p {
    margin: 0;
    font-size: .85rem;
    line-height: 1.5;
}

.services-content .service-page-card:hover {
    border-color: #d85116;
    background: #fffaf7;
    box-shadow: 0 12px 25px rgba(159, 55, 18, .12);
}

@media (max-width:800px) {

    .helpdesk-strip,
    .language-strip {
        align-items: flex-start;
        padding: 1.1rem;
    }

    .services-content .service-page-card {
        min-height: 0;
    }
}

/* Mission and vision */
@keyframes purposeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes purposeGlow {

    0%,
    100% {
        opacity: .45;
        transform: scale(.92);
    }

    50% {
        opacity: .85;
        transform: scale(1.08);
    }
}

.mission-vision {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background: #f3f7fb;
}

.mission-vision::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 93, 46, .17), transparent 68%);
    animation: purposeGlow 6s ease-in-out infinite;
}

.mission-vision::after {
    content: '';
    position: absolute;
    width: 330px;
    height: 330px;
    left: -150px;
    bottom: -170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 193, .14), transparent 69%);
    animation: purposeGlow 7s ease-in-out infinite reverse;
}

.mission-vision .container {
    position: relative;
    z-index: 1;
}

.mission-vision-heading {
    max-width: 640px;
    margin: 0 auto 2.6rem;
    text-align: center;
}

.mission-vision-heading h2 {
    color: var(--primary);
    font-size: clamp(2rem, 3.8vw, 32px);
    line-height: 1.15;
    margin: 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.purpose-card {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    padding: 2.5rem;
    border-radius: 22px;
    color: #fff;
    isolation: isolate;
    box-shadow: 0 20px 45px rgba(17, 57, 93, .16);
    transition: transform .35s ease, box-shadow .35s ease;
    animation: purposeFloat 5.5s ease-in-out infinite;
}

.purpose-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 28px 54px rgba(17, 57, 93, .24);
}

.purpose-card::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 240px;
    height: 240px;
    right: -95px;
    bottom: -110px;
    border: 45px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
}

.mission-card {
    background: linear-gradient(135deg, #063a73, #0c6abc);
}

.vision-card-home {
    background: linear-gradient(135deg, #c84b20, #f48645);
    animation-delay: -2.5s;
}

.purpose-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 1.8rem;
    border-radius: 17px;
    color: var(--primary);
    background: #fff;
    font-size: 1.45rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}

.purpose-label {
    margin: 0 0 .45rem;
    color: #cae6ff;
    font-weight: 800;
    font-size: .76rem;
    letter-spacing: .18em;
}

.vision-card-home .purpose-label {
    color: #ffe0ce;
}

.purpose-card h3 {
    margin: 0 0 1rem;
    font-size: 1.55rem;
    line-height: 1.2;
}

.purpose-card>div:nth-child(2)>p:last-child {
    max-width: 550px;
    margin: 0;
    font-size: .98rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, .91);
}

.purpose-number {
    position: absolute;
    right: 2rem;
    top: 2.1rem;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, .15);
}

@media (max-width:768px) {
    .mission-vision {
        padding: 4rem 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .purpose-card {
        min-height: 0;
        padding: 2rem;
    }

    .purpose-number {
        right: 1.4rem;
        top: 1.6rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .mission-vision::before,
    .mission-vision::after,
    .purpose-card {
        animation: none;
    }

    .purpose-card:hover {
        transform: none !important;
    }
}