*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background:#ffffff;
    color:#333;
}

header{
    background:#CC0404;
    color:white;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:top;
}

.logo{
    font-size:1.8rem;
    font-weight:bold;
    color:blue;
}

.logo img{
    width:380px;
    height:auto;
}

nav ul{
    display:flex;
    list-style:none;
    gap:25px;
    align-items:center;
}

nav a{
    color:white;
    text-decoration:none;
    font-weight:600;
    font-size:1.1rem;
    padding:6px 10px;
    border-radius:4px;
    transition:background-color .2s ease, color .2s ease;
}

nav a.current-page,
nav a:hover{
    background:#0a192f;
    color:#ffffff;
}

/* Hamburger button */
.menu-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    width:44px;
    height:44px;
    padding:8px;
    color:white;
}
.menu-toggle .hamburger{
    display:block;
    width:26px;
    height:2px;
    background:white;
    position:relative;
}
.menu-toggle .hamburger::before,
.menu-toggle .hamburger::after{
    content:'';
    position:absolute;
    left:0;
    width:26px;
    height:2px;
    background:white;
}
.menu-toggle .hamburger::before{ top:-8px; }
.menu-toggle .hamburger::after{ top:8px; }

.hero{
    height:85vh;
    background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url('images/event-security.jpg?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:white;
    padding:0 8%;
}

.hero-content{
    max-width:650px;
}

.hero h1{
    font-size:3.5rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
    line-height:1.6;
}

.btn{
    display:inline-block;
    background:#0078ff;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
}

.section{
    padding:80px 8%;
}

.logo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:24px;
    max-width:1200px;
    margin:0 auto;
}

.logo-card{
    min-height:120px;
    background:#f3f3f3;
    border:1px solid #d9d9d9;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    color:#0a192f;
    font-weight:700;
    letter-spacing:.03em;
    text-transform:uppercase;
}

.logo-card span{
    text-align:center;
    font-size:0.95rem;
}


.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:2.2rem;
    color:#fdfeff;
}

.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card h3{
    margin-bottom:15px;
    color:#0a192f;
}

.section_staff{
    padding:80px 8%;
    background:#0a192f;
}

.staff-intro{
    text-align:center;
    color:white;
    margin-bottom:40px;
}

.staff-intro h1{
    font-size:2.8rem;
    margin-bottom:12px;
}

.staff-intro p{
    font-size:1.05rem;
    max-width:700px;
    margin:0 auto;
    line-height:1.6;
}

.team-photo-wrap{
    max-width:900px;
    margin:0 auto 32px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.16);
    background:#fff;
}

.team-photo{
    display:block;
    width:100%;
    height:auto;
    object-fit:cover;
}

.staff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:24px;
}

.staff-card{
    background:white;
    padding:28px 22px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    text-align:center;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.staff-card-link{
    display:block;
    color:inherit;
    text-decoration:none;
    transition:transform .2s ease, box-shadow .2s ease;
}

.staff-card-link:hover,
.staff-card-link:focus-visible{
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(0,0,0,.14);
}

.staff-avatar{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#CC0404;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:1.1rem;
    margin:0 auto 16px;
    overflow:hidden;
}

.staff-avatar-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.staff-card h3{
    margin-bottom:8px;
    color:#0a192f;
}

.staff-role{
    color:#CC0404;
    font-weight:700;
    margin-bottom:10px;
}

.staff-card-bio{
    margin-top:auto;
    padding-top:12px;
    color:#0a192f;
    font-size:0.95rem;
    font-weight:600;
    letter-spacing:0.02em;
}

.section_staff_profile{
    padding:80px 8%;
    background:#0a192f;
}

.profile-card{
    background:white;
    padding:40px 32px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    max-width:900px;
    margin:0 auto;
}

.profile-avatar{
    width:180px;
    height:180px;
    border-radius:50%;
    background:#CC0404;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:1.2rem;
    margin:0 auto 20px;
    overflow:hidden;
    border:4px solid #CC0404;
}

.profile-avatar-image{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.profile-card h1{
    margin-bottom:10px;
    color:#0a192f;
    text-align:center;
}

.profile-card .staff-role{
    margin-bottom:18px;
    text-align:center;
}

.profile-card p.bio-text{
    line-height:1.7;
    color:#333;
    text-align:left;
}

.profile-card .btn{
    display:block;
    width:fit-content;
    margin:24px auto 0;
}

.fees-section{
    margin-top:28px;
}

.fees-section h2{
    color:#0a192f;
    margin-bottom:14px;
    font-size:1.25rem;
}

.fees-table{
    border:1px solid #d8e1ea;
    border-radius:10px;
    overflow:hidden;
    background:#f8fbff;
}

.fees-row{
    display:grid;
    grid-template-columns:1.2fr 2fr 0.9fr;
    gap:16px;
    padding:14px 16px;
    border-bottom:1px solid #e5ebf1;
    align-items:start;
}

.fees-row:last-child{
    border-bottom:none;
}

.fees-header{
    background:#0a192f;
    color:white;
    font-weight:700;
}

.fees-note{
    margin-top:24px;
    color:#555;
    font-style:italic;
}

.stats{
    background:#0a192f;
    color:white;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    text-align:center;
    gap:20px;
}

.stat{
    padding:50px 20px;
}

.stat h3{
    font-size:2.5rem;
}

.cta{
    
    background:#1903AA;
    color:white;
    text-align:center;
    padding:80px 8%;
}
.section_services{
    padding:60px 8%;
    background:#0a192f;
    display:grid;
    grid-template-columns:1fr;
    gap:30px;
}

.section_services h1{
    color:white;
    font-size:2.8rem;
    text-align:center;
    margin-bottom:32px;
    grid-column:1 / -1;
}

.section_services .card{
    background:white;
    padding:40px;
    border-radius:16px;
    box-shadow:0 12px 30px rgba(0,0,0,.14);
    max-width:920px;
    width:100%;
    margin:0 auto;
}

.section_services .card p{
    line-height:1.8;
    margin-bottom:24px;
    color:#333;
}

.section_services .card h2{
    margin-top:0;
    margin-bottom:18px;
    color:#0a192f;
}

.section_services .card ul{
    list-style:disc outside;
    padding-left:1.5rem;
    color:#333;
}

.section_services .card ul li{
    margin-bottom:12px;
}

.section_services-home .card{
    max-width:none;
    width:auto;
    margin:0;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.section_services-home .card h2{
    margin-top:0;
    margin-bottom:16px;
    color:#0a192f;
}

.section_contact{
    padding:20px 6%;
    background:#0a192f;
}
.contact-hero{
    background:#1903AA;
    color:white;
    display:flex;
    justify-content:center;
    align-items:center;
    
}

.contact-hero .hero-content{
    width:100%;
    text-align:center;
}
.cta h2{
    margin-bottom:20px;
    font-size:2.3rem;
}

footer{
    background:#081220;
    color:white;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){
    .hero h1{
        font-size:2.4rem;
    }

    nav ul{
        gap:15px;
        font-size:0.9rem;
    }

    .section_services{
        padding:20px 4%;
        grid-template-columns: 1fr;
    }

    .section_services .card{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
    }
}

/* mobile contact-container rules moved below to avoid being overridden */

/* Mobile nav behavior */
header{ position:relative; }
@media(max-width:768px){
    .menu-toggle{ display:block; }
    nav{
        position:absolute;
        top:100%;
        right:0;
        left:0;
        background:#CC0404;
        display:block;
        z-index:30;
        padding:10px 8%;
    }
    nav ul{
        display:none;
        flex-direction:column;
        gap:10px;
    }
    nav.open ul,
    nav:has(.open) ul{ /* fallback for some browsers */
        display:flex;
    }
    nav ul li a{ display:block; padding:8px 0; }
}
.contact-container{
    max-width:1200px;
    margin:60px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.contact-info,
.contact-form{
    background:white;
    padding:35px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact-info h2,
.contact-form h2{
    color:#0a192f;
    margin-bottom:20px;
}
.info-item{
    margin-bottom:20px;
}

.info-item strong{
    display:block;
    margin-bottom:5px;
}

form{
    display:flex;
    flex-direction:column;
}

input,
textarea{
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:16px;
}

textarea{
    min-height:150px;
    resize:vertical;
}

button{
    background:#0078ff;
    color:white;
    border:none;
    padding:15px;
    border-radius:5px;
    font-size:16px;
    cursor:pointer;
}

button:hover{
    background:#005fd1;
}

.emergency{
    background:#d62828;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:50px;
}

.emergency h3{
    margin-bottom:10px;
}

@media (max-width:768px) {
    .contact-container{
        grid-template-columns: 1fr;
        padding:0 16px;
        gap:20px;
        margin:30px auto;
    }
}

@media (max-width:480px) {
    .hero{
       
        background-size: auto 100%; /* scale image so its height fills the viewport, keeps aspect ratio */
        background-position:center center;
        background-repeat:no-repeat;
        padding:0;
        display:flex;
        align-items:center;
        justify-content:center;
    }
    .hero-content{
        max-width:100%;
        background:linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35));
        padding:18px;
        border-radius:6px;
        margin:0 auto;
        position:relative;
        z-index:2;
        text-align:center;
    }
    .hero h1{
        font-size:1.6rem;
        margin-bottom:12px;
    }
    .hero p{
        font-size:0.98rem;
    }
    /* ensure the next page section is pushed below the hero */
    .section{ margin-top:18px; }

    .logo img{
        width:300px;
        height:auto;
    }

    .stat{
        padding:10px;
    }

    /* hide the verbose header text on small phones */
    .logo-text{ display:none; }
}