* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Navbar Container */
header {
  background-color: #001f3f; /* Navy blue */
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo Section */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.logo h1 {
  font-size: 1.5rem;
}

/* Navigation Links */
nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #00bfff; /* Light blue hover */
}

/* Dark Mode Toggle Button */
#darkModeToggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 3px 0;
  transition: 0.4s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #001f3f;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
    padding: 10px;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
/* Full-Width Hero Section */
.hero {
  position: relative;
  height: 90vh; /* Takes up most of the screen */
  background: url("asset/generated-image.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Text */
.hero-text {
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-text h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  background-color: #00bfff;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #008fcc;
}

/* Mobile Friendly */
@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
/* About Section */
.about {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about h2 {
  font-size: 2.5rem;
  color: #001f3f;
  margin-bottom: 15px;
}

.about p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #001f3f;
  color: white;
  text-align: center;
  padding: 20px;
}

footer p {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* 🌙 Dark Mode Styles */
body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

/* Navbar in Dark Mode */
body.dark-mode header {
  background-color: #0a0a0a;
}

/* Navigation Links */
body.dark-mode nav a {
  color: #ffffff;
}

body.dark-mode nav a:hover {
  color: #00bfff;
}

/* Dark Mode Toggle Button */
body.dark-mode #darkModeToggle {
  color: #ffffff;
}

body.dark-mode .hero {
  background: url('asset/ChatGPT\ Image\ Aug\ 11\,\ 2025\,\ 07_29_20\ AM.png') center/cover no-repeat;
}



/* About Section Dark Mode */
body.dark-mode .about {
  background-color: #1e1e1e;
}

body.dark-mode .about h2 {
  color: #ffffff;
}

body.dark-mode .about p {
  color: #cccccc;
}

/* Footer in Dark Mode */
body.dark-mode footer {
  background-color: #0a0a0a;
  color: #ffffff;
}
