/* Fonts */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #181f2a;
  color: #f5f6fa;
  scroll-behavior: smooth;
}

/* Header */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #151a23;
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.small-logo {
  height: 38px;
  border-radius: 10px;
}

.menu-icon {
  height: 32px;
  cursor: pointer;
  display: none;
}

.dropdown {
  display: flex;
  gap: 1.5rem;
}

.dropdown a {
  color: #f5f6fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.dropdown a:hover {
  color: #ffb347;
}

/* Responsive Navigation */
@media (max-width: 800px) {
  .dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 2rem;
    background: #181f2a;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.17);
    padding: 1rem 2rem;
    z-index: 1000;
  }

  .dropdown.show {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

/* Hero Section with ultra-bright background */
.hero-bg {
  background: url('../images/header-bg.jpg') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-block {
  background: rgba(24, 31, 42, 0.82);
  border-radius: 18px;
  padding: 3rem 2.5rem 2rem 2.5rem;
  max-width: 700px;
  margin: 3rem auto 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  text-align: center;
  color: #f5f6fa;
}

.logo-container {
  margin-bottom: 1.5rem;
}

.hero-logo {
  width: 110px;
  border-radius: 16px;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.13);
}

.main-headline {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem 0;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #e0e3ea;
  line-height: 1.7;
}

.scroll-down {
  margin-top: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.down-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-bottom: 3px solid #ffb347;
  border-right: 3px solid #ffb347;
  transform: rotate(45deg);
  animation: bounce 1.2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(10px) rotate(45deg);
  }
}

/* Navigation Section */
.nav-container {
  background: none;
  margin: 0 auto;
  max-width: 900px;
  padding: 0.5rem 0;
  text-align: center;
}

.nav-line {
  border: none;
  border-top: 1.5px solid #252a38;
  margin: 0.5rem 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  margin: 0.5rem 0;
}

.nav-links a {
  color: #ffb347;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  font-size: 1.1rem;
}

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

/* Main Content */
.main-content {
  background: #181f2a;
  padding: 2.5rem 0 0 0;
  min-height: 60vh;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
}

.card {
  background: rgba(24, 31, 42, 0.92);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
  padding: 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  border: 1.5px solid #23293a;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 179, 71, 0.10), 0 4px 24px rgba(0, 0, 0, 0.14);
  border-color: #ffb347;
}

.card img {
  width: 100%;
  max-width: 240px;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

.card h3 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.3rem;
  color: #ffb347;
  margin: 0.5rem 0 0.4rem 0;
}

.card p {
  color: #e0e3ea;
  font-size: 1rem;
  margin: 0.2rem 0 0 0;
}

/* Testimonials */
.testimonials {
  background: rgba(24, 31, 42, 0.92);
  border-radius: 18px;
  max-width: 900px;
  margin: 0 auto 2.5rem auto;
  padding: 2.2rem 2rem 1.5rem 2rem;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.10);
  text-align: center;
}

.testimonials h2 {
  font-family: 'Poppins', Arial, sans-serif;
  color: #ffb347;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.testimonial-carousel {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #23293a;
  border-radius: 12px;
  padding: 1.1rem 1.3rem;
  color: #fff;
  min-width: 220px;
  max-width: 300px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  margin-bottom: 1rem;
  border: 1.5px solid #252a38;
}

.testimonial-card p {
  font-size: 1.02rem;
  font-style: italic;
  margin-bottom: 0.7rem;
}

.testimonial-card span {
  color: #ffb347;
  font-size: 0.98rem;
  font-weight: 500;
}

/* Footer */
footer {
  background: #151a23;
  color: #e0e3ea;
  padding: 2rem 0 1rem 0;
  text-align: center;
  margin-top: 2rem;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer-newsletter {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
}

.footer-newsletter input[type="email"] {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #23293a;
  color: #fff;
  outline: none;
}

.footer-newsletter button {
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  border: none;
  background: #ffb347;
  color: #23293a;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.footer-newsletter button:hover {
  background: #fff;
  color: #ffb347;
}

.footer-copy {
  font-size: 0.98rem;
  color: #b0b5c3;
}

/* Utility Classes */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Fade-in Animation */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive Adjustments */
@media (max-width: 900px) {

  .main-content,
  .testimonials,
  .card-grid {
    max-width: 97vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .hero-logo-block {
    padding: 2rem 1rem;
  }
}

@media (max-width: 700px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .testimonial-carousel {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}