@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
    url('../assets/premium_photo.png') center/cover no-repeat fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

:root {
  --blue: #06326b;
  --blue-light: #0d47a1;
  --white: #fff;
  --dark: #111;
  --accent: #fbc02d;
}

/* -----Header----- */
.site-header {
  background: var(--blue);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.container {
  width: 92%;
  max-width: 1400px;
  margin: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand a {
  color: white;
  text-decoration: none;
}

.brand-company {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 11px;
  opacity: 0.9;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-list a {
  text-decoration: none;
  color: #eaf4ff;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 5px;
  position: relative;
}

.nav-list a::after {
  content: "";
  width: 0;
  height: 3px;
  background: white;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: 0.25s;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

@media (max-width: 900px) {

  .mobile-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    top: 70px;
    right: 20px;
    background: var(--blue);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    display: none;
    width: 200px;
  }

  .nav-list.nav-open {
    display: flex;
  }
}



h2,
h2.title {
  text-align: center;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 45px;
  letter-spacing: 0.4px;
}

h2.title {
  font-size: 2.5rem;
}

@media (max-width: 768px) {

  h2,
  h2.title {
    font-size: 2rem;
    margin-bottom: 35px;
  }
}

@media (max-width: 480px) {

  h2,
  h2.title {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }
}

/* -----Why Choose Us----- */
.why-choose-us .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 35px;
  margin-top: 25px;
}

.feature {
  background: aliceblue;
  padding: 38px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px var(--shadow);
  border-top: 5px solid var(--blue-light);
  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature .icon {
  font-size: 50px;
  margin-bottom: 18px;
}

.feature h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--blue);
}

.feature p {
  color: var(--text-light);
  line-height: 1.65;
}

/* -----Footer----- */
footer {
  background: var(--blue);
  color: #fff;
  margin-top: 70px;
}

#contact-footer {
  padding: 80px 6%;
}

.footer-container {
  max-width: 1150px;
  margin: auto;
}

.footer-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
  color: #fff;
}

.footer-content p {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 35px;
}

.contact-info {
  margin: 40px 0;
}

.icons .contact-item {
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  font-size: 1rem;
}

.contact-item strong {
  color: #fff;
}

.contact-item span {
  color: #e6e6e6;
}

.contact-item.address {
  margin-top: 18px;
  line-height: 1.55;
}

.footer-bottom {
  background: #05254d;
  padding: 22px;
  text-align: center;
  font-size: 0.95rem;
  color: #dcdcdc;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .feature {
    padding: 32px 24px;
  }

  .footer-content h2 {
    font-size: 40px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .feature {
    padding: 25px 20px;
  }

  .icons .contact-item {
    flex-direction: column;
  }

  .export-image img {
    border-radius: 8px;
  }
}

@media(max-width: 480px) {
  .brand-company {
    font-size: 13.2px;
    font-weight: 700;
    line-height: 0.1;
  }

}