/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
  padding-bottom: 60px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Home Section */
#home {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

#hero-content {
  text-align: left;
  max-width: 500px;
}

.passport-holder {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 20px;
  background-color: #333;
  flex-shrink: 0;
}

.passport-holder img {
  width: 100%;
  height: auto;
  display: block;
}

.home-div {
  text-align: left;
  max-width: 500px;
}

h1 {
  font-size: 2.5em;
  margin: 0 0 10px;
}

h1 span {
  color: #ff6200;
}

h2 {
  color: #ff6200;
}

h3 {
  font-size: 1.5em;
  color: #ff6200;
  margin: 0 0 15px;
}

p {
  font-size: 1.2em;
  color: #302f2f;
  margin: 0 0 20px;
}

p {
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  background: #ff6200;
  color: #fff;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 500;
  transition: background 0.3s ease;
  margin-top: 20px;
  text-decoration: none;
  font-size: 16px;
  text-align: center;
}

/* Navbar */
nav {
  background: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #e5e5e5;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6200;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ff6200;
  font-weight: 500;
}

.nav-links a:hover {
  color: #0077cc;
}

/* Hamburger */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  width: 30px;
}

.nav-toggle-label span {
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    gap: 16px;
    text-align: center;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }
}

/* Sections */
.main-container {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

section {
  margin-bottom: 60px;
}

/* Cards */
.card-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-align: center;
}

.card img {
  height: 120px;
  margin-bottom: 16px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Contact form */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: auto;
}

input, textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
}

input:focus, textarea:focus {
  border-color: #0077cc;
}

button {
  background: #ff6200;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}

button:hover {
  background: #005fa3;
}

/* Footer */
footer {
  background: #111;
  color: white;
  padding: 24px 16px;
  text-align: center;
  position: relative;
  margin-top: 40px;
}

.footer-links {
  margin-top: 8px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

/* RESPONSIVENESS */
@media (max-width: 768px) {
  #home {
    flex-direction: column;
    text-align: center;
  }

  .passport-holder {
    margin: 0 auto;
  }

  #hero-content {
    margin: 0 auto;
    text-align: center;
  }

  h1 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.2em;
  }

  p {
    font-size: 1em;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
