html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  overscroll-behavior-x: none;
  position: relative;
  touch-action: pan-y;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}



.trust-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: linear-gradient(135deg, #8ca6db, #b993d6);
  background-size: 200% 200%;
  animation: gradientFlow 10s ease infinite;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  border-radius: 0 0 18px 18px;
  transition: all 0.4s ease;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 75px;        /* MAIN control – increase/decrease as needed */
  max-width: 100%;
  height: auto;        /* Keeps aspect ratio */
  object-fit: contain
}


.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255,255,255,0.25);
  padding: 8px 10px;
  border-radius: 50%;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  width: 38px;
  height: 38px;
}
.home-btn:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.home-btn i {
  font-size: 1.2rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1201;
  transition: all 0.4s ease;
}
.menu-toggle span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.4s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}


.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1040;
}
.menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* === SLIDE-IN MENU === */
.nav-overlay {
  position: fixed;
  top: 0;
  right: -105%;
  width: 80%;
  max-width: 340px;
  height: 100vh;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(25px);
  box-shadow: -4px 0 25px rgba(0,0,0,0.25);
  transition: right 0.5s cubic-bezier(0.4, 0.1, 0.2, 1);
  z-index: 1050;
  border-left: 1px solid rgba(255,255,255,0.6);
  will-change: right;
}
.nav-overlay.active {
  right: 0 !important;
  animation: fadeInMenu 0.6s ease;
}

@keyframes fadeInMenu {
  from { transform: translateX(60px); opacity: 0.8; }
  to { transform: translateX(0); opacity: 1; }
}

.nav-content {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  padding: 0 40px;
  gap: 26px;
}
.nav-content a {
  color: #2b2b2b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.15rem;
  position: relative;
  transition: all 0.3s ease;
}
.nav-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #8ca6db;
  transition: width 0.3s ease;
}
.nav-content a:hover {
  color: #3c52a3;
  transform: translateX(6px);
}
.nav-content a:hover::after {
  width: 100%;
}


@media (max-width: 600px) {
  .trust-header {
    padding: 12px 24px;
  }
  .header-right {
    gap: 10px;
  }
  .home-btn {
    width: 34px;
    height: 34px;
  }
}
/* WhatsApp Channel Beautiful Card */
.wa-card {
    width: 80%;
    margin: 40px auto;
    text-align: center;
    padding: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    font-family: "Poppins", "Segoe UI", sans-serif;
}

/* Title */
.wa-card h2 {
    color: #075e54;
    margin-bottom: 18px;
    font-weight: 700;
    font-size: 22px;
}

/* Glowing WhatsApp Button */
.wa-glow-btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #25d366 0%, #1ebe5d 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    transition: all 0.25s ease;
}

.wa-glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

/* Scan Text */
.scan-text {
    margin: 15px 0 10px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

/* QR Container With Hover Glow */
.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-image {
    width: 250px;
    height: 250px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Glow animation on hover */
.qr-image:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 40px rgba(0,0,0,0.30);
}
.insta-card {
  width: 80%;
  margin: 40px auto;
  padding: 26px;
  border-radius: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  font-family: "Poppins", "Segoe UI", sans-serif;
}

.insta-card h2 {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

/* Instagram button */
.insta-btn {
  display: inline-block;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  box-shadow: 0 8px 25px rgba(221, 42, 123, 0.45);
  transition: all 0.25s ease;
}

.insta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(221, 42, 123, 0.65);
}

/* Text */
.insta-scan {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #334155;
}

/* QR wrapper */
.insta-qr-wrap {
  display: flex;
  justify-content: center;
}

.insta-qr {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.insta-qr:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 480px) {
  .insta-card {
    width: 92%;
  }
  }
.location-btn {
  display: inline-block;
  width: 80%;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #4285F4, #0A67C2);
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.45);
  transition: all 0.25s ease;
}

.location-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(66, 133, 244, 0.65);
}
