* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.trust-section {
  min-height: 100vh;          /* 🔥 MOST IMPORTANT */
  width: 100%;
  background: radial-gradient(circle at top, #1f2937, #020617);
  color: #fff;
  padding: 80px 20px;

  display: flex;              /* 🔥 */
  align-items: center;        /* vertical center */
}


.trust-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}


/* LEFT */
.trust-left {
  flex: 1;
}

.trust-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.trust-desc {
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.6;
}

.trust-point {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.trust-point .icon {
  font-size: 24px;
}

.trust-point h4 {
  margin-bottom: 5px;
  color: #22c55e;
}

.trust-point p {
  color: #cbd5e1;
  font-size: 14px;
}

/* RIGHT */
.trust-right {
  flex: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
}

.quote {
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 25px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 44px;
  height: 44px;
  background: #22c55e;
  color: #022c22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.author span {
  display: block;
  font-size: 13px;
  color: #9ca3af;
}

/* MOBILE */
@media (max-width: 768px) {
  .trust-container {
    flex-direction: column;
  }

  .trust-left h2 {
    font-size: 28px;
  }
}
/* ================= NAVBAR ================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #000;
  z-index: 9999;
}

.header-inner {
  max-width: 1400px;
  height: 100%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.logo img {
  height: 70px;
  width: auto;
}

/* ================= NAV ================= */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 4px;
  white-space: nowrap;
  transition: 0.3s ease;
}

nav ul li a:hover {
  color: #2cff77;
}

/* ================= MEGA MENU ================= */
.mega-menu {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  display: none;
  z-index: 99999;
}

.mega-dropdown:hover .mega-menu {
  display: block;
}

/* GRID */
.mega-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 60px;
}

.mega-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #e53935;
}

.mega-col ul {
  list-style: none;
}

.mega-col ul li {
  margin-bottom: 8px;
}

.mega-col ul li a {
  font-size: 14px;
  color: #444;
  transition: 0.3s;
}

.mega-col ul li a:hover {
  color: #3623dd;
  padding-left: 4px;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .logo img {
    height: 60px;
  }

  .mega-menu {
    display: none !important;
  }
}
