/* ==============================
     GLOBAL STYLES
============================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: white;
    background:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.9)),
    url("images/Website-back2.png") no-repeat center center fixed;

    background-size: cover;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

/* ==============================
   NAVIGATION
============================== */
nav {
    background: black;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    background: #000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    width: 80px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #8b0000;
}

/* ==============================
   DROPDOWN MENUS
============================== */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 180px;
    border-radius: 5px;
    padding: 10px 0;
    z-index: 1000;
}

nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

nav ul li.dropdown .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-weight: normal;
    transition: background 0.3s;
}

nav ul li.dropdown .dropdown-menu li a:hover {
    background: #8b0000;
}

nav ul li.dropdown a i {
    margin-left: 5px;
    font-size: 0.8em;
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url("images/Flyer.jpg") no-repeat center center/cover;
    filter: brightness(1.15);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    background: rgba(0,0,0,0.45);
    padding: 40px;
    border-radius: 12px;
    max-width: 90%;
}

.hero-content h1 {
    font-size: 48px;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-content p {
    font-size: 20px;
    margin-top: 10px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.hero-content .button {
    margin-top: 20px;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes fadeUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============================== 
HERO IMAGES FOR SERVICE PAGES 
============================== */ 
.hero-event{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/event.jpg") no-repeat center center/cover; } 

.hero-ambulance{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/Ambulance.jpg") no-repeat center center/cover; } 

.hero-escort{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/Escort.png") no-repeat center center/cover; } 

.hero-investigations{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/investigations.jpg") no-repeat center center/cover; }

.hero-background{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/background-checks.png") no-repeat center center/cover; } 

.hero-protection{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/protection.png") no-repeat center center/cover; } 

.hero-excursions{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/excursions.jpg") no-repeat center center/cover; }

.hero-contact{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/contact.png") no-repeat center center/cover; }

.hero-careers{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/careers.png") no-repeat center center/cover; }

.hero-drone{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/drone.jpeg") no-repeat center center/cover; }      

.hero-home{ 
    background:
     linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
      url("images/Flyer.jpg") no-repeat center center/cover; }
/* TEAM HERO IMAGE */

.hero-team{
background:
linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
url("images/Escort.png") no-repeat center center/cover;
}      

/* ==============================
   BUTTONS
============================== */
.button {
    background: #8b0000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 0 rgba(139,0,0,0);
}

.button:hover {
    background: #c40000;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(196,0,0,0.7);
}

/* ==============================
   CALL SECTION
============================== */
.call-section {
    text-align: center;
    padding: 65px 25px;
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.call-logo {
    width: 170px; /* smaller logo */
    height: auto;
}

.call-text {
    font-size: 22px;
    color: #fff;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .call-logo {
        width: 130px; /* even smaller on mobile */
    }
}

/* ==============================
   SERVICES SECTION
============================== */
#services {
    padding: 50px 20px;
    text-align: center;
}

#services .reveal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.service-link {
    flex: 1 1 260px;
    max-width: 300px;
    text-decoration: none;
    color: inherit;
}

.service {
    background: #1f1f1f;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative; /* for trust badge */
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    background: #262626;
}

.service-icon {
    font-size: 30px;
    color: white;
    background: #8b0000;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.service:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    background: #c40000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.trust-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8b0000;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    z-index: 2;
}

.service h3 {
    margin: 10px 0;
    min-height: 40px;
    color: #fff;
}

.service p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    flex-grow: 1;
    min-height: 65px;
}

/* ==============================
   TRUST SECTION
============================== */
.trust-section {
    text-align: center;
    padding: 50px 20px;
    background: #1f1f1f;
    color: white;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.trust-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 180px;
}

.trust-features .feature i {
    font-size: 36px;
    color: #8b0000;
}

/* ==============================
   CONTACT SECTION
============================== */
.contact {
    background: #222;
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact address {
    font-style: normal;
    font-size: 18px;
}

.contact a {
    color: #fff;
    text-decoration: none;
}

.contact a:hover {
    color: #8b0000;
}

/* ==============================
   WHATSAPP & CALL BUTTONS
============================== */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background 0.3s, transform 0.3s;
}

.whatsapp-button:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.call-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: #8b0000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    z-index: 999;
}

.call-button:hover {
    background: #c40000;
}

/* ==============================
   SECTION HEADINGS & FOOTER
============================== */
section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

footer {
    background: #111;
    text-align: center;
    padding: 20px;
    color: #aaa;
    font-size: 14px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
    .hero {
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content {
        padding: 25px;
    }

    .hero-content .button {
    display: inline-block;
    width: auto;
    min-width: 180px;
}

    #services .reveal {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li.dropdown .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        display: none;
        width: 100%;
    }

    nav ul li.dropdown.active .dropdown-menu {
        display: block;
    }
}
@media(min-width:769px){
  nav ul li.dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ==============================
   SCROLL REVEAL
============================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ==============================
   SERVICE PAGE FEATURES
============================== */

.service-features{
padding:60px 20px;
background:#1f1f1f;
text-align:center;
}

.features-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:30px;
margin-top:30px;
}

.feature{
background:#111;
padding:25px;
border-radius:10px;
max-width:250px;
transition:all 0.3s ease;
}

.feature:hover{
transform:translateY(-5px);
box-shadow:0 8px 20px rgba(0,0,0,0.5);
}

.feature i{
font-size:32px;
color:#8b0000;
margin-bottom:10px;
}

.feature h3{
margin-bottom:10px;
}

.feature p{
font-size:14px;
color:#ccc;
}

/* ==============================
   SERVICE CTA SECTION
============================== */

.service-cta{
background:#8b0000;
color:white;
text-align:center;
padding:60px 20px;
}

.service-cta p{
margin:15px 0 25px 0;
font-size:18px;
}

.cta-buttons{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}

.button-outline{
padding:12px 22px;
border:2px solid white;
border-radius:6px;
color:white;
text-decoration:none;
font-weight:bold;
transition:all 0.3s ease;
}

.button-outline:hover{
background:white;
color:#8b0000;
}



/* TEAM PAGE HEADING */

.team-intro{
text-align:center;
padding:60px 20px 20px 20px;
max-width:800px;
margin:auto;
}

.team-intro p{
color:#ccc;
font-size:18px;
line-height:1.6;
}


/* ==============================
   TEAM SECTION (UPDATED LAYOUT)
============================== */

.team-section{
max-width:1000px;
margin:60px auto;
padding:20px;
display:flex;
flex-direction:column;
gap:30px;
}

.team-card{
display:flex;
align-items:center;
gap:25px;
background:#1f1f1f;
border-radius:12px;
padding:20px;
transition:0.3s;
text-align:left;
}

.team-card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.6);
}

.team-card img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
border:3px solid #8b0000;
flex-shrink:0;
}

.team-info h3{
margin:0 0 5px;
font-size:20px;
color:#fff;
}

.team-position{
color:#8b0000;
font-weight:bold;
font-size:14px;
display:block;
margin-bottom:8px;
}

.team-info p{
font-size:14px;
color:#ccc;
line-height:1.6;
}

/* MOBILE FIX */
@media(max-width:768px){

.team-card{
flex-direction:column;
text-align:center;
}

.team-card img{
margin-bottom:10px;
}

}

.team-card{
position:relative;
}

/* Divider line */
.team-card:not(:last-child)::after{
content:"";
position:absolute;
bottom:-15px;
left:0;
width:100%;
height:1px;
background:rgba(255,255,255,0.08);
}

.ceo{
border:1px solid rgba(139,0,0,0.6);
background:linear-gradient(145deg,#1f1f1f,#262626);
}

.ceo img{
width:140px;
height:140px;
border:4px solid #8b0000;
}

.ceo h3{
font-size:22px;
}

.team-card:hover{
box-shadow:0 0 20px rgba(139,0,0,0.3);
}

/* NAME + TITLE INLINE */
.team-header{
display:flex;
align-items:center;
gap:10px;
flex-wrap:wrap;
}

.team-header h3{
margin:0;
font-size:20px;
color:#fff;
}

/* Add separator dash */
.team-position{
color:#8b0000;
font-weight:bold;
font-size:14px;
position:relative;
padding-left:10px;
}

/* This creates: Joel Johnson — CEO */
.team-position::before{
content:"•";
position:absolute;
left:0;
color:#aaa;
}

/* Description spacing */
.team-info p{
margin-top:6px;
font-size:14px;
color:#ccc;
line-height:1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.menu-toggle {
  display: none;
}
@media(max-width:768px){

  .menu-toggle{
    display:block;
    font-size:26px;
    cursor:pointer;
    color:white;
    z-index:1100;
  }

  .nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 70%;
  background: #000;
  padding-top: 80px;
  transition: 0.3s ease;
  z-index: 1000;
}

.nav-menu.active {
  right: 0;
}

  nav ul li{
    padding:15px 20px;
  }

}

.nav-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  display:none;
  z-index:999;
}

.nav-overlay.active{
  display:block;
}

.nav-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-menu ul li {
  padding: 8px 15px;
}


@media(min-width:769px){
  .nav-menu {
    position: static;
    height: auto;
    width: auto;
    background: none;
    padding: 0;
  }

  .nav-menu ul {
    flex-direction: row;
    gap: 25px;
  }
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

nav a.active {
  color: #8b0000;
  border-bottom: 2px solid #8b0000;
}

/* Paymant Accepted */
.payment-icons {
    margin-top: 20px;
    font-size: 38px;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #ccc;
}

.payment-icons i:hover {
    color: #fff;
    transform: scale(1.1);
    transition: 0.3s;
}

.payment-text {
    margin-top: 15px;
    font-size: 16px;
    color: #aaa;
}

/* Social Links */
.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    font-size: 32px;
    margin: 0 15px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #8b0000;
}

.history-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* Background logo */
.history-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px; /* adjust size */
    height: 400px;
    background: url("images/Logo.png") no-repeat center center;
    background-size: contain;
    opacity: 0.08; /* THIS controls how faint it is */
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Content stays above */
.history-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
}

.history-highlight {
    background: rgba(0, 0, 0, 0.5); /* transparency */
    padding: 20px;
    border-radius: 10px;
}

.trust-bar {
  background:#8b0000;
  color:#fff;
  text-align:center;
  padding:12px;
  font-weight:bold;
  font-size:14px;
}

.quote-button {
  position: fixed;
  bottom: 160px;
  right: 20px;
  background: #111;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  z-index: 999;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-text {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.nav-text:hover {
  color: #8b0000;
}

.testimonials {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.testimonial-card {
  background: #1f1f1f;
  padding: 25px;
  border-radius: 12px;
  max-width: 320px;
  position: relative;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

/* Quote icon bubble */
.testimonial-card::before {
  content: "“";
  font-size: 50px;
  color: #8b0000;
  position: absolute;
  top: -10px;
  left: 15px;
  opacity: 0.4;
}

.testimonial-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card span {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.stars {
  color: gold;
  margin-bottom: 10px;
  font-size: 14px;
}