﻿/* Global Styles */
:root {
    --atns-blue: #00264d;
    --atns-light: #f5f5f5;
    --transition-speed: 0.3s;
}

body {
    padding-top: 160px;
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.logo {
    width: 100px;
    height: auto;
    transition: all var(--transition-speed) ease;
}

header.header {
    background-color: var(--atns-blue);
    color: white;
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .desktop-nav > a,
    .nav-item > .nav-link {
        color: white;
        text-decoration: none;
        cursor: pointer;
        padding: 0.75rem 1rem;
        position: relative;
        display: inline-block;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .desktop-nav > a:hover,
        .nav-item > .nav-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

.nav-item {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--atns-light);
    padding: 1.5rem;
    z-index: 999;
    width: max-content;
    min-width: 500px;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-item:hover > .dropdown {
    display: block;
}

.dropdown-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.dropdown-column {
    flex: 1 1 200px;
}

    .dropdown-column h3 {
        color: var(--atns-blue);
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .dropdown-column hr {
        margin: 0.75rem 0;
        border-color: rgba(0, 38, 77, 0.1);
    }

    .dropdown-column a {
        display: block;
        color: var(--atns-blue);
        text-decoration: none;
        padding: 0.5rem 0;
        transition: all 0.2s ease;
        border-left: 2px solid transparent;
    }

        .dropdown-column a:hover {
            color: #0056b3;
            padding-left: 10px;
            border-left: 2px solid #0056b3;
        }

/* Dropdown arrow for desktop */
.nav-item > .nav-link::after {
    content: "⌄";
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.9em;
}

.nav-item:hover > .nav-link::after {
    transform: rotate(180deg);
}

/* Slider Container */
.slideshow-container {
    margin-top: -70px;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

/* Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

/* Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 38, 77, 0.5); /* ATNS blue with transparency */
}

/* Content */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

    .content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .content h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        font-weight: 400;
    }

    .content hr {
        width: 100px;
        margin: 20px auto;
        border: 1px solid white;
    }

/* CTA Button */
.cta-button {
    background-color: #00539C;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .cta-button:hover {
        background-color: #003366;
        transform: translateY(-2px);
    }

/* Navigation Buttons */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

    .nav-button:hover {
        background: rgba(255, 255, 255, 0.5);
    }

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Dots Navigation */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: white;
        transform: scale(1.2);
    }

/* New Styles for Added Sections */
.quick-links, .what-we-do {
    margin: 3rem 0;
    text-align: center;
}

.main-content a {
    text-decoration: none;
    color: var(--atns-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center !important;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.quick-link-item, .service-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    color: #00264d;
}

    .quick-link-item:hover, .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .quick-link-item i, .service-item i {
        margin-bottom: 1rem;
    }

    .quick-link-item p, .service-item p {
        margin-top: 1rem;
    }

.no-hover-link:hover {
    text-decoration: none !important;
    color: inherit !important;
}

.banner {
    position: relative;
    width: 100%;
    margin: 3rem 0;
}

    .banner img {
        width: 100%;
        object-fit: cover;
    }

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 38, 77, 0.6);
}

    .banner-overlay h1 {
        font-size: 3rem;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

.stats-section {
    position: relative;
    margin: 4rem 0;
}

    .stats-section img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .stats-section h2 {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
    }

.stats {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 90%;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
    max-width: 200px;
}

    .stat-item span {
        font-size: 2.5rem;
        font-weight: bold;
        color: #00264d;
    }

.stat-label {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.careers-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.careers-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.careers-content {
    padding: 0 2rem;
}

    .careers-content .btn {
        background-color: #00264d;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
    }

.contact-section {
    padding: 3rem 0;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.email-form-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.btn-primary {
    background-color: #00264d;
    border-color: #00264d;
}

/* MEDIA HUB */

.Audiocontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
}

.Audiomain {
    flex: 2;
    padding-right: 20px;
}



/* FOOTER */

/* Footer Styles */
.footer {
    background-color: var(--atns-blue);
    color: white;
    padding: 2rem 1rem;
    width: 100%;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 300px;
    min-width: 250px;
}

.underline {
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

    .underline::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: white;
    }

.social-icons1 {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

    .social-icons1 a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

        .social-icons1 a:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

    .social-icons1 svg {
        width: 20px;
        height: 20px;
        fill: white;
    }

.Quick-links div {
    margin-bottom: 0.75rem;
}

.Quick-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

    .Quick-links a:hover {
        color: #ccc;
        text-decoration: underline;
    }

.footer-column p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

    .footer-column a:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* Mobile Navigation */
.mobile-nav-container {
    display: none;
}

.hamburger {
    display: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: white;
    background: none;
    border: none;
    padding: 0.5rem;
    transition: all var(--transition-speed) ease;
}

    .hamburger:hover {
        transform: scale(1.1);
    }

/* Main mobile nav container */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1050;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

    .mobile-nav.show {
        transform: translateX(0);
    }

/* Mobile menu header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 38, 77, 0.1);
    background: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.mobile-nav-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--atns-blue);
    margin: 0;
}

.close-toggler {
    background: none;
    border: none;
    color: var(--atns-blue);
    font-size: 1.75rem;
    padding: 0.5rem;
}

/* Mobile menu content */
.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

/* Mobile menu items */
.mobile-nav-item {
    border-bottom: 1px solid rgba(0, 38, 77, 0.1);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: var(--atns-blue);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all var(--transition-speed) ease;
}

    .mobile-nav-link.active {
        color: #0056b3;
        font-weight: 600;
    }

    /* Mobile dropdown indicator */
    .mobile-nav-link.has-children::after {
        content: "+";
        font-size: 1.25rem;
        transition: transform var(--transition-speed) ease;
    }

.mobile-nav-item.active > .mobile-nav-link.has-children::after {
    content: "-";
}

/* Mobile submenu (overlay style) */
.mobile-submenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1051;
    transform: translateX(100%);
    transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

    .mobile-submenu.show {
        transform: translateX(0);
    }

/* Submenu header */
.mobile-submenu-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 38, 77, 0.1);
    background: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.mobile-submenu-back {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--atns-blue);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
}

    .mobile-submenu-back::before {
        content: "←";
        margin-right: 0.5rem;
        font-size: 1.25rem;
    }

.mobile-submenu-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--atns-blue);
    margin: 0 0 0 1rem;
}

/* Submenu content */
.mobile-submenu-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.mobile-submenu-section {
    margin-bottom: 1.5rem;
}

.mobile-submenu-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--atns-blue);
    margin: 0 0 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 38, 77, 0.1);
}

.mobile-submenu-link {
    display: block;
    padding: 0.75rem 0.5rem;
    color: var(--atns-blue);
    text-decoration: none;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    border-left: 3px solid transparent;
}

    .mobile-submenu-link:hover,
    .mobile-submenu-link:active {
        border-left: 3px solid var(--atns-blue);
        padding-left: 10px;
        background-color: rgba(0, 38, 77, 0.05);
    }

/* Overlay for mobile menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed) ease, visibility var(--transition-speed) ease;
}

    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }


/* Board/Exc styles */

.members-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.member-card {
    flex-basis: calc(25% - 2px);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
}


/* Sidebar */
.sidebar {
    flex: 1;
    width: 250px;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow-y: auto;
    margin-bottom: auto;
}

    .sidebar h3 {
        font-size: 18px;
        color: #333;
        margin: 0 0 15px;
        padding-bottom: 10px;
        position: relative;
    }

        .sidebar h3::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            margin-top: 10px;
            background-color: #00a0e3;
        }

    .sidebar ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .sidebar li {
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
    }

        .sidebar li:last-child {
            border-bottom: none;
        }

    .sidebar a {
        display: block;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .sidebar a:hover,
        .sidebar .active {
            color: #00a0e3;
        }

    .sidebar .active {
        font-weight: bold;
    }

/* About Us Layout */
.AboutUScontent {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.AboutUSmain {
    flex: 2;
    padding-right: 20px;
}

.AboutUSheading-container {
    margin: 0;
}

    .AboutUSheading-container h1 {
        font-size: 24px;
        color: #00264d;
        position: relative;
    }

        .AboutUSheading-container h1::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #00aeef;
            position: absolute;
            left: 0;
            bottom: -10px;
        }

    .AboutUSheading-container h2 {
        font-size: 16px;
        color: #111212;
        margin-bottom: 10px;
    }

    .AboutUSheading-container p {
        font-size: 16px;
        margin-top: 15px;
    }

/*Reports pages*/
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.heading-container {
    margin-top: 50px;
    margin-left: 0px;
}

.reports-section {
    padding-right: 40px;
}

.heading-container h1 {
    position: relative;
    font-size: 24px;
}

/*Reports*/
.Reportcontainer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.reports-section {
    padding-right: 40px;
}

.page-title {
    color: #333;
    margin-bottom: 1.5rem;
}

.intro-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.view-report-btn {
    background-color: #4BB4E6;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2rem;
    margin-left: 350px;
    margin-bottom: 150px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.report-card {
    border: 1px solid #eee;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s;
    display: inline-size;
}

    .report-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

h3.report-card {
    padding-top: 50px;
}

.report-image {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
}

.report-title {
    color: #002B5C;
    margin-top: 1rem;
    font-size: 0.9rem;
}


/* Table */

td {
    color: #333;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

th, td {
    padding: 10px;
    text-align: left;
}

table, th, td {
    border: 1px solid #e0e0e0 !important;
}

    table a {
        color: #00a0e3 !important;
        text-decoration: none !important;
    }



/* ATM stylings*/
.services h1 {
    position: relative;
    font-size: 24px;
    top: -20px;
}

.services ol {
    list-style: none;
    position: relative;
    display: flex;
    gap: 80px;
    padding: 30px 0;
    left: 30px;
}

.other h2 {
    display: inline-block; /* Ensures the underline is only as wide as the text */
    position: relative; /* Allows positioning of the pseudo-element */
    font-size: 30px;
    top: -25px;
    left: 25px;
}

    .other h2::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #00AEEF;
        position: absolute;
        left: 0;
        bottom: -25px;
    }



.services a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit the color from the parent element */
    width: 20%;
    margin-left: -40px;
}


.services ol li {
    position: relative;
    list-style: none;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-content: center;
    background: #0056ae;
    clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
}


.services a,
.services i {
    transform: translateY(30px);
    color: #00264d;
    font-weight: 700;
}

.services ol li:hover {
    margin-bottom: 20px;
    top: 20px;
}

/* Responsive Breakpoints */
@media (max-width: 1199.98px) {
    .dropdown {
        min-width: 800px;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

        .sidebar.active {
            display: block !important;
        }

    .AboutUScontent {
        flex-direction: column; /* Stack content vertically */
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 80px;
    }

    .logo {
        width: 100px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-nav-container {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .banner-overlay h1 {
        font-size: 2.5rem;
    }

    .stats-section h2 {
        font-size: 2rem;
    }

    .stat-item {
        flex: 1 1 150px;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

        .sidebar.active {
            display: block !important;
        }

    .AboutUScontent {
        flex-direction: column; /* Stack content vertically */
    }
}

@media (max-width: 767.98px) {
    .mobile-nav-header,
    .mobile-nav-content,
    .mobile-submenu-header,
    .mobile-submenu-content {
        padding: 1rem;
    }

    .close-toggler {
        font-size: 1.5rem;
    }

    /* Slider*/
    .slideshow-container {
        padding-bottom: 75%; /* Taller aspect ratio for mobile */
    }

    .content h1 {
        font-size: 1.8rem;
    }

    .content h2 {
        font-size: 1.2rem;
    }

    .content h3 {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .banner-overlay h1 {
        font-size: 2rem;
    }

    .stats-section h2 {
        top: 15%;
        font-size: 1.5rem;
    }

    .stats {
        top: 60%;
        gap: 1rem;
    }

    .stat-item span {
        font-size: 2rem;
    }

    .careers-content {
        padding: 2rem 0 0 0;
    }

    .contact-section .row > div {
        margin-bottom: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-column {
        flex: 1 1 100%;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

        .sidebar.active {
            display: block !important;
        }

    .AboutUScontent {
        flex-direction: column; /* Stack content vertically */
    }
}

@media (max-width: 576px) {
    .banner-overlay h1 {
        font-size: 1.5rem;
    }

    .stats-section h2 {
        top: 10%;
        font-size: 1.2rem;
    }

    .stat-item {
        flex: 1 1 100px;
    }

        .stat-item span {
            font-size: 1.5rem;
        }

    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 1rem;
    }

    .content {
        width: 95%;
    }

    .cta-button {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

        .sidebar.active {
            display: block !important;
        }

    .AboutUScontent {
        flex-direction: column; /* Stack content vertically */
    }
}
