
 

 
 

.navbar {
  background-color: #fff;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
  height: var(--nav-height);
}

.logo-icon {
  height: 45px;
  width: auto;
  margin-right: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  letter-spacing: 1px;
}

.brand-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 4px;
  opacity: 0.9;
  text-align: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-height);
}

.nav-link {
  color:#203038;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  
  transition: all 0.3s;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-orange);
}

.submenu {
  position: absolute;
  top: var(--nav-height);
  left: 0;
  background-color: var(--dropdown-bg);
  list-style: none;
  min-width: 200px;
  padding: 10px 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  display: block;
  font-size: 14px;
  transition: background 0.2s;
}

.submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.arrow-down {
  width: 10px;
  height: 6px;
  fill: none;
  stroke: white;
  stroke-width: 2px;
  transition: transform 0.3s ease;
}

.cta-button {
  background-color: var(--accent-orange);
  color: white !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition:
    transform 0.2s ease,
    background-color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.cta-button:hover {
  background-color: #f57c00;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  transition: 0.3s;
}
  .navbar .btn-container {
    margin-bottom: 0 !important;
    gap: 7px;
 
}

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

  }

@media (max-width: 1320px) {
.navbar .btn-primary,
  .navbar .btn-outline{
    padding: .7rem 1rem !important;
}
.nav-link {
 
    font-size: 14px;
}


}


@media (max-width: 1200px) {
  
  .cta-button {
  font-size: 13px;
 
}
}  


@media (max-width: 1150px) {
 
  
  
  .nav-links {
    gap: 12px;
  }
  .nav-link {
    font-size: 13px;
  }
  .navbar {
    padding: 0 20px;
  }
}

@media (max-width: 992px) {
  .navbar {
    flex-wrap: wrap;
          padding: 0 20px 10px 20px;
 
  }

 
 
 

  .cta-button {
    margin: 20px auto 20px auto ;
    width: calc(100% - 40px);
    text-align: center;
    display: block;
    width: 100%;
 
  }
 
}

@media (max-width:550px) {
  .navbar {
 flex-direction: column;
    justify-content: center;
  }






