

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2f44;
  font-family: 'Poppins', Arial, sans-serif;

}


.header {
  position: fixed;
  top: 10px;
  left: 0px;
  width: 100%;
  height: 120px;
  z-index: 100;
}




.header-container {
  max-width: 1200px;
  height: 100%;
  margin: auto;
  padding: 0 8px;
  display: flex;
  align-items: center;
}


.logo {
  
  margin-top: 70px;
  margin-right: 100px;
  margin-left: -50px;
}





.logo img {
  height: 300px;
  display: block;
  margin-top: -80px;
}


 
  .nav {
  display: flex;
  gap: 52px;
  margin-left: auto;
  margin-top: -40px;
}



.nav a {
  position: relative;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c3e55;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background-color: #4fa3c7;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #4fa3c7;
}

.nav a:hover::after {
  width: 100%;
}




.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 120;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #2c3e55;
  border-radius: 2px;
  transition: 0.3s ease;
  transform-origin: center;
}


.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 90;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-size: 1.2rem;
  padding: 14px 0;
  color: #2c3e55;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: #4fa3c7;
}


.hero {
  min-height: 100svh;
  width: 100%;
  padding-top: 120px;
  background-image: url("../img/bg-hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 68% 25%;
  
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.05)
  );
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  padding: 0 32px;
  margin-left: 280px;
}


.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px; 
  font-family: 'Playfair Display', serif;

  
  

}

.hero h1 span {
  color: #4fa3c7;
  
}

.hero p {
  max-width: 520px;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #1f2f44;
}


.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #f7931e;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247,147,30,0.35);
}

.btn-secondary {
  background-color: #fff;
  color: #1f2f44;
  border: 1px solid #dfe7ef;
}

.btn-secondary:hover {
  background-color: #f4f8fc;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.info-card {
  margin-top: 20px;
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.info-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-left img {
  width: 90px;
}

.info-left strong {
  display: block;
  font-size: 1rem;
  color: #4fa3c7;
}

.info-left span {
  font-size: 0.95rem;
  color: #1f2f44;
}

.info-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.12);
}

.info-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  font-weight: 500;
  color: #000000;
}

.info-item img {
  width: 52px;
}


@media (max-width: 768px) {


  .hero h1 span {
    font-weight: 600;
    letter-spacing: 0.3px;
  }

  .header {
    height: 140px;
  }

  .header-container {
    padding: 0 20px;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 30px;
    margin: 0;
    top: +67px;
  }

  .logo img {
    height: 130px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 34px;
    right: 20px;
  }

  .hero {
    padding-top: 150px;
    background-image: url("../img/bg-hero-mobile.png");
    background-position: center top;
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.25),
      rgba(255,255,255,0.15)
    );
  }

  .hero-container {
    margin-left: 0;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2.2rem;
    color: #1f2f44;
  }

  .hero p {
    font-size: 1.2rem;
    color: #4fa3c7;
    font-weight: 600;
  }

  .hero-buttons {
    margin-top: 8px;
  }

  .info-card {
    margin-top: 24px;
    max-width: 100%;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  .info-left img {
    width: 72px;
  }

  .info-item {
    font-size: 1rem;
  }

  .info-item img {
    width: 44px;
  }

  .info-divider {
    display: none;
  }
}



.footer {
  background: #1f2f44;
  color: #ffffff;
  margin-top: 0px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 32px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-container {
  text-align: left;
}



.footer-brand img {
  width: 180px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cfd8e3;
}


.footer-col h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #cfd8e3;
}

.footer-col ul li a {
  color: #cfd8e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #4fa3c7;
}


.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 18px 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #cfd8e3;
}


@media (max-width: 768px) {

  .footer-container {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 32px;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}

.header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;

  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  opacity: 0;                 
  transition: opacity 0.35s ease;

  z-index: -1;
}


.header.scrolled::before {
  opacity: 1;
}


.nav {
  position: relative;
  z-index: 10;
}


@media (max-width: 768px) {

  section {
    padding: 48px 0;
  }

}


@media (max-width: 768px) {

  .hero h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .hero h1 span {
    font-size: 2.1rem;
    font-weight: 600;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .hero-buttons {
    gap: 12px;
  }

}


@media (max-width: 768px) {

  .info-card {
    padding: 16px;
    gap: 12px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  }

  .info-left strong {
    font-size: 0.95rem;
  }

  .info-left span {
    font-size: 0.9rem;
  }

  .info-item {
    font-size: 0.95rem;
  }

  .info-divider {
    display: none;
  }

}


.section {
  padding: 80px 0;
}

.section-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #1f2f44;
}

.section p {
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.6;
}

@media (max-width: 768px) {

  .section {
    padding: 48px 0;
  }

  .section h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .section p {
    font-size: 1rem;
  }

}



@media (max-width: 768px) {
  .info-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-container {
    margin-top: 300px;   
  }
}



@media (max-width: 768px) {

  .hero-container {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 24px 20px;
    border-radius: 18px;

    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  }

}



@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.logo,
.nav a,
.menu-toggle {
  opacity: 0;
  transform: translateY(-20px);
}



@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



body.loaded .logo {
  animation: fadeDown 0.8s ease forwards;
  animation-delay: 0.2s;
}

body.loaded .nav a {
  animation: fadeDown 0.8s ease forwards;
}


body.loaded .nav a:nth-child(1) { animation-delay: 0.4s; }
body.loaded .nav a:nth-child(2) { animation-delay: 0.5s; }
body.loaded .nav a:nth-child(3) { animation-delay: 0.6s; }
body.loaded .nav a:nth-child(4) { animation-delay: 0.7s; }
body.loaded .nav a:nth-child(5) { animation-delay: 0.8s; }
body.loaded .menu-toggle {
  animation: fadeDown 0.8s ease forwards;
  animation-delay: 0.4s;
}




.hero h1,
.hero p,
.hero-buttons,
.info-card {
  opacity: 0;
  transform: translateY(40px);
}

body.loaded .hero h1,
body.loaded .hero p,
body.loaded .hero-buttons,
body.loaded .info-card {
  animation: fadeUp 0.9s ease forwards;
}



.hero h1 {
  animation-delay: 0.2s;
}

.hero p {
  animation-delay: 0.4s;
}

.hero-buttons {
  animation-delay: 0.6s;
}

.info-card {
  animation-delay: 0.8s;
}


