/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #F9FAFB;
  color: #1F2937;
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #DCC06F;
}

img {
  max-width: 100%;
  height: auto;
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: #0A1C34;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 75px;
  width: auto;
}

/* Nav Menu */
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  color: #DCC06F;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

/* Hero Section */
.hero {
  background-image: url('6.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 280px 50px;
  background-color: #0A1C34;
  transition: opacity 0.5s ease;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #B89F5A;
  background-color: black;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 500;
  color: #B89F5A;
  background-color: black;
  padding: 8px 16px;
  display: inline-block;
  text-shadow:
    -1px -1px 0 #fff,
     1px -1px 0 #fff,
    -1px  1px 0 #fff,
     1px  1px 0 #fff;
}

/* Feature Cards Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.card {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.card h3 {
  margin-bottom: 10px;
  color: #0A1C34;
  font-size: 1.2rem;
}

.card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.card a {
  font-weight: bold;
  display: inline-block;
  padding: 10px 20px;
  background-color: #DCC06F;
  color: #0A1C34;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.card a:hover {
  background-color: #B89F5A;
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: #0A1C34;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

footer p {
  font-weight: 500;
  font-size: 1rem;
}

/* Animation (AOS) */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
