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, #eaf0ff);
  display: flex;
  align-items: center;
}

.hero h1 span {
  color: #26428B;
}

.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: #26428B;
  font-weight: bold;
}

/* FEATURES */
.features {
  padding: 100px 0;
  position: relative;
  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(38, 66, 139, 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(38,66,139,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;
  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: #26428B;
  border-color: #26428B;
}

.cta-btn:hover {
  background-color: #26428B;
  border-color: #26428B;
}

/* FOOTER */
footer {
  background: #26428B;
  color: white;
  text-align: center;
  padding: 15px;
}

/* HERO BG IMAGE */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: 
    linear-gradient(
      rgba(255, 255, 255, 0.92),
      rgba(235, 242, 255, 0.92)
    ),
    url("Assets/images/bg3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* SECURITY IMAGE */
.security-img-faint {
  width: 320px;
  height: 320px;
  object-fit: cover;
  opacity: 0.65;
  filter: grayscale(20%) blur(0.2px);
  transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.8s ease;
}

.security-img-faint:hover {
  opacity: 0.85;
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(38,66,139,0.15);
}

/* TEAM SECTION */
.team {
  padding: 80px 0;
  background: #fff;
}

.team h2 {
  font-weight: 700;
  color: #26428B;
}

.team-card {
  text-align: center;
  padding: 25px;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.team-card img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid rgba(38,66,139,0.15);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card:hover img {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(38,66,139,0.35);
  border-color: #26428B;
}

/* 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: #26428B;
  color: #fff;
}

/* ACTIVE LINK */
.navbar .nav-link.active {
  background-color: #26428B;
  color: #fff;
}

/* NAV INFO */
.nav-info {
  cursor: pointer;
}

.nav-info small {
  color: #26428B;
  transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}

.nav-icon {
  font-size: 18px;
  color: #26428B;
  transition: transform 0.3s ease;
}

.nav-info:hover small {
  color: #26428B;
  transform: translateY(-3px) scale(1.05);
  letter-spacing: 0.5px;
}

.nav-info:hover .nav-icon {
  transform: scale(1.2) rotate(5deg);
}

/* BACK ARROW */
.back-arrow {
  color: #26428B;
  font-weight: 600;
  text-decoration: none;
}

.back-arrow:hover {
  color:#26428B;
}

/* ABOUT HERO */
.about-hero {
  background: linear-gradient(135deg, #000 30%, #26428B 100%);
  padding: 120px 0 80px;
  color: white;
}

.about-hero span {
  color: #26428B;
}

/* GLASS CARD */
.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);
}

/* 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;
}

/* MAP */
#map {
  height: 400px;
  border-radius: 15px;
}

.bank-logo {
  height: 30px;   /* increase this */
  width: auto;    /* keep aspect ratio */
  object-fit: contain;
}

@media (max-width: 768px) {
  .bank-logo {
    height: 40px;
  }
}