/* Header and Navbar */
.header {
  background-color: #232554;
  padding: 0; /* remove extra padding */
}

.nav-containerblog {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center; /* vertically centers logo + nav + hamburger */
  height: 60px; /* header height */
}

/* Logo */
.logo {
  display: flex;
  align-items: center; /* vertically centers the logo inside header */
  padding: 0;
}

.logo-img {
  height: 45px;  /* adjust as needed */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 16px;
  align-items: center; /* vertically align links too */
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  line-height: 1;
}

.nav-links a:hover {
  color: #ffcc00;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-img {
    height: 30px;
    margin-top:30px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #232554;
    position: absolute;
    top: 60px; /* aligns with header height */
    left: 0;
    width: 100%;
    text-align: center;
    padding: 0.5rem 0;
  }

  .nav-links a {
    margin: 8px 0;
    font-size: 15px;
  }

  .hamburger {
    display: block;
  }
}


.footer {
  background-color: #311919;
  color: #fff;
  padding: 60px 30px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 220px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-section p {
  color: #ccc;
  line-height: 1.6;
  font-size: 15px;
}

.signup-btn {
  margin-top: 15px;
  padding: 10px 18px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #ffc107;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.signup-btn:hover {
  background-color: #ffc107;
  color: #000;
}

.work-link {
  color: #ffc107;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: #ffc107;
  padding: 6px 12px;
  border-radius: 6px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links li {
  margin-bottom: 8px;
}

.legal-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 15px;
}

.legal-links a:hover {
  color: #fff;
}


/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.section.gray {
  background: #f5f5f5;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* Team Section */
.team-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.member {
  text-align: center;
}

.member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffcc00;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  text-align: center;
  padding: 1rem 0;
}
/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    padding: 20px 15px;
    text-align: center;
  }
  .topbar {
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  padding: 10px 15px;
  gap: 10px;
  text-align: center;
}

.contact-info {
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}


  .logo-img {
    height: 60px;
  }

  .logo {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .nav-container {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    display: block;
    margin: 10px 0;
    font-size: 16px;
  }
}