/* styles.css */

/* Global Styles */
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

ul {
  padding-left: 1.2rem;
}

h1, h2 {
  color: #003366;
}

/* Mobile Menu */
.menu-toggle {
display: none;
font-size: 1.8rem;
cursor: pointer;
color: white;
}

@media (max-width: 768px) {
nav {
  flex-direction: column;
  align-items: flex-start;
}

.menu-toggle {
  display: block;
  align-self: flex-end;
}

.nav-links {
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: #003366;
  margin-top: 1rem;
}

.nav-links li {
  width: 100%;
}

.nav-links li a {
  display: block;
  padding: 0.8rem 1rem;
  border-top: 1px solid #005599;
}

.nav-links.active {
  display: flex;
}
}
/* Smooth dropdown animation */
.nav-links {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-in-out;
}

.nav-links.active {
max-height: 500px; /* enough height for all links */
}

/* Smooth scroll (optional fallback) */
html {
scroll-behavior: smooth;
}

/* Hero Section */
#hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: #ff6b00;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: #e65c00;
}

.btn-secondary {
  background: #006699;
  color: white;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

/* Sections */
section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

section p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

section ul li {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

/* Footer */
footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}
/* Disable text selection */
body, .no-copy {
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
  user-select: none;         /* Non-prefixed version */
}
