
/* Add this to your existing style.css or <style> tag */
.navbar {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.nav-link {
  transition: 0.3s ease-out;
  color: white;
  text-decoration: none;
}

.nav-link:hover {
  color: dodgerblue;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease;
  background-color: white;
}

@media(max-width:1024px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: rgba(11, 54, 89, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 999;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}

 .nav-btn {
            background-color: white;
            color: black;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background-color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .nav-btn img {
            margin-left: 0.75rem;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .nav-btn:hover img {
            transform: translateX(3px);
        }

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0f172a;
  color: #fff;
}

.navbar {
  
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.5s ease,;
  background: transparent;

}

.navbar.scrolled {
  background-color: #1e40af;
  opacity: 1;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: block;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #93c5fd;
}

.logo {
  height: 50px;
}

.btn {
  padding: 0.6rem 1.2rem;
  background-color: #1e40af;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #3b82f6;
}

.btn-secondary {
  background-color: #374151;
}

.btn-secondary:hover {
  background-color: #4b5563;
}

.hero {
  padding-top: 6rem;
  background: url('../images/hero-bg.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  max-width: 600px;
}

.tagline {
  text-transform: uppercase;
  color: #93c5fd;
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.expressions span {
  margin-right: 0.5rem;
  background-color: #1e3a8a;
  padding: 0.3rem 0.8rem;
  border-radius: 9999px;
  display: inline-block;
  margin-top: 0.8rem;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: #111827;
}

.about-img img {
  max-width: 100%;
  border: 4px solid #fff;
  border-radius: 1rem;
}

.about-text {
  max-width: 600px;
}

.rounded-full {
  border-radius: 9999px;
}

.bg-blue-900 {
  background-color: #1e40af;
}

/* Mobile menu styles */
#mobile-menu {
    background-color: #0B3659;
    transition: all 0.3s ease;
}

/* Navbar scroll effect */
.nav-scrolled {
    background-color: #0B3659 !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

/* Hamburger menu button */
#mobile-menu-button {
    transition: all 0.3s ease;
}

/* Menu item hover effect */
#mobile-menu a:hover {
    color: #A7C4FF;
}

/* Mobile menu styles */
#mobile-menu {
    background-color: rgba(11, 54, 89, 0.98);
    transition: all 0.3s ease;
}

/* Navbar styles */
#navbar {
    background-color: transparent;
    transition: background-color 0.4s ease;
}

#navbar.nav-scrolled {
    background-color: #0B3659 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
