

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  padding: 30px 40px;
  z-index: 1000;
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 88, 156, 0.85);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-size: 24px;
  font-weight: bold;
 /* letter-spacing: 2px;*/
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #ddd;
}

/* TOGGLE ICON */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 30px;
  height: 25px;
}

.nav-toggle span {
  display: block;
    margin-top: 1px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* TOGGLE ANIMATION */
.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== RESPONSIVE MOBILE ========== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 89px;
    left: 0;
    right: 0;
    background: rgba(0, 88, 156, 0.85);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .nav-links.show {
    opacity: 1;
    max-height: 300px;
  }
    
    .image-text .image{
        width: 100%;
    }
    
    .image-text .image{
        width: 100%;
    }
    
    .image-text .text{
         width: 100%;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
        padding: 30px;
    }
    
    .hero-content img{
        max-width: 100px;
        margin-bottom: 15px
    }
    
    .hero-content h1{
        font-size: 42px;
        margin-bottom: 10px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .image-text .image{
        height: auto !important;
    }
    
}
