@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');

* {
  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;
  }
}


.full-text {
  display: none;
}

.full-text.active {
  display: block;
}

/* -----Hero----- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 150px 8% 100px;
  flex-wrap: wrap;
  background: url('assets/premium_photo.png');
  background-size: cover;
  background-position: center;
}

.hero-left {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-left img {
  width: 550px;
  max-width: 100%;
  height: auto;
  /* border-radius: 20px;
  border: 3px solid #06326b;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  border-radius: 50%; */
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}


/* .hero-left img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */

.hero-right {
  flex: 1.2;
  max-width: 700px;
  color: var(--text-dark);
}

.hero-right h1 {
  font-size: 40px;
  color: #06326b;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-align: left;
}

.hero-right p {
  font-size: 20px;
  line-height: 1.4;
  color: black;
  text-align: justify;
  margin-bottom: 25px;
}

.hero-right .cta-btn {
  background-color: #08376b;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-right .cta-btn:hover {
  background-color: #0b69d4;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 130px 6% 80px;
  }

  .hero-left img {
    width: 300px;
    margin-bottom: 0px;
  }

  .hero-right h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-right p {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 20px 4% 60px;
  }

  .hero-right h1 {
    font-size: 1.5rem;
  }

  .hero-right p {
    font-size: 0.9rem;
  }

  .hero-right .cta-btn {
    padding: 10px 24px;
  }
}

/* -----Mission----- */
.mission-section {
  padding: 40px 6%;
  display: flex;
  justify-content: center;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
}

.mission-image img {
  width: 380px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.12);
  border: 3px solid #06326b;
  padding: 10px;
}

.mission-box {
  background: aliceblue;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #0d47a1;
  flex: 1;
}

.mission-title {
  font-size: 32px;
  font-weight: 800;
  color: #06326b;
  margin-bottom: 25px;
  position: relative;
  padding-left: 15px;
}

.mission-title::before {
  content: "";
  width: 6px;
  height: 100%;
  background: #ffca53;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 3px;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}

.check-icon {
  color: #06326b;
  font-size: 22px;
  margin-right: 12px;
}

.mission-item p {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
}

@media (max-width: 900px) {
  .mission-content {
    flex-direction: column;
    text-align: center;
  }

  .mission-box {
    text-align: left;
    width: 100%;
  }

  .mission-title {
    font-size: 28px;
  }

  .mission-image img {
    width: 260px;
  }
}

/* -----Service----- */
.services-section {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #06326b;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #0d47a1;
  margin: 15px auto 0;
  border-radius: 2px;
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  color: #06326b;
  font-size: 22px;
  margin-bottom: 15px;
}

.service-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.service-content ul {
  list-style: disc;
  margin-left: 20px;
  color: #555;
}

.service-content li {
  margin-bottom: 5px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .service-content h3 {
    font-size: 20px;
  }
}


@media(max-width: 480px) {
  .brand-company {
    font-size: 13.2px;
    font-weight: 700;
    line-height: 0.1;
  }

}