/* ===================== GLOBAL ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ===================== TOP BAR ===================== */
.top-bar {
  background: #222;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
}

.top-bar .social-icons i {
  margin: 0 10px;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #fff;
}

.top-bar .social-icons i:hover {
  color: #ffcc00;
}

.top-bar .contact {
  border-left: 1px solid #fff;
  padding-left: 12px;
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.top-bar .contact:hover {
  color: #ffcc00;
}

/* ===================== HEADER ===================== */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 40px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: all 0.4s ease;
  z-index: 1000;
}


.main-header.scrolled {
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 20px 40px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo img {
  max-height: 80px;
  transition: max-height 0.4s ease;
}

.main-header.scrolled .logo img {
  max-height: 50px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-header.scrolled .nav-menu a {
  color: #000;
}

.right-actions {
  display: flex;
  align-items: center;
}

.btn-filled {
  background: #ffcc00;
  color: #fff;
  padding: 10px 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-filled:hover {
  background: #d99a00;
  transform: translateY(-2px);
}

/* ===================== DROPDOWN MENU ===================== */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 500;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #ffcc00;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* ================= HERO SECTION ================= */
.hero {
  background: url('https://picsum.photos/1920/600?blur=2') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-buttons a {
  margin: 0 8px;
}

.btn-outline {
  border: 2px solid #fff;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ffcc00;
  border-color: #ffcc00;
  color: #fff;
}

/*=============== Unique Heading Section ======================*/

.legal-documents {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #fdfdfd, #f7f7f7);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.legal-documents::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: #ffcc00;
  border-radius: 50%;
  top: -50px;
  left: -50px;
  opacity: 0.2;
  z-index: 0;
}

.legal-documents::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: #0d6efd;
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  opacity: 0.2;
  z-index: 0;
}

.legal-documents h1 {
  font-size: 40px;
  color: #222;
  font-weight: 700;
  position: relative;
  z-index: 2;
  padding: 0 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: linear-gradient(90deg, #ffcc00, #0d6efd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===================== CERTIFICATES / TRUST BADGES ===================== */
.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 40px 20px;
  background: #fff;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.trust-badges .badge {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  width: 200px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.trust-badges .badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.trust-badges .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
  fill: #ffcc00;
}

.trust-badges h3 {
  font-size: 17px;
  margin: 5px 0;
  color: #333;
  font-weight: 600;
}

.trust-badges p {
  font-size: 13px;
  color: #777;
  margin: 0;
}

/* ===================== FOOTER ===================== */
footer {
  background: linear-gradient(135deg, #1a1a1a, #333);
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer-logo p {
  line-height: 1.5;
  color: #ccc;
}

.footer-contact p {
  color: #ccc;
  margin: 8px 0;
}

.footer-contact i {
  color: #ffcc00;
  margin-right: 8px;
}

.footer-links h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 6px 20px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #ffcc00;
  padding-left: 5px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #ccc;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 10px 0;
  }

  .nav-menu.show {
    display: flex;
  }

  .nav-menu a {
    color: #000; /* mobile menu black text */
    padding: 10px 15px;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .trust-badges .badge {
    width: 90%;
    max-width: 300px;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none; /* Hide toggle on desktop */
  }
}

