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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: white;

}

a {
    text-decoration: none;
    color: inherit;
}





      /* ===== NAVIGATION STYLES ===== */
      /* ===== NAVIGATION STYLES ===== */
      /* ===== NAVIGATION STYLES ===== */
      /* ===== NAVIGATION STYLES ===== */
      /* ===== NAVIGATION STYLES ===== */
      /* ===== NAVIGATION STYLES ===== */





      
/* --- New Top Bar Styles --- */
.top-bar {
    background: linear-gradient(115deg, #ffffff 0%, #dedede 100%); /* Matches your scrolled navbar color */
    color: white;
    font-size: 0.60rem;
    padding: 8px 0;
    position: fixed; /* Keep it fixed at the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001; /* Higher than navbar */

}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem; 
}

.top-bar-link {
    color: rgb(16, 20, 45);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    /* The "Fitting Border" styles */
    border: 1.5px solid rgba(12, 25, 113, 0.335); /* Subtle white border */
    padding: 4px 15px;                          /* Space inside the border */
    border-radius: 50px;                        /* Rounds the edges into a pill shape */
    background: linear-gradient(115deg, #ffffff 0%, #e0e0e0 100%); /* Very faint background fill */
}

.top-bar-link:hover {
    color: #facc15;
    border-color: #facc15;                      /* Border changes color on hover */
    background: rgba(250, 204, 21, 0.1);        /* Slight yellow glow on hover */
}


/* --- Adjusting your existing .navbar --- */
.navbar {
    position: fixed;
    top: 35px; /* Pushes the nav down so it doesn't hide under the top bar */
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(115deg, #ffffff 0%, #e0e0e0 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  
}

/* Update the scroll position if needed */
.navbar.scrolled {
    border-bottom: solid 1.5px white;
    top: 35px; /* Keep it below the top bar even when scrolling */
    background: linear-gradient(115deg, #ffffff 0%, #e0e0e0 100%);
}

/* --- Responsive fix for mobile --- */
@media (max-width: 768px) {
    .top-bar-container {
        gap: 1.5rem;
        font-size: 0.65rem;
    }
}
    .nav-container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 55px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .logo-icon img {
        padding:0.7rem;
        width: 12rem;
        height: auto;
     
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        color: #1a1a2e;
    }

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

    .logo-main {
        font-size: 1rem;
        font-weight: bold;
    }

    .logo-sub {
        font-size: 0.75rem;
        color: #facc15;
    }

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

    .nav-menu a {
        transition: color 0.3s;
        color:rgb(16, 20, 45);
    }

    .nav-menu a:hover {
        color: #8a8a8a;
    }

    .burger {
        display: none;
        background: none;
        border: none;
        color: rgb(16, 20, 45);
        cursor: pointer;
        margin-left: auto;
        padding: 0rem;

        transition: background 0.3s;
    }
    .next-to-burger{

        display: none;
    }



    .burger svg {
        width: 30px;
        height: 26px;
    }

    .mobile-menu {
        display: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .mobile-menu.active {
        max-height: 400px;
        opacity: 1;
        padding-bottom: 1rem;
    }

    .mobile-menu a {
        display: block;
        padding: 0.5rem 1rem;
        transition: color 0.3s;
        color:  rgb(16, 20, 45);
        font-weight:350;
    }

    .mobile-menu a:hover {
        color:  rgb(118, 118, 118);
    }   

    @media (max-width: 768px) {
        .next-to-burger{
            display: block;
            font-size: 0.65rem;
            padding-bottom: 0.2rem;
            color: rgba(16, 20, 45, 0.817);
            font-weight: 620;
        }
    
        .nav-menu {
            display: none;
        }

        .burger {
            display: block;
        }

        .mobile-menu {
            display: block;
        }

        .decorative-box,
        .decorative-circle {
            display: none;
        }
    }
/* ===== NAVIGATION STYLES ===== */
/* ===== NAVIGATION STYLES ===== */
/* ===== NAVIGATION STYLES ===== */
/* ===== NAVIGATION STYLES ===== */
/* ===== NAVIGATION STYLES ===== */
/* ===== NAVIGATION STYLES ===== */



























/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */

.hero-section {
    line-height: 1.6;
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/airo4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 1vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: clamp(1.4rem, 1vw, 2rem);
    margin-top: 6rem;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto; 
}

.hero-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color:rgb(16, 20, 45);
    background: linear-gradient(115deg, #ffffff 0%, #e0e0e0 100%);
    border: 2px solid #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(118, 118, 118, 0.4);
}

.hero-button:hover {
    background-color: transparent;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.hero-button:active {
    transform: translateY(-1px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem;
    }

    .hero-title {
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        font-weight: 750;
    }
}

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

    .hero-button {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        font-weight: 750;
    }
}

/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */
/* HERO SECTION */




































    /* Bottom Section */
    .bottom-section {
        width: 100%;
        height: 23vh;
        background-image: linear-gradient(rgba(5, 14, 47, 0.362), rgba(4, 6, 45, 0.768)), url('images/airo5.webp');
        background-size: cover;
        background-position: center;
        backdrop-filter: blur(4px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
      }
  
      .bottom-section h2 {
        color: #fff;
        font-size: clamp(1.2rem, 3.5vw, 2rem);
        text-align: center;
        letter-spacing: 1px;
        text-shadow: 0 2px 8px rgba(0,0,0,0.55);
        padding: 0 16px;
      }
  
      .bottom-section button {
        color: #fff;
        background: transparent;
        border: 2px solid #fff;
        padding: 10px 30px;
        font-size: 0.85rem;
        border-radius: 35px;
        font-family: Georgia, serif;
        letter-spacing: 2px;
        cursor: pointer;
        transition: background 0.3s, color 0.3s;
      }
  
      .bottom-section button:hover {
        background: #fff;
        color: #222;
      }




























/* ===== FOOTER STYLES ===== */
         /* ===== FOOTER STYLES ===== */
          /* ===== FOOTER STYLES ===== */
           /* ===== FOOTER STYLES ===== */
            /* ===== FOOTER STYLES ===== */
             /* ===== FOOTER STYLES ===== */
             .footer {
                background: linear-gradient(115deg, #f5f5f5 0%, #dddddd 100%);
                color: rgb(16, 20, 45);
                padding: 3rem 1rem 1.5rem;
            }
            
            .footer-container {
                max-width: 1280px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-section h3 {
                color:rgb(16, 20, 45);
                font-size: 0.85rem;
                margin-bottom: 1rem;
            }
            
            .footer-section p,
            .footer-section-lu a {
                color: rgb(16, 20, 45);
                line-height: 1.5;
                text-decoration: none;
                font-size: 0.85rem;
            }
            
            .footer-section a:hover {
                color: rgb(16, 20, 45);
            }
            
            .footer-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                
            }
            
            .contact-info {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
                font-size: 0.95rem;
            }
            
            .contact-item {
                font-size: 0.95rem;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }
            
            .emergency-number {
                font-size: 1rem;
                font-weight: bold;
                color: #facc15;
                margin-top: 0.5rem;
            }
            
            /* Social Links Styles */
            .social-links {
                display: flex;
                gap: 1rem;
                margin-top: 0.5rem;
            }
            
            .social-icon {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: rgb(16, 20, 45);
                color: rgb(255, 255, 255);
                transition: all 0.3s ease;
                text-decoration: none;
            }
            
            .social-icon:hover {
                background:rgb(20, 20, 20);
                color: rgb(255, 255, 255);
                transform: translateY(-3px);
            }
            
            .social-icon i {
                font-size: 1.2rem;
            }
            
            .footer-bottom {
                margin-top: 3rem;
                padding-top: 1.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                text-align: center;
                color: rgb(16, 20, 45);
                font-size: 0.875rem;
            }
            
            /* ===== RESPONSIVE ===== */
            @media (min-width: 768px) {
                .footer-container {
                    grid-template-columns: repeat(3, 1fr);
                }
            }
            