/* RESET */

html, body {
  margin: 0;
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
}

.hero {
  margin-top: 0;
  padding-top: 0;
}

h1, h2, h3 {
  margin-top: 0;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #222;
}

/* HEADER */
.site-header {
  background: #0a2a57;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 18px 30px;
  position: sticky;
  top: 0;
  transition: box-shadow 0.3s ease;
  z-index: 1000;
}

.site-header.scrolled {
  box-shadow: 0 10px 40px rgba(12, 12, 12, 0.45);
}


.logo {
  font-size: 22px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  margin-right: 20px;
  text-decoration: none;
  font-size: 20px;
  font-weight:bold;
}

nav a:hover {
  color: #ffd700;
    text-decoration: underline;

}


/* HERO */
.hero {
  height: 70vh;
  background: 
    linear-gradient(rgba(0,0,0,0.0), rgba(0,0,0,0)),
    url("banner1.jpg");
  background-size: cover;
  background-position: center;

  display: flex;
  justify-content: center;
  align-items: flex-end;   /* push content to bottom */

  padding-bottom: 1px;   /* control how far from bottom */
  text-align: center;
}
.hero-content {
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #eee;
}

.hero-btn {
  background: #d4af37;
  color: #000;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  margin-top: 20px;  
  display: inline-block;  
}

.hero-btn:hover {
  background: #ffd700;
}

/* SECTION */
.section {
  padding: 70px 60px;
  background: white;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0a2a57;
  display: block;
  margin: 10px auto 0;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card h3 {
  color: #0a2a57;
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 15px;
}

/* FOOTER */
footer {
  background: #0a2a57;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {

  .site-header {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 20px;
  }
}



html {
  scroll-behavior: smooth;
}



/* scroll animation */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* header shadow */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}



.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 80px;   /* adjust if needed */
  width: auto;
}

.logo span {
  color: #fff;
  line-height: 1.1;
}

.logo strong {
  font-size: 40px;
  letter-spacing: 1px;
}

.logo small {
  font-size: 11px;
  color: #d4af37; /* golden like example */
}

.logo {
  margin-left:50px;   /* adjust as needed */
}




html {
  scroll-behavior: smooth;
}


.section {
  padding: 60px 20px;
}


@media (max-width: 768px) {

  .hero {
    height: 60vh;
    padding: 160px 20px 60px 20px;
  }

  .hero-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

}      