body {
  font-family: 'Segoe UI', sans-serif;
  scroll-behavior: smooth;
  color: #212529;
}

/* Glass Navbar */
.glass-nav {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff, #ffe5e8);
  display: flex;
  align-items: center;
}

.hero h1 span {
  color: #d90429;
}

.hero-img {
  width: 320px;
}

/* Floating Animation */
.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

/* STATS */
.stats {
  padding: 80px 0;
  background: #f8f9fa;
}

.stats h2 {
  color: #d90429;
  font-weight: bold;
}

/* FEATURES */
.features {
  padding: 100px 0;
  position: relative;

  /* Faint background image */
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.94)
    ),
    url("Assets/images/bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.features::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(217, 4, 41, 0.04), transparent);
  pointer-events: none;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(217,4,41,0.15);
}

.feature-card img {
  width: 70px;
  margin-bottom: 15px;
}

/* SECURITY */
.security {
  padding: 100px 0;
  background: #f8f9fa;
}

/* CTA */
.cta {
  padding: 80px 20px;
  text-align: center;
  color: #212529;
  position: relative;

  /* White background + faint image */
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.95)
    ),
    url("Assets/images/bg4.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.cta-btn {
  background-color: #d90429;
  border-color: #d90429;
}

.cta-btn:hover {
  background-color: #9b0208;
  border-color: #9b0208;
}


/* FOOTER */
footer {
  background: #d90429;
  color: white;
  text-align: center;
  padding: 15px;
}


.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;

  /* Background image */
  background: 
    linear-gradient(
      rgba(255, 255, 255, 0.92),
      rgba(255, 235, 238, 0.92)
    ),
    url("Assets/images/bg3.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* Faint circular security image */
.security-img-faint {
  width: 320px;
  height: 320px;
  object-fit: cover;

  opacity: 0.65;                 /* faint look */
  filter: grayscale(20%) blur(0.2px);
  
  transition: 
    transform 0.8s ease,
    opacity 0.8s ease,
    box-shadow 0.8s ease;
}

/* Slight emphasis on hover (desktop only) */
.security-img-faint:hover {
  opacity: 0.85;
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(217, 4, 41, 0.15);
}


/* TEAM SECTION */
.team {
  padding: 80px 0;
  background: #fff;
}

.team h2 {
  font-weight: 700;
  color: #c40000;
}

.team-card {
  text-align: center;
  padding: 25px;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.team-card img {
  width: 220px;              /* BIGGER PHOTO */
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(196, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.team-card h5 {
  margin-top: 20px;
  font-weight: 600;
}

.team-card p {
  color: #777;
  font-size: 0.95rem;
}

/* Hover Animation */
.team-card:hover {
  transform: translateY(-10px);
}

.team-card:hover img {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(196, 0, 0, 0.35);
  border-color: #c40000;
}


/* TOP INFO BAR */
.top-info-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
  font-size: 0.85rem;
}

.info-items {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.info-item .icon {
  font-size: 1.1rem;
  color: #c40000;
}

.info-item small {
  display: block;
  color: #888;
  font-size: 0.7rem;
  line-height: 1;
}

.info-item span {
  font-weight: 500;
  white-space: nowrap;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .top-info-bar {
    display: none;
  }
}

.navbar {
  top: 40px;
}

/* NAVBAR CONTACT INFO */
.nav-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  color: #333;
}

.nav-icon {
  font-size: 18px;
  margin-bottom: 2px;
}

.nav-info small {
  font-size: 11px;
  white-space: nowrap;
}


.dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 10px 0;
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
}

.dropdown-item:hover {
  background-color: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}


/* NAVBAR LINKS */
.navbar .nav-link {
  position: relative;
  padding: 8px 16px;
  border-radius: 6px;
  color: #222;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* HOVER EFFECT */
.navbar .nav-link:hover {
  background-color: #dc3545; /* Bootstrap danger red */
  color: #fff;
}

/* ACTIVE LINK (OPTIONAL) */
.navbar .nav-link.active {
  background-color: #dc3545;
  color: #fff;
}



/* NAVBAR CONTACT INFO */
.nav-info {
  cursor: pointer;
}

.nav-info small {
  color: red;
  display: inline-block;
  transition: 
    color 0.3s ease,
    transform 0.3s ease,
    letter-spacing 0.3s ease;
}

/* Icon styling */
.nav-icon {
  font-size: 18px;
  color: red;
  transition: transform 0.3s ease;
}

/* Hover animation */
.nav-info:hover small {
  color: darkred;
  transform: translateY(-3px) scale(1.05);
  letter-spacing: 0.5px;
}

.nav-info:hover .nav-icon {
  transform: scale(1.2) rotate(5deg);
}


.back-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #d32f2f;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
}

.back-arrow:hover {
  color: #b71c1c;
  text-decoration: underline;
}

.about-hero {
  background: linear-gradient(135deg, #000 30%, #8b0000 100%);
  padding: 120px 0 80px;
  color: white;
}

.about-hero span {
  color: #ff3b3b;
}

.glass-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  color: white;
}


/* DARK MODE */
.dark-mode {
  background:#111;
  color:white;
}

.dark-mode section,
.dark-mode footer,
.dark-mode .feature-card,
.dark-mode .team-card {
  background:#1c1c1c !important;
  color:white;
}

/* GLASS UI */
.glass-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Map container */
#map {
  height: 400px;
  border-radius: 15px;
}



