/* Reset / Normalization */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    color: white;
}


/* Navbar Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color:black;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    
}

.navbar-center {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo {
    height: 130px; /* Adjusted for navbars */
    width: 130px; /* Maintains original aspect ratio */
    border-radius: 8px; /* Subtle rounding (not circle) for shield shape */
    object-fit: contain; /* Preserves the design integrity */
    margin-right: 20px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    background-color: transparent;
    
}

/* Optional: hover effect for interactivity */
.logo:hover {
    transform: scale(1.05);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    padding-left: 0;
    margin: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px 10px;
    transition: color 0.3s;
    display: block;
}

.nav-links li a:hover {
    color: #A8092D;
}



.centered-message.with-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 100px 40px;
    background-color: #FFFFFF; /* White background for contrast */
    flex-wrap: wrap;
}


/* Right side: Text */
.text-column {
    max-width: 900px;
    color: #A8092D;
    text-align: center; /* ✅ Centers each line of text */
    margin: 0 auto;
}

.text-column h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.text-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}


/* Responsive: Stack on small screens */
@media (max-width: 768px) {
    .centered-message.with-logo {
        flex-direction: column;
        text-align: center;
    }

    .logo-column {
        margin-bottom: 30px;
    }

    .text-column {
        text-align: center;
    }
}

/* Dropdown Base */
.dropdown {
    position: relative;
}

/* 🌟 Dropdown Menu Styling */
.dropdown-menu {
    list-style: none;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background-color: #000; /* solid black */
    border-radius: 8px;
    min-width: 220px;
    padding: 8px 0;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show dropdown with smooth fade-in */
.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    font-weight: 500;
}


/* Video Background */
.video-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: black;  /* Fallback color */
}

#background-video {
    position: absolute;  
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Translucent dark overlay over video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 10, 11, 0.4); /* 90% black */
    z-index: 1;
}

/* Text positioning - bottom-left */
.overlay-content.left-bottom {
    position: absolute;
    z-index: 2;
    max-width: 900px;
   padding: 350px 60px 80px 60px;
}

.overlay-content.left-bottom h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.3;
}

.overlay-content.left-bottom p {
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Scroll section after hero */
.homepage-section {
    padding: 100px 60px;
    background-color: #FFFFFF;
    color: #0D0A0B;
    min-height: 400px;
}

/* Page Content Styling */
.page-content {
    margin-top: 150px;
    text-align: center;
    color: #0D0A0B;
}

.page-content h1 {
    font-size: 2.5rem;
    color: #A8092D;
}




.services-showcase {
    position: relative;
    color: #0D0A0B;
    padding: 100px 30px;
    overflow: hidden;
}

.bg-logo {
    position: absolute;
    top: 0;
    left: 0;
    background: url("images/large-logo.png") no-repeat center;
    background-size: contain;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.services-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.services-content h2 {
    color: #A8092D;
    font-size: 2.4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-content p {
    font-size: 1.1rem;
    color: #A8092D;
    max-width: 700px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    justify-items: center;
}

.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px;
    
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.service-card img {
    width: 48px;
    height: 48px;
    filter: invert(16%) sepia(89%) saturate(7481%) hue-rotate(358deg) brightness(85%) contrast(104%);
}

.service-card span {
    font-weight: 600;
    font-size: 1rem;
}


.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    background: url("/images/bck.png") no-repeat center center;
    background-size: cover;
    opacity: 0.1; /* Adjust for visibility */
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: brightness(0.9);


}

#map-section {
    padding: 80px 0; /* removed side padding */
    background-color: #0D0A0B;
    text-align: center;
  }
  
  #home-map {
    width: 100vw;       /* full viewport width */
    max-width: 100%;
    height: 500px;
    border-radius: 0;   /* remove if you want clean edge-to-edge */
    margin: 0 auto;
      border: 5px solid #0D0A0B; /* Deep navy for strong contrast */
  border-radius: 8px;
  }
  
  .map-title {
    font-family: 'Rajdhani';
    font-size: 2.5rem;
    color: #ece8e8;
    text-transform: uppercase;
    margin-bottom: 80px;
  }
  

.site-footer {
  background-color: #0D0A0B;
  color: #FFFFFF;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
  text-align: center;
}

.footer-flex-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-social h3,
.footer-contact h3 {
  color: #A8092D;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 5px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: brightness(0) invert(24%) sepia(86%) saturate(4487%) hue-rotate(349deg) brightness(94%) contrast(112%);
}

.contact-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.contact-links a {
  color: #FFFFFF;
  text-decoration: none;
}

.contact-links a:hover {
  color: #A8092D;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #aaa;
  font-size: 0.85rem;
}

.industry-hero {
  background: url('../images/industry-bg.jpg') center/cover no-repeat;
  color: #A8092D;
  text-align: center;
  padding: 120px 20px 80px;
}
.industry-hero h1 {
  font-size: 2.8rem;
  letter-spacing: 1px;
}
.industry-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 20px auto;
}
.hero-buttons .btn {
  margin: 10px 15px;
  padding: 14px 26px;
  background: #20201f;
  color: #A8092D;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  transition: background .3s ease;
}


.industry-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  color: #333;
}
.industry-section h2 {
  font-size: 2rem;
  color: #A8092D;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.industry-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.service-item h3 {
  color: #A8092D;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.service-item p {
  color: #444;
}

.industry-cta {
  text-align: center;
  margin: 60px 0;
}
.industry-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.btn-primary {
  background: #A8092D;
  color: #FFFFFF;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background .3s;
}
.btn-primary:hover {
  background: #6a0000;
}


.industry-hero {
  position: relative;
  background: url("../images/aviation-hero.avif") center center / cover no-repeat;
  color: #FFFFFF;
  padding: 150px 40px 120px;
  text-align: center;
  z-index: 1;
}

.industry-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent overlay for readability */
  z-index: 0;
}

.industry-hero h1,
.industry-hero p,
.industry-hero .hero-buttons {
  position: relative;
  z-index: 1;
}

.hero-buttons .btn {
  margin-top: 20px;
  padding: 10px 25px;
  background: #A8092D;
  color:  #FFFFFF;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.hero-buttons .btn:hover {
  background: #a73737;
}


/* Live Camera Section Layout */
.live-camera-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

/* Four-column grid for top features */
.live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 50px;
}
.live-item {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.live-item:hover {
  transform: translateY(-5px);
}
.live-item h2 {
  color: #A8092D;
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.live-item p {
  color: #555;
  line-height: 1.6;
}

/* Full-width detail section */
.live-details {
  max-width: 900px;
  margin: 0 auto;
}
.detail-block {
  margin-bottom: 40px;
}
.detail-block h3 {
  color: #A8092D;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.detail-block p {
  color: #333;
  line-height: 1.7;
}

/* CTA Section */
.industry-cta {
  text-align: center;
  margin: 60px 20px;
}
.industry-cta p { font-size: 1.2rem; margin-bottom: 20px; }



/* Healthcare layout alternating blocks */
.industry-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.block {
  display: flex;
  align-items: center;
  gap: 40px;
}

.block.reverse {
  flex-direction: row-reverse;
}

.block-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  object-fit: cover;
}

.block-content {
  flex: 1;
}

.block-content h2 {
  color: #A8092D;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.block-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* CTA styling already exists; hero section inline style can be extracted as class if preferred */


.benefits-section { padding: 80px 20px; background:#f5f5f5; text-align:center; }
.benefits-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:40px; max-width:1200px; margin:auto; }
.benefit-card { background:#A8092D; padding:30px; border-radius:8px; box-shadow:0 4px 12px rgba(0,0,0,0.1); }
.feature-slider { display:flex; flex-direction:column; gap:60px; padding:80px 20px; max-width:1200px; margin:auto; }
.feature { display:flex; align-items:center; gap:40px; }
.feature.reverse { flex-direction:row-reverse; }
.feature img { width:50%; border-radius:8px; object-fit:cover; }
.feature-text { flex:1; }
.feature-text h2 { color:#A8092D; font-size:1.8rem; margin-bottom:15px; }
.feature-text p { font-size:1rem; line-height:1.6; color:#333; }
.benefits-section h2 {
  color: #0D0A0B; /* black */
}
.benefits-grid .benefit-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-grid .benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}


.location-hero { margin-top:100px; /* to offset navbar */ }

.location-services { padding:60px 20px; background:#f2f2f2; text-align:center; }
.services-cards { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap:30px; max-width:1200px; margin:0 auto; }
.services-cards .card { background:#FFFFFF; padding:30px; border-radius:8px; box-shadow:0 4px 12px rgba(0,0,0,0.1); transition: transform .3s; }
.services-cards .card:hover { transform: translateY(-8px); }
.services-cards .card {
  background: #e4dddd;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  color: #0D0A0B; /* 🔲 Make all text inside the card black */
}
.location-services h2 {
  color: #0D0A0B;
}

.services-cards .card h3,
.services-cards .card p {
  color: #0D0A0B; /* ✅ Ensures specific tag-level override if needed */
}

.location-details .block { display:flex; align-items:center; gap:40px; padding:60px 20px; max-width:1200px; margin:0 auto; }
.location-details .block.reverse { flex-direction: row-reverse; }
.location-details .block-image img { width:50%; border-radius:8px; object-fit:cover; }
.location-details .block-content { flex:1; }
.location-details .block-content h2 { color:#A8092D; font-size:1.8rem; margin-bottom:15px; }

.call-to-action { background:#A8092D; color:#FFFFFF; text-align:center; padding:60px 20px; }
.call-to-action p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-align: center;
}
.call-to-action .btn-primary {
  background: #0D0A0B;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFFFFF; /* Added border */
  transition: background 0.3s, color 0.3s, border-color 0.3s; /* Smooth transition */
}

.call-to-action .btn-primary:hover {
  background: #FFFFFF;
  color: #A8092D;
  border-color: #A8092D;
}


.location-services h2,
.services-cards .card h3 { color: #0D0A0B; }

.services-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding: 60px 20px; background: #f5f5f5; }

.services-cards .card { background: #e4dddd; padding: 30px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); color: #0D0A0B; transition: transform .3s; }
.services-cards .card:hover { transform: translateY(-8px); }

.location-details .block { display: flex; align-items: center; gap: 40px; padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
.location-details .block.reverse { flex-direction: row-reverse; }
.location-details .block-image img { width: 50%; border-radius: 8px; object-fit: cover; }
.location-details .block-content h2 { color: #A8092D; font-size: 1.8rem; margin-bottom: 15px; }

.call-to-action { background: #A8092D; color: #FFFFFF; text-align: center; padding: 60px 20px; }
.call-to-action p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 20px; }
.call-to-action .btn-primary { background: #0D0A0B; color: #FFFFFF; padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: bold; border: 2px solid #FFFFFF; transition: background 0.3s, color 0.3s, border-color 0.3s; }
.call-to-action .btn-primary:hover { background: #FFFFFF; color: #A8092D; border-color: #A8092D; }


.about-hero { margin-top:100px; color:#fff; }

.about-mission-vision { display:grid; grid-template-columns:1fr 1fr; gap:40px; padding:60px 20px; max-width:1200px; margin:auto; }
.about-mission-vision .block h2 { color:#8B0000; font-size:1.8rem; margin-bottom:15px; }
.about-mission-vision .block p { font-size:1rem; color:#333; }

.about-why-choose { padding:60px 20px; background:#8B0000; max-width:800px; margin:auto; }
.about-why-choose ul { list-style: disc inside; color:#e7e7e7; }
.about-why-choose li { margin-bottom:12px; font-size:1rem; }

.about-stats { display:flex; justify-content:center; gap:40px; padding:60px 20px; background:#fff; }
.stat-card { text-align:center; }
.stat-card strong { display:block; font-size:2.5rem; color:#8B0000; }
.stat-card span { display:block; font-size:1rem; color:#333; }

.about-services { padding:60px 20px; max-width:800px; margin:auto; }
.about-services h2 { color:#8B0000; margin-bottom:20px; }
.about-services ul { list-style: square inside; margin-bottom:20px; color:#333; }
.about-services li { margin-bottom:10px; }

.stat-card strong {
  font-size: 2.5rem;
  color: #8B0000;
  display: block;
  transition: all 0.3s ease;
}

.contact-hero { margin-top:100px; color:#fff; }

.contact-info { text-align:center; padding:60px 20px; max-width:800px; margin:auto; }
.contact-info h2 { color:#8B0000; font-size:2rem; margin-bottom:15px; }
.contact-info .social-links a { margin: 0 10px; text-decoration:none; color:#000; font-weight:500; }

.contact-form-section { background:#f9f9f9; padding:60px 20px; max-width:600px; margin:0 auto; border-radius:8px; }
.contact-form label { display:block; margin-bottom:8px; font-weight:bold; color:#333; }
.contact-form input, .contact-form textarea {
  width:100%; padding:12px; margin-bottom:20px; border:1px solid #ccc; border-radius:4px; font-size:1rem;
}
.contact-form .btn-primary { background:#8B0000; color:#fff; padding:14px 30px; border:none; border-radius:6px; cursor:pointer; font-size:1.1rem; transition: background 0.3s; }
.contact-form .btn-primary:hover { background:#000; }




/* 📱 Mobile-friendly navbar - right hamburger, centered big logo */
@media (max-width: 768px) {
  :root { --nav-h: 120px; } /* slightly taller nav for bigger logo */

  .navbar {
    height: var(--nav-h);
    padding: 8px 12px;
    justify-content: space-between; /* center everything horizontally */
    align-items: center;
    background: #000;
    position: relative; /* so absolute elements align properly */
  }

  /* Logo centered & bigger */
  .logo {
    height: 110px; /* bigger for mobile */
    width: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0; /* <-- moved from left to right */
    height: 100dvh;
    width: 80%;
    max-width: 320px;
    padding: 80px 20px 20px;
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateX(100%); /* hidden off-screen to right */
    transition: transform .28s ease;
    z-index: 1100;
    overflow-y: auto;
  }
  body.menu-open .nav-links {
    transform: translateX(0); /* slide in from right */
  }

/* Backdrop only active for clicks outside menu */
body.menu-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1090; /* lower than nav-links */
  pointer-events: none; /* clickable to close menu if JS listens */
}

/* Menu drawer stays above backdrop */
.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 80%;
  max-width: 320px;
  padding: 80px 20px 20px;
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateX(100%);
  transition: transform .28s ease;
  z-index: 1101; /* ensure above backdrop */
  overflow-y: auto;
  pointer-events: auto; /* important for mobile taps */
}


  .nav-links li a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Mobile dropdown behavior */
  .dropdown:hover .dropdown-menu { display: none; opacity: 1; transform: none; }
  .dropdown-menu {
    position: static;
    display: none;
    background: #111;
    border-radius: 6px;
    padding: 6px 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .dropdown.open > .dropdown-menu { display: block; }
  .dropdown-menu li a { padding-left: 14px; }
}

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1099; /* just under nav drawer */
}
body.menu-open .menu-backdrop {
  display: block;
}
.nav-links {
  z-index: 1100; /* stays above backdrop */
}



/* 📱 Mobile-friendly navbar and content adjustments */
@media (max-width: 768px) {
  :root { --nav-h: 120px; } /* slightly taller nav for bigger logo */

  /* Navbar layout */
  .navbar {
    height: var(--nav-h);
    padding: 8px 12px;
    justify-content: space-between;
    align-items: center;
    background: #000;
    position: relative;
  }

  /* Logo size */
  .logo {
    height: 110px;
    width: auto;
  }
/* Hide hamburger completely on desktop */
.hamburger {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3); /* Subtle dark background */
    border-radius: 6px;
    border: none;
    cursor: pointer;
    z-index: 1101;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
  }

  /* Mobile hamburger spans - white for visibility */
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff !important; /* White on mobile - visible against black navbar */
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  /* Animation states for mobile */
  body.menu-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Better approach - completely hide on desktop */
@media (min-width: 769px) {
  .hamburger {
    display: none !important; /* Completely hide on desktop */
  }
}


.nav-links {
    list-style: none !important;
    list-style-type: none !important;
}

.nav-links li {
    list-style: none !important;
}

  /* Drawer menu */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 80%;
    max-width: 320px;
    padding: 80px 20px 20px;
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateX(100%);
    transition: transform .28s ease;
    z-index: 1100;
    overflow-y: auto;
  }
  body.menu-open .nav-links { transform: translateX(0); }

  /* Backdrop overlay */
  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1099;
  }

  .nav-links li a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  /* Mobile dropdowns */
  .dropdown:hover .dropdown-menu { display: none; opacity: 1; transform: none; }
  .dropdown-menu {
    position: static;
    display: none;
    background: #111;
    border-radius: 6px;
    padding: 6px 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .dropdown.open > .dropdown-menu { display: block; }
  .dropdown-menu li a { padding-left: 14px; }

  /* 🔹 Hero text adjustments */
  .overlay-content.left-bottom {
    padding: 140px 20px 40px 20px;
    max-width: 100%;
    text-align: center;
  }
  .overlay-content.left-bottom h1 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .overlay-content.left-bottom p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* 🔹 Center message adjustments */
  .centered-message.with-logo {
    flex-direction: column;
    padding: 40px 20px;
    gap: 20px;
    text-align: center;
  }
  .text-column h2 {
    font-size: 1.6rem;
  }
  .text-column p {
    font-size: 1rem;
  }

  /* 🔹 Services grid */
  .services-grid {
    gap: 20px;
  }
  .service-card img {
    width: 40px;
    height: 40px;
  }
  .service-card span {
    font-size: 0.9rem;
  }

  /* 🔹 Map section */
  #home-map {
    height: 300px;
  }
  .map-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  /* 🔹 Push video content below navbar */
  .video-container {
    padding-top: var(--nav-h);
  }
}


/* 📱 About Us page mobile adjustments */
@media (max-width: 768px) {

  /* Hero section below navbar */
  .about-hero {
    height: auto !important; /* let content set height */
    padding-top: var(--nav-h);
    padding-bottom: 40px;
    text-align: center;
    background-size: cover;
    background-position: center;
  }
  .about-hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .about-hero p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Mission & Vision section */
  .about-mission-vision {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 20px;
    padding: 40px 20px;
  }
  .about-mission-vision .block h2 {
    font-size: 1.4rem;
  }
  .about-mission-vision .block p {
    font-size: 0.95rem;
  }

  /* Why Choose Us section */
  .about-why-choose {
    padding: 40px 20px;
  }
  .about-why-choose h2 {
    font-size: 1.4rem;
    text-align: center;
  }
  .about-why-choose ul {
    font-size: 0.95rem;
    padding-left: 15px;
  }

  /* Stats section */
  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
  }
  .stat-card strong {
    font-size: 2rem;
  }
  .stat-card span {
    font-size: 0.9rem;
  }

  /* Services list section */
  .about-services {
    padding: 40px 20px;
  }
  .about-services h2 {
    font-size: 1.4rem;
    text-align: center;
  }
  .about-services p,
  .about-services ul {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}


/* 📱 Mobile Fixes for Industrial Surveillance Page */
@media (max-width: 768px) {
  /* Hero section */
  .industry-hero {
    padding: 140px 20px 40px 20px; /* space for nav */
    text-align: center;
    height: auto !important;
  }
  .industry-hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .industry-hero p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .industry-hero .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
  }

  /* Section text */
  .industry-section,
  .live-camera-section,
  .industry-cta {
    padding: 30px 20px;
    text-align: center;
  }
  .industry-section h2,
  .live-camera-section h2 {
    font-size: 1.5rem;
  }
  .industry-section p,
  .live-camera-section p {
    font-size: 1rem;
  }

  /* Benefits grid */
  .live-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .live-item h2 {
    font-size: 1.2rem;
  }
  .live-item p {
    font-size: 0.95rem;
  }

  /* Alternating blocks */
  .industry-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .industry-layout .block {
    flex-direction: column !important;
    text-align: center;
  }
  .industry-layout .block-content {
    padding: 20px;
  }
  .industry-layout .block.reverse {
    flex-direction: column !important;
  }

  /* CTA */
  .industry-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
  .industry-cta .btn-primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
.footer-flex-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social, 
.footer-contact, 
.footer-address {
  color: #A8092D;
  flex: 1;
  min-width: 220px;
}

.footer-address p {
  color: #A8092D;
  margin: 0;
  color: #ccc;
}

/* Mobile: stack in one column */
@media (max-width: 768px) {
  .footer-flex-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-social, 
  .footer-contact, 
  .footer-address {
    width: 100%;
  }

  /* Stack email and phone vertically on mobile */
  .footer-separator {
    display: none;
  }

  .footer-email,
  .footer-phone {
    display: block;
    margin-bottom: 5px;
  }
}