.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 90px;

  background: #fff;

  z-index: 9999;
  border-bottom: 1px solid #edf1f7;
  font-family: "Segoe UI", sans-serif;
}
.container {
  max-width: 1400px;
  margin: auto;
  padding: 0 30px;

  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  overflow-wrap: normal;
}

.logo-icon {
  font-size: 42px;
  color: #d7a348;
}

.logo-text h2 {
  font-size: 20px;
  color: #17346b;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 2px;
}

.logo-text span {
  font-size: 11px;
  color: #17346b;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  white-space: nowrap;
}

/* Menu */

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 38px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #17346b;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 5px 0;
}

/* Gold line animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #d7a348;
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: #d7a348;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button */

.contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  background: #072f75;
  color: white;

  text-decoration: none;

  padding: 14px 24px;

  border-radius: 10px;

  font-size: 14px;
  font-weight: 600;

  transition: 0.3s;
  overflow-wrap: normal;
  white-space: nowrap;
}

.contact-btn:hover {
  background: #0b3d97;
}

.contact-btn i {
  font-size: 14px;
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #17346b;
  cursor: pointer;
  border: 0;
  background: transparent;
  line-height: 1;
}
/* ==========================
   1200px
========================== */

@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .nav-links {
    gap: 22px;
  }

  .logo-text h2 {
    font-size: 18px;
  }

  .contact-btn {
    padding: 12px 16px;
  }
}

/* ==========================
   992px
========================== */

@media (max-width: 992px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .contact-btn {
    padding: 10px 14px;
    font-size: 12px;
  }

  .logo-text h2 {
    font-size: 16px;
  }

  .logo-text span {
    font-size: 9px;
  }
}

/* ==========================
   MOBILE
========================== */
@media (max-width: 768px) {
	.navbar { 
		height: 80px; 
	} 
	.container { 
		height: 80px; 
		padding: 0 15px; 
	} 
	.menu-toggle { 
		display: block; 
	} 
	.contact-btn { 
		display: none; 
	} 
	.logo-text span 
	{ 
		display: none; 
	}

.navbar nav {
    position: fixed;
    top: 80px;
    right: -100%;

     width: 100%;
  max-width: 100%;

    height: auto;      /* Important */
    max-height: 80vh;  /* Prevent overflow */

    background: #fff;

    transition: .4s ease;

    box-shadow: -10px 0 25px rgba(0,0,0,.08);

    overflow-y: auto;
  }



  .navbar nav.active {
    right: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;

    padding: 20px 25px;

    border-bottom: 1px solid #edf1f7;
  }
}
/* ==========================
   480px
========================== */

@media (max-width: 480px) {
  .logo-icon {
    font-size: 26px;
  }

  .logo-text h2 {
    font-size: 12px;
  }

  .menu-toggle {
    font-size: 24px;
  }

  .navbar nav {
    width: 260px;
  }
}

