/* ---------------
   RESET + GLOBAL
   --------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------------
   HEADER
   --------------- */
.main-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo img {
  width: 120px;
}
.navbar {
  position: relative;
}
.nav-menu {
  list-style: none;
  display: flex;
}
.nav-menu li {
  margin-left: 20px;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s;
}
.nav-menu a:hover {
  color: #0056b3;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ---------------
   HERO SECTION
   --------------- */
.hero {
  background: #f8f9fa;
  padding-top: 80px; /* Offset for fixed header */
  padding-bottom: 60px;
  text-align: center;
}
.hero-content {
  margin-top: 40px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}
.hero-buttons .btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}
.btn-primary {
  background: #007bff;
  color: #fff;
}
.btn-primary:hover {
  background: #0056b3;
}
.btn-secondary {
  background: #ffc107;
  color: #333;
}
.btn-secondary:hover {
  background: #e0a800;
  color: #fff;
}

/* ---------------
   HOW WE WORK
   --------------- */
.how-we-work {
  background: #ffc107;
  color: #333;
  text-align: center;
  padding: 60px 0;
  margin-top: 30px;
}
.how-we-work h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.how-we-work .subtitle {
  margin-bottom: 30px;
}
.hww-grid {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.hww-item {
  background: #fff;
  color: #333;
  width: 250px;
  padding: 20px;
  margin: 10px;
  border-radius: 5px;
}
.hww-item h3 {
  margin-bottom: 10px;
}

/* ---------------
   VISA SOLUTIONS
   --------------- */
.solutions {
  background: #f8f9fa;
  text-align: center;
  padding: 60px 0;
}
.solutions h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.solutions .subtitle {
  margin-bottom: 30px;
}
.solutions-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.solution-card {
  width: 200px;
  background: #fff;
  margin: 15px;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.solution-card h4 {
  margin-top: 10px;
  font-size: 1rem;
  text-align: center;
}

/* ---------------
   CONTACT SECTION
   --------------- */
.contact-section {
  padding: 60px 0;
  text-align: center;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-section p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* ---------------
   FOOTER
   --------------- */
.main-footer {
  background: #343a40;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}
.social-icons a {
  color: #fff;
  margin: 0 5px;
  font-size: 1.2rem;
}
.social-icons a:hover {
  color: #ffc107;
}
.main-footer p {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* ---------------
   RESPONSIVE
   --------------- */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 20px;
    border: 1px solid #ddd;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hww-grid {
    flex-direction: column;
    align-items: center;
  }
  .solution-card {
    width: 80%;
  }
}