﻿body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    padding-top: 40px;
}

.header {
    background-color: #00264d;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /*opacity: 90%;*/
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.logo {
    width: 184px;
}

.nav {
    display: flex;
    align-items: center;
    padding-top:10px;
}

    .nav > a, .nav-item {
        color: white;
        text-decoration: none;
        margin-left: 20px;
        position: relative;
        display: inline-block;
        font-weight: bold;
        font-size: 18px;
        transition: color 0.3s ease;
    }

        .nav > a::after, .nav-item::after {
            content: "|";
            color: grey;
            margin-left: 10px;
        }

        .nav > a:last-child::after, .nav-item:last-child::after {
            content: "";
        }

.nav-item {
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: -23px;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    min-width: 200px;
    padding: 10px 0;
}

.nav-item:hover .dropdown {
    display: flex;
}

.dropdown a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

    .dropdown a:hover {
        background-color: #f1f1f1;
    }

.dropdown-content {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
}

.dropdown-column {
    padding: 10px 20px;
    border-left: 1px solid #ddd;
}

    .dropdown-column:first-child {
        border-left: none;
    }

    .dropdown-column h3 {
        color: #00a0e3;
        margin-top: 0;
    }

    .dropdown-column a {
        display: block;
        padding: 5px 0;
        color: #333;
        text-decoration: none;
    }

        .dropdown-column a:hover {
            color: #00a0e3;
            background-color: #f1f1f1;
        }


.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh; /* or desired height */
    overflow: hidden;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

    .slide.active {
        display: block;
        z-index: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    z-index: 2;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
    width: 80%;
    max-width: 800px;
}

    .content h2,
    .content h1,
    .content h3,
    .content p {
        opacity: 1;
        transform: translateY(0);
    }

    .content h1 {
        font-size: 3.5rem;
        font-weight: bold;
    }

    .content h2 {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        text-transform: uppercase;
    }

    .content h3 {
        color: #007BFF;
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

  /*   .content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

   .content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }*/


.cta-button {
    background-color: #007bff;
    border: none;
    padding: 12px 20px;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    margin-top: 20px;
    cursor: pointer;
}
    .cta-button:hover {
        background-color: rgba(255, 255, 255, 0.9);
        color: #007bff;
    }

.main {
    flex: 2;
    padding-right: 20px;
}


.dropdown a {
    color: black;
}

.sidebar {
    flex: 1;
    background-color: #f5f5f5;
    padding: 20px;
    margin-bottom: auto;
    width: 250px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
}

    .sidebar h3 {
        color: #333;
        font-size: 18px;
        margin-top: 0;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .sidebar ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .sidebar li {
        padding: 10px 0;
        border-bottom: 1px solid #e0e0e0;
    }

        .sidebar li:last-child {
            border-bottom: none;
        }

    .sidebar a {
        color: #333;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
        font-size: 14px;
    }

        .sidebar a:hover {
            color: #00a0e3;
        }

    .sidebar .active {
        color: #00a0e3;
        font-weight: bold;
    }

    .sidebar h3::after {
        content: '';
        display: block;
        width: 50px;
        height: 3px;
        background-color: #00a0e3;
        margin-top: 10px;
    }

.Home h1 {
    color: #00264d;
    text-align: center;
}

.Home p {
    color: #00264d;
    text-align: center;
}

.Home h2 {
    color: #111212;
    margin-bottom: 10px;
    font-size: 16px;
}


ul {
    list-style-type: none;
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

.economic li, .social li, .environmental p, .socials li {
    color: #111212;
}

.logo-large {
    width: 100%;
    max-width: 400px;
}

/* video {
            width: 100%;
            max-width: 600px;
        }*/

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #e0e0e0;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

td {
    color: #333;
}

table a {
    color: #00a0e3;
    text-decoration: none;
}

.audio {
    display: block;
    width: 750px;
    height: 290px;
    background: rgb(240, 240, 240);
    border-bottom: 10px solid rgb(212, 212, 212);
    margin-top: 40px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s;
}

    .audio.visible {
        transform: translateY(0);
        opacity: 1;
    }

audio {
    margin-top: 10px;
    width: 750px;
}

.text {
    /* padding-top: 1px;
            font-weight: 700;
            font-size: 25px;
            color: rgb(92, 92, 92);*/
    align-content: center
}

    .text h2 {
        color: rgb(92, 92, 92);
        font-size: 30px;
    }

    .text:after {
        content: '';
        display: block;
        width: 50px;
        height: 6px;
        background-color: #00a0e3;
        margin-top: 10px;
    }



.fa-arrow-right {
    color: #00a0e3;
}

/* Footer Styles */
.footer {
    background-color: #00539C;
    color: white;
    padding: 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    margin-right: 20px;
}

    .footer-column:last-child {
        margin-right: 0;
    }

.footer h3 {
    margin-top: 0px;

}


.footer input[type="text"],
.footer input[type="email"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
}

.footer button {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    cursor: pointer;
}

.footer1 {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.social-icons1 a {
    margin: 0 10px;
    display: inline-block;
    color: white;
    text-decoration: none;
}

.social-icons1 svg {
    width: 24px;
    height: 24px;
    fill: white;
    vertical-align: middle;
}

.social-icons {
    display: flex;
    gap: 20px;
}


.social-icon {
    width: 40px;
    height: 40px;
    fill: #007BFF;
    transition: fill 0.3s ease;
    opacity: 1;
}

    .social-icon:hover {
        fill: #faf5f5;
    }


.Quick-links {
    fill: #1e3cd4;
}

.footer-column .Quick-links a {
    color: #fafafa;
}

.Quick-links div  {
    padding-bottom: 5px;
}


    .footer-column .Quick-links a:hover {
        color: #900C3F;
    }

.footer h3.underline {
    text-decoration: underline;
    margin-bottom: 10px;
    bottom: -3px;
    
}

   

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 0.8em;
}

.heading-container {
    margin-top: 0px;
    margin-left: 0px;
}

    .heading-container h1 {
        position: relative;
        font-size: 24px;
    }

        .heading-container h1::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #00AEEF;
            position: absolute;
            left: 0;
            bottom: -10px;
        }

.footer-column a[href="https://atns.ci.hr/applicant/index.php"] {
    display: inline-block;
    color: #FFFFFF;
    background-color: #007BFF;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

    .footer-column a[href="https://atns.ci.hr/applicant/index.php"]:hover {
        background-color: #0056b3;
        text-decoration: underline;
    }

.center-image, .center-images {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

/* Responsive styles */

@media (max-width: 1200px) {
    .header-content {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        max-width: 1280px;
        width: 100%;
        padding: 0 20px;
    }

    .nav {
        display: flex;
        width:75%;
        background-color: #00264d;
        position: absolute;
        /*top: 20%;*/
        right: 0%;
        /*padding: 20px;*/
    }

        .nav.active {
            display: flex;
        }

        .nav > a, .nav-item {
            margin: 0px 0;
            padding: 0px;
            width: 100%;
            text-align: center;
            font-size:10px;
        }

        .nav a{
            right:20px;
        }

        

   

    .dropdown {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
    }

    .nav-item:hover .dropdown {
        display: none;
    }

    .nav-item.active .dropdown {
        display: block;
    }





    .dropdown-column:first-child {
        border-top: none;
    }

    .content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

        .sidebar.active {
            display: block !important;
        }

    .main {
        padding-right: 0;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: #00264d;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        
    }

        .nav.active {
            display: flex;
        }

        .nav > a, .nav-item {
            margin: 10px 0;
            padding: 10px;
            width: 100%;
            text-align: left;
        }

    .hamburger {
        display: block;
        color: white;
    }

    .dropdown {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
    }

    .nav-item:hover .dropdown {
        display: none;
    }

    .nav-item.active .dropdown {
        display: block;
    }





    .dropdown-column:first-child {
        border-top: none;
    }

    .content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

        .sidebar.active {
            display: block !important;
        }

    .main {
        padding-right: 0;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

a {
    text-decoration: none;
    color: blue;
}

@media only screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

a {
    text-decoration: none;
    color: blue;
}

.nav a {
    text-decoration: none;
    color: white;
}

.dropdown a {
    color: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*
.slideshow-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}*/

/*.content {
    position: absolute;
    top: 75%;
    right: 15%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 800px;
    z-index: 1;
}

    .content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

.cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background-color: white;
    color: black;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .cta-button:hover {
        background-color: rgba(255, 255, 255, 0.9);
    }
*/


    .nav-button:hover {
        background-color: rgba(255, 255, 255, 0.75);
    }
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-button.prev {
        left: 20px;
    }

    .nav-button.next {
        right: 20px;
    }

    .nav-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

.dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .dot.active {
        background-color: white;
    }

@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1rem;
    }
}


/* General Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

.Home h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.Home h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: black;
}

.Home h5 {
    color: black;
}

.Home p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: start;
}

/* Quick Links */
.quick-links {
    color: navy;
}

    .quick-links .quick-link-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        text-align: center;
    }

        .quick-links .quick-link-item i {
            font-size: 2.5rem;
            color: black;
            margin-bottom: 15px;
        }

        .quick-links .quick-link-item p {
            margin-top: 10px;
            font-weight: bold;
            text-align: center;
            width: 100%;
        }

/* What We Do Section */
.what-we-do .service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

    .what-we-do .service-item i {
        font-size: 2.5rem;
        color: #004386;
        margin-bottom: 15px;
    }

    .what-we-do .service-item h5 {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .what-we-do .service-item p {
        width: 100%;
        text-align: center;
    }

/* Common styles for both sections */
.Home h3 {
    text-align: center;
}

hr {
    margin: 20px auto;
    width: 100%;
}

.service-item h5 {
    margin-top: 10px;
    font-weight: bold;
}

.service-item p {
    margin-top: 10px;
}

.service-item {
    color: navy;
    margin-top: 50px;
}


/*.slideshow-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s ease;
    visibility: hidden;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
*/
/*
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

    .content h2 {
        font-size: 1.2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease 0.2s;
    }

    .content h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease 0.4s;
    }

    .content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.8s ease 0.6s;
    }

    .content h3 {
        color:#007BFF;
        font-size: 1.4rem;
        margin-bottom: 1rem;
        opacity: 1;
        transform: translateY(20px);
        transition: all 0.8s ease 0.2s;
    }

.cta-button {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid white;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

    .cta-button:hover {
        background: none;
        color: white;
      
    }*/

/*.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

    .nav-button:hover {
        background: rgba(255, 255, 255, 0.4);
    }

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.8s ease;
}

    .dot.active {
        background: white;
    }

.slide.active .content h1,
.slide.active .content h2,
.slide.active .content h3,
.slide.active .content p,
.slide.active .content .cta-button {
    opacity: 1;
    transform: translateY(0);
}
*/
.banner {
    color: white;
    text-align: center;
    padding: 20px;
}

/*.content {
    padding: 20px;
    text-align: center;
}*/

.stats-section {
    max-width: 100%; /* Adjust this value as needed */
    text-align: center;
}

    .stats-section .banner {
        position: relative;
        width: 100%;
        max-height: 500px; /* Adjust this value as needed */
        overflow: hidden;
    }

        .stats-section .banner img {
            width: 100%;
            height: 500px; /* Adjust this value to match max-height */
            object-fit: cover;
            display: block;
        }

        /* Rest of your existing CSS */
        .stats-section .banner h2,
        .stats-section .stats {
            position: absolute;
            z-index: 2;
            width: 100%;
            text-align: center;
            color: white;
        }

        .stats-section .banner h2 {
            top: 20%;
            left: 50%;
            transform: translate(-50%, -10%);
        }

.stat-item {
    font-size: 2.5rem;
    padding-top: 40px;
    font-weight: bold;
    
}

.stats-section .stats {
    display: flex;
    justify-content: space-around;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -10%);
    padding: 0 20px;
}



/* Responsive adjustments */
@media (max-width: 600px) {
    .stats-section .banner {
        max-height: 400px;
    }

        .stats-section .banner img {
            height: 400px;
        }
}

@media (max-width: 480px) {
    .stats-section .banner {
        max-height: 300px;
    }

        .stats-section .banner img {
            height: 300px;
        }
}

.btn-primary {
    background-color: #003366;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

    .btn-primary:hover {
        background-color: #002244;
        color: white;
    }

.stat-label {
    font-size: 1em;
    color: #333;
}

.video-frame {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    padding-left: 40px;
    width: 300px;
    height: 100%;
}

.banner {
    position: relative;
    text-align: center;
    color: white;
}

    .banner img {
        width: 100%;
        height: auto;
    }

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    /*background-color: rgba(0, 0, 0, 0.5);*/ /* Optional: semi-transparent background */
    padding: 20px;
}

.banner h1 {
    font-size: 2.5rem;
    margin: 0;
}

.contact-section {
    max-width: 1200px;
    margin: 40px auto;
    background-color: white;
    /*  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
    padding: 20px;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 16px;
    color: #666;
}

.contact-details .icon {
    font-size: 20px;
    color: #007bff;
    margin-right: 10px;
}

.contact-details .info-item {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.privacy-note a {
    color: #007bff;
    text-decoration: none;
}

.email-form-card {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 0;
}





/* Custom styles */
.careers-section {
    background-color: #003366; /* Dark blue background */
    color: white;
    padding: 40px 0;
}

.careers-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: white;
}

.careers-content p {
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

.careers-content .btn {
    background-color: #007bff;
    color: white;
    border: none;
    margin-top: 20px;
}

    .careers-content .btn:hover {
        background-color: #0056b3;
    }

.careers-image {
    height: 100%;
    width: 100%;
    border-radius: 4px;
}

.slide active .content h2 {
    top: 75%;
    left: 75%;
}



/* Abbout US Styling */

.AboutUSheader-content {
    display: flex;
    /* justify-content: space-between;*/
    justify-content: flex-start; /* Align the logo and nav to the left */
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.AboutUScontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
}

.AboutUSmain {
    flex: 2;
    padding-right: 20px;
}

.AboutUSheading-container h1 {
    color: #00264d;
    
}

.AboutUSheading-container h2 {
    color: #111212;
    margin-bottom: 10px;
    
}
.AboutUSheading-container p {
    margin-top: 15px;font-size: 16px;
}

.AboutUSheading-container {
    margin-top: 0px;
    margin-left: 0px;
}

    .AboutUSheading-container h1 {
        position: relative;
        font-size: 24px;
    }

        .AboutUSheading-container h1::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #00AEEF;
            position: absolute;
            left: 0;
            bottom: -10px;
        }


.center-image, .center-images {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}
/* Responsive styles */
@media (max-width: 768px) {
    .AboutUSheader-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        display: none; /* Hide nav by default */
        flex-direction: column;
        background-color: #00264d;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        width: 100%;
    }

        .nav.active {
            display: flex; /* Show nav when active */
        }

        .nav > a, .nav-item {
            margin: 10px 0; /* Adjust spacing */
            padding: 10px;
            width: 100%; /* Full width for mobile */
            text-align: left;
        }

    .hamburger {
        display: block; /* Show hamburger menu */
        color: white;
    }

    .dropdown {
        position: static; /* Adjust dropdown positioning */
        display: none; /* Hide dropdown by default */
        background-color: #f1f1f1;
        width: 100%;
    }

    .nav-item.active .dropdown {
        display: block; /* Show dropdown when active */
    }

    .AboutUScontent {
        flex-direction: column; /* Stack content vertically */
    }

    .sidebar {
        width: 100%; /* Full width sidebar on mobile */
    }

    .footer-content {
        flex-direction: column; /* Stack footer items */
    }
}

@media only screen and (min-width: 769px) {
    .hamburger {
        display: none; /* Hide hamburger menu on larger screens */
    }
}

a {
    text-decoration: none;
    color: blue;
}

.nav a {
    text-decoration: none;
    color: white;
}

.dropdown a {
    color: black;
}

.AboutUSheading-container h1 {
    color: #00264d;
}



.AboutUSheading-container h2 {
    color: #111212;
    margin-bottom: 10px;
    font-size: 16px;
}

/* MileStone styling */

.MileStonecontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 40px;
}

.MileStonemain-content {
    flex: 2;
    padding-right: 20px;
    
}

.MileStonecontent h1 {
    color: #00264d;
}

.MileStonecontent h2 {
    color: #111212;
    margin-bottom: 10px;
    font-size: 16px;
}

.MileStonheading-container {
     margin-top: 0px;
    margin-left: 0px;
}

    .MileStonheading-container h1 {
        position: relative;
        font-size: 24px;
        padding-bottom: 30px;
    }

.MileStoneheading-container h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #00AEEF;
    position: absolute;
    /*left: 0;*/
    bottom: 285px;
    
}

.MileStonecontent .icon {
    font-size: 46px;
    color: #74C0FC;
    font-weight: 900;
    font-family: Arial, sans-serif;
    display: inline-block;
    width: 10px;
    height: 4px;
    line-height: 4px;
    letter-spacing: -4px;
    text-align: center;
    cursor: pointer;
}

    .MileStonecontent .icon:hover {
        color: none;
        transform: scale(1.1);
        transition: transform 0.2s, color 0.2s ease;
    }

    /* ATNS Values */

.accordian {
    margin: 20px auto;
    width: 100%;
    float: left;
}

    .accordian li {
        list-style: none;
        width: 50%;
        margin: 20px;
        padding: 10px;
        border-radius: 8px;
        background: #e3edf7;
        box-shadow: 6px 6px 10px -1px rgba(0, 0, 0, 0.15), -6px -6px 10px -1px rgba(255, 255, 255, 0.7);
    }

        .accordian li label {
            display: flex;
            align-items: center;
            padding: 10px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
        }

.accordian label::before {
    content: '+';
    margin-right: 10px;
    font-size: 24px;
    font-weight: 600;
}

input[type="radio"] {
    display: none;
}

.accordian .text {
    color: #555;
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, padding 0.5s;
}

.accordian input[type="radio"]:checked + label + .text {
    max-height: 400px;
    padding: 10px 10px 20px;
}

.accordian input[type="radio"]:checked + label::before {
    content: "-";
}

/* Board members */

.board-members {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

    .board-members h3 {
        color: #00264d;
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #00a0e3;
    }

.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;
}

    .member-card img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .member-card h4 {
        color: #333;
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .member-card a {
        color: #00a0e3;
        text-decoration: none;
        font-size: 14px;
    }

        .member-card a:hover {
            text-decoration: underline;
        }

/* Responsive styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: #00264d;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
    }

        .nav.active {
            display: flex;
        }

        .nav > a, .nav-item {
            margin: 10px 0;
            padding: 10px;
            width: 100%;
            text-align: left;
        }

    .hamburger {
        display: block;
        color: white;
    }

    .dropdown {
        position: static;
        display: none;
        background-color: transparent;
        box-shadow: none;
    }

    .nav-item:hover .dropdown {
        display: none;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .dropdown-content {
        flex-direction: column;
        padding: 0;
    }

    .dropdown-column {
        padding: 10px 0;
        border-left: none;
        border-top: 1px solid #ddd;
    }

        .dropdown-column:first-child {
            border-top: none;
        }

    .content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }

        .sidebar.active {
            display: block !important;
        }

    .main {
        padding-right: 0;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-column {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

/* PAIA Manual styling */

.langLink {
    color: black;
}

/* CSI Project styling */

.CSIcontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
}

.CSImain {
    flex: 2;
    padding-right: 20px;
}

.CSI h1 {
    color: #00264d;
}

.CSIheading-container h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #00AEEF;
    position: absolute;
    /*left: 0;*/
    bottom: 265px;
}


.CSI h2 {
    color: #111212;
    margin-bottom: 10px;
    font-size: 16px;
}

.CSIheading-container {
    margin-top: 0px;
    margin-left: 0px;
}

    .CSIheading-container h1 {
        position: relative;
        font-size: 24px;
    }

        .CSIheading-container h1::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #00AEEF;
            position: absolute;
            left: 0;
            bottom: -10px;
        }


/* Responsive styles */
@media (max-width: 768px) {
   

    .CSIcontent {
        flex-direction: column;
    }

 

    .CSImain {
        padding-right: 0;
    }

  
}

.CSImain video {
    width: 100%;
    max-width: 600px;
}

/* Why Wprk for us */

.WhyWorkcontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    padding-top:120px;
}

.WhyWorkmain {
    flex: 2;
    padding-right: 20px;
}

.WhyWorkcontent h1 {
    color: #00264d;
}

.WhyWorkcontent h2 {
    color: #111212;
    margin-bottom: 10px;
    font-size: 16px;
}

.WhyWorkheading-container {
    margin-top: 0px;
    margin-left: 0px;
}

    .WhyWorkheading-container h1 {
        position: relative;
        font-size: 24px;
    }

        .WhyWorkheading-container h1::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #00AEEF;
            position: absolute;
            left: 0;
            bottom: -10px;
        }

@media (max-width: 768px) {
  

    .WhyWorkcontent {
        flex-direction: column;
    }

    .WhyWorkmain {
        padding-right: 0;
    }

   
}



.WhyWorkcontent .careers-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;

}

.WhyWorkcontent .career-category {
    flex: 1;
}



        .WhyWorkcontent .career-category ul ul li {
            margin-top: 10px;
            margin-bottom: 10px;
        }
/* 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;
}

.grid {
    background: #e0e0e0;
    width: 55% auto;
    height: 200px auto;
    border-left: 8px solid #00a0e3;
}

.block {
    padding-top: 10px;
    padding-left: 20px;
}

.ADother 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;
}

    .ADother h2::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -15px; /* Adjust this value to control the space between the text and the underline */
        height: 6px; /* Adjust this value to control the thickness of the underline */
        background-color: #029bd5; /* Adjust this value to change the color of the underline */
    }

.fa-arrow-right {
    color: #00a0e3;
    margin-right:20px;
}

/*RSA Airspace 3D*/

.KMZ {
    width: 200px;
    height: 50px;
    border-radius: 8px;
    background: #e35757;
    color: white;
    margin-bottom: 20px;
}

.RPAS {
    margin-bottom: 20px;
    width: 200px;
    height: 50px;
    border-radius: 8px;
}

.sports {
    margin-bottom: 20px;
    width: 200px;
    height: 50px;
    border-radius: 8px;
    background: #00a0e3;
    color: #f5f5f5
}

.google {
    margin-top: 100px;
    margin-bottom: 50px;
    width: 400px;
    height: 60px;
    border-radius: 8px;
}

.pdf {
    width: 200px;
    height: 50px;
    border-radius: 8px;
}

/*Form styling*/

/*form:before {
    content: '';
    display: block;
    width: 750px;
    height: 3px;
    background-color: #1e3cd4;
    position: absolute;
    left: 100px;
    bottom: 300px;
}*/

form {
    margin-top: 100px;
}

    form label {
        font-weight: bold;
    }



/*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;
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

.heading-container {
    margin-top: 50px;
    margin-left: 0px;
}

    .heading-container h1 {
        position: relative;
        font-size: 24px;
    }

        .heading-container h1::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background-color: #00AEEF;
            position: absolute;
            left: 0;
            bottom: -10px;
        }

.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.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;
}

.row {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.toggle-sign {
    font-size: 24px;
    margin-top: 20px;
    cursor: pointer;
}

.unordered-list {
    list-style-type: disc; /* Default bullet points */
    padding-left: 20px; /* Indent the list */
    display: none; /* Initially hidden */
}


main .button {
    display: none;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #5472d2;
    border: 1px solid transparent;
    box-sizing: border-box;
    word-wrap: break-word;
    user-select: none;
    text-decoration: none;
    position: relative;
    top: 0;
    transition: all .2s ease-in-out;
    line-height: normal;
    box-shadow: none;
}


main.button {
    display: inline-block;
    text-align: center;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 24px;
    transition: background-color 0.3s ease;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin-left: 250px;
    margin-top: 50px;
    width: 180px;
    height: 70px;
    padding: 20px 10px;
}

.h3b:hover {
    border-left: 5px solid #00AEEF;
    padding: 5px;
    height: 15px;
    color: #00AEEF;
}

.tab {
    overflow: hidden;
    border: 5px solid white;
    background-color: white;
    border-radius: 20px 4px;
}


    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 17px;
    }


        .tab button:hover {
            background-color: #ddd;
        }


        .tab button.active {
            background-color: #ccc;
        }


.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid lightgray;
    border-top: none;
}

    .tabcontent h2 {
        font-size: 50px;
    }

    /*Media Hub*/

.Audiocontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
}

.Audiomain {
    flex: 2;
    padding-right: 20px;
}

.audio {
    display: block;
    width: 750px;
    height: 290px;
    background: rgb(240, 240, 240);
    border-bottom: 10px solid rgb(212, 212, 212);
    margin-top: 40px;
    border-radius: 5px;
}

.Audiocontent audio {
    margin-top: 10px;
    width: 750px;
}

.Audiocontent .text {
    padding-top: 1px;
    font-weight: 700;
    font-size: 25px;
    color: rgb(92, 92, 92);
}

    .Audiocontent .text h2 {
        color: rgb(92, 92, 92);
        font-size: 30px;
    }

    .Audiocontent .text:after {
        content: '';
        display: block;
        width: 50px;
        height: 6px;
        background-color: #00a0e3;
        margin-top: 10px;
    }

.audio-1 {
    display: block;
    width: 750px;
    height: 230px;
    background: rgb(240, 240, 240);
    border-bottom: 10px solid rgb(212, 212, 212);
    margin-top: 40px;
    border-radius: 5px;
}

.medialink {
    display: flex;
    background: #ebebeb;
    margin-top: 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
}

.MScontent .card {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    justify-content: center; /* Aligns items horizontally in the center */
    width: 55px;
    height: 40px;
    margin-top: 10px;
    margin-left: 20px;
    margin-bottom: 5px;
}

    .MScontent .card::after {
        margin-bottom: 10px;
    }

    .MScontent .card a {
        text-decoration: none;
        /* white-space: nowrap;*/ /* Prevents text from wrapping */
        margin-right: -350px;
        color: black;
        text-align: center;
    }

.MScontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    padding-top: 0px;
}

.MSmain {
    flex: 2;
    padding-right: 20px;
    padding-top: 0px;
}

.icon {
    font-size: 16px;
    color: #74C0FC;
    font-weight: 900;
    font-family: Arial, sans-serif;
    display: inline-block;
    width: 10px;
    height: 4px;
    line-height: 4px;
    letter-spacing: -4px;
    text-align: center;
    cursor: pointer;
    margin-top: 10px;
}

.vc-toggle-content p {
    margin-left: 20px
}

.heading p {
    margin-left: 40px;
    margin-top: -30px;
}

.icon:hover {
    color: none;
    transform: scale(1.1);
    transition: transform 0.2s, color 0.2s ease;
}

.RIcontent {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
}

.RImain {
    flex: 2;
    padding-right: 20px;
}

.RIcontent .audio {
    display: block;
    width: 750px;
    height: 290px;
    background: rgb(240, 240, 240);
    border-bottom: 10px solid rgb(212, 212, 212);
    margin-top: 40px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s;
}

    .RIcontent .audio.visible {
        transform: translateY(0);
        opacity: 1;
    }

.RIcontent audio {
    margin-top: 10px;
    width: 750px;
}

.RIcontent .text {
    padding-top: 1px;
    font-weight: 700;
    font-size: 25px;
    color: rgb(92, 92, 92);
}

    .RIcontent .text h2 {
        color: rgb(92, 92, 92);
        font-size: 30px;
    }

    .RIcontent .text:after {
        content: '';
        display: block;
        width: 50px;
        height: 6px;
        background-color: #00a0e3;
        margin-top: 10px;
    }

.RIcontent .audio-1 {
    display: block;
    width: 750px;
    height: 230px;
    background: rgb(240, 240, 240);
    border-bottom: 10px solid rgb(212, 212, 212);
    margin-top: 40px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s;
}

    .RIcontent .audio-1.visible {
        transform: translateY(0);
        opacity: 1;
    }

/*Contact US*/

.blue-banner {
    background-color: #00264d;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.office-image {
    width: 40%;
    max-width: 400px;
    height: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.direction-button {
    background-color: rgb(0, 121, 251);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
    color:white;
}

.left-column {
    flex: 3;
}

.right-column {
    flex: 1;
    background-color: #f0f0f0;
    padding: 20px;
}

    .right-column ul {
        list-style-type: none;
        padding: 0;
    }

    .right-column li {
        margin-bottom: 10px;
    }

.aligned-list {
    list-style: none;
    padding-left: 0;
}

    .aligned-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.5em;
        margin-bottom: 0.5em;
    }

    .aligned-list .icon {
        flex-shrink: 0;
        margin-top: 0.2em; /* Optional: align vertically */
        width: 1em;
        text-align: center;
    }

    .aligned-list .text1 {
        flex: 1;
    }

