body {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #1a1a1a;
}

h1, h2, h3, .nav-links a {
  font-family: 'Oswald', sans-serif;
  color: #0b1c2c;
}

h2 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 20px;
  text-align: center;
}

nav {
  background-color: #0b1c2c;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 50px;
  max-width: 160px;
  margin-right: 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #88c0ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: #88c0ff;
  cursor: pointer;
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    align-items: center;
    padding: 12px 10px;
  }

  .nav-left {
    width: 100%;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
  }

  .hamburger .bar {
    height: 3px;
    background-color: #88c0ff;
    margin: 2px 0;
    transition: all 0.3s ease;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(6px);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-6px);
  }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    background-color: #0b1c2c;
  }

  .nav-links.show {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-links a {
    font-size: 16px;
    padding: 4px 0;
  }
}

header {
  position: relative;
  height: 85vh;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.show {
  opacity: 0.35;
}

header img[alt="Bravado Logo"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 320px;
  z-index: 2;
}

@media (max-width: 500px) {
  header img[alt="Bravado Logo"] {
    max-width: 220px;
  }
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-combo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: #f7f9fc;
  padding: 30px 20px;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
  text-align: center;
}

.trust-combo span img {
  height: 60px;
  max-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}

.stat-box {
  min-width: 160px;
}

.counter {
  font-size: 36px;
  font-weight: bold;
  color: #0b1c2c;
}

.stat-box p {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin-top: 6px;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.about-image {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-content {
  flex: 2;
  min-width: 300px;
}

.about-content p {
  margin-bottom: 16px;
  color: #333;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, background 0.3s, color 0.3s;
  color: #1a1a1a;
}

.service-card:hover {
  background: linear-gradient(135deg, #07c, #004080);
  color: #fff;
}

.service-card h3 {
  margin-top: 16px;
  font-size: 20px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.4;
}

.service-card img.service-icon {
  width: 80px;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover img.service-icon {
  transform: scale(1.05);
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 90px;
}

.swiper-slide img {
  max-height: 70px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.08);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: left;
}

.testimonial-card p.quote {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial-card p.name {
  font-weight: bold;
  color: #0b1c2c;
}

#contact {
  background-color: #f7f9fc;
  padding: 60px 20px;
  text-align: center;
}

#contact .content {
  max-width: 700px;
  margin: 0 auto;
}

#contact p {
  margin: 10px 0;
  font-size: 18px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #0b1c2c;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-btn:hover {
  background-color: #14354d;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #0b1c2c;
  color: #fff;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .about-content {
    order: 1;
    width: 100%;
  }

  .about-image {
    order: 2;
    width: 100%;
    margin-top: 20px;
  }

  .about-image img {
    border-radius: 8px;
  }

  .service-card img.service-icon {
    width: 56px;
  }

  .swiper-slide img {
    max-width: 110px;
    max-height: 60px;
  }
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-wrapper .content {
  flex: 1 1 300px;
  min-width: 280px;
}

.contact-wrapper .map-box {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 400px;
}

.map-box iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}
