* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  /*background: #f1f5f9;*/
  background:  rgb(255, 255, 255);
  color: #0f172a;
}
.company-logo {
  position: fixed;
  top: 15px;
  left: 85%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  justify-content: left;
  align-items: left;
}
.logoo {
  height: 85px;
  width: 120px;
  margin-right: 1100px;
}
.company-logo {
  position: fixed; /* fixed so it stays at top */
  top: 15px;
  left: 20px; /* adjust spacing from left edge */
  z-index: 1100; /* above sidebar toggle (if toggle is 1100) */
}

.company-logo img.logoo {
  height: 85px; /* logo height */
  width: auto; /* maintain aspect ratio */
}
/* Top Header */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

/* Logo */
.logo-wrap img {
  height: 52px;
  width: auto;
}

/* Push content down so header doesn't overlap */
.main-content {
  padding-top: 90px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .company-logo img.logo {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .company-logo img.logo {
    height: 50px;
  }
}

/* Sidebar x
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #020617;
  color: #e5e7eb;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.sidebar.active {
  left: 0;
}

.brand h2 {
  margin: 0;
}

.brand span {
  font-size: 12px;
  color: #94a3b8;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
}

.sidebar ul li a:hover {
  color: #ffffff;
}

/* Toggle Button 
.menu-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  font-size: 22px;
  background: #020617;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 1100;
}*/
/* ===========================
   SIDEBAR (RIGHT SIDE)
   =========================== */

.sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  /* moved to right */
  width: 260px;
  height: 100%;
  background: #020617;
  color: #e5e7eb;
  padding: 20px;
  transition: right 0.35s ease;
  z-index: 1001;
}

.sidebar.active {
  right: 0;
}

/* Brand */
.brand h2 {
  margin: 0;
}

.brand span {
  font-size: 12px;
  color: #94a3b8;
}

/* Nav */
.sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.sidebar ul li {
  margin: 15px 0;
}

.sidebar ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
}

.sidebar ul li a:hover,
.sidebar ul li a.active {
  color: #ffffff;
}

/* ===========================
   TOGGLE BUTTON (RIGHT SIDE)
   =========================== */

.menu-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  /* moved to right */
  font-size: 22px;
  background: #020617;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 1102;
  border-radius: 8px;
}

/* Hide toggle when sidebar is open */
.sidebar.active~.menu-toggle {
  display: none;
}

/* ===========================
   OVERLAY (CLICK TO CLOSE)
   =========================== */

#sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: none;
}

#sidebar-overlay.active {
  display: block;
}

/* ===========================
   MOBILE SAFETY
   =========================== */

@media (max-width: 768px) {
  .sidebar {
    width: 240px;
  }
}
/* Main Content */
.main-content {
  padding: 90px 30px;
}

.hero {
  max-width: 900px;
}

.hero h1 {
  font-size: 30px;
}

.hero p {
  font-size: 13px;
  line-height: 1.3;
  margin: 15px 0;
}

/* Buttons */
.actions {
  margin-top: 25px;
}

.btn {
  padding: 12px 15px;
  text-decoration: none;
  margin: 8px;
  width: 400px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  font-size: 14px;
}

.primary {
  background: #1d4ed8;
  color: white;
}

.secondary {
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}

.service-card h2 {
  margin-top: 0;
  color: #1e40af;
}

.service-card button {
  margin-top: 15px;
}
.guide {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.guide h2 {
  color: #1e40af;
  margin-top: 0;
}

.guide ul {
  margin-left: 20px;
}
main h1, main h2 {
  color: #1e40af;
}

main ul {
  margin-left: 20px;
}

main p {
  line-height: 1.7;
  margin: 15px 0;
}
.guide {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.guide h2 {
  color: #1e40af;
  margin-top: 0;
}

.guide ul, .guide ol {
  margin-left: 20px;
  margin-bottom: 15px;
}

.guide ol li {
  margin-bottom: 5px;
}
/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, #020617, #020617);
  color: #e5e7eb;
  padding-top: 60px;
  box-shadow: 0 -10px 40px rgba(59, 130, 246, 0.15);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand h2 {
  color: #60a5fa;
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #9ca3af;
}

.footer-links h3,
.footer-contact h3 {
  color: #93c5fd;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-links ul li a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #3b82f6;
}

.footer-contact a {
  color: #60a5fa;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}

.footer-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .site-footer {
    text-align: center;
  }
}
/* ===== AWARENESS PAGE ===== */
.awareness-hero {
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.15), transparent 70%);
  padding: 60px 20px;
  text-align: center;
}

.awareness-hero h1 {
  font-size: 2.6rem;
  color: #60a5fa;
  margin-bottom: 15px;
}

.awareness-hero p {
  max-width: 800px;
  margin: auto;
  color: #9ca3af;
  font-size: 1.05rem;
  line-height: 1.7;
}

.awareness-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.guide {
  background: linear-gradient(145deg, #0b1220, #111827);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s, box-shadow 0.35s;
}

.guide:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 45px rgba(59, 130, 246, 0.35);
}

.guide img {
  width: 200px;
  margin-bottom: 15px;
  height: 120px;
}

.guide h2 {
  color: #93c5fd;
  margin-bottom: 15px;
}

.guide h3 {
  color: #bfdbfe;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.guide p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.7;
}

.guide ul,
.guide ol {
  margin-left: 20px;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.guide li {
  margin-bottom: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .awareness-hero h1 {
    font-size: 2rem;
  }
}
.page-hero {
  margin-bottom: 40px;
  max-width: 900px;
}

.awareness-card,
.ethics-card {
  background: rgba(20, 25, 40, 0.9);
  border: 1px solid rgba(0, 255, 170, 0.2);
  border-radius: 14px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.08);
}
.ethics-card  h3 {
  margin-top: 0;
  color: #f1fafa;
}
.ethics-card p {
  color: #d1d5db;
  line-height: 1.7;
}

.card-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.card-header img,
.ethics-card img {
  width: 220px;
}

.ethics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.highlight {
  border-color: rgba(0, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===========================
   HERO VIDEO SECTION
   =========================== */

.hero-video {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
}

/* Background video */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 70%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.9);
}

/* Overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(rgba(5, 10, 25, 0.85),
      rgba(5, 10, 25, 0.6));*/
  z-index: 2;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 40px;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 30px;
  color: #cfd6ff;
}

/* Buttons already exist, but ensure contrast */

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-video {
    min-height: 90vh;
    border-radius: 12px;
  }

  .hero-content {
    padding: 25px;
  }
}
/* ===========================
   SERVICES PAGE
   =========================== */

.page-header {
  max-width: 900px;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(8, 15, 40, 0.75);
  border-radius: 18px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 50px rgba(67, 82, 215, 0.25);
}

.service-icon {
  width: 200px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 15px;
}

.service-card h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #60a5fa;
}

.service-card p {
  font-size: 0.95rem;
  color: #cbd5f5;
  margin-bottom: 20px;
}

/* ===========================
   MODAL
   =========================== */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  
  backdrop-filter: blur(6px);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  /*background: #020617;*/
  background:
      linear-gradient(rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.65)),
      url("../assets/bng.jpg");
  padding: 35px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  width: 90%;
  max-width: 520px;
  box-shadow: 0 0 60px rgba(59, 130, 246, 0.35);
}

.modal-content h2 {
  margin-bottom: 10px;
  color: #60a5fa;
}

.modal-note {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.modal-content textarea,
.modal-content input {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: #020617;
  color: #e5e7eb;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 15px;
}

.close {
  float: right;
  cursor: pointer;
  font-size: 1.4rem;
  color: #94a3b8;
}
.request-btn {
  background-color: #1d4ed8;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.request-btn:hover {
  background-color: #2563eb;
  transform:  translateY(-3px);
}





/* Hero Section */
.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background: url('assets/hero-poster.jpg') center/cover no-repeat; /* Fallback if video fails */
}

/* Background Video */
.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: brightness(0.7); /* slightly dark for text readability */
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.6); /* semi-transparent overlay */
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  padding: 30px 20px;
  color: #cfd6ff;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Buttons */
.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #1d4ed8;
  color: #fff;
}

.btn.primary:hover {
  background-color: #2563eb;
}

.btn.secondary {
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
}

.btn.secondary:hover {
  background-color: #1d4ed8;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    min-height: 60vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    border-radius: 12px;
  }
  .hero-content h1 {
    font-size: 1.9rem;
    width: 100%;
  }
  .hero-content p {
    font-size: 0.95rem;
    width: 100%;
  }
  .actions {
    flex-direction: column;
  }
}









