/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: #fff;
  color: #222;
}

/* ✅ TOP BAR */
.top-bar {
  background: #0a1f3d;
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 0;
}

/* ✅ HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  background: url('images/true-logo5.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ✅ NAVBAR (SOLID NAVY) */
.navbar {
  background: #002855;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 10 ;
}
.logo img {
  height: 110px;
  width: 200px;
  border-radius: 8px; /* softens edges */
  background-color: #0a1f3d; /* same as navbar */
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 10px;
  margin-left: auto ;
}

.nav-links li {
  margin-left: 0px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #00b3b3;
}
/* ✅ HERO CONTENT (now top-centered overlay) */
.hero-content {
  position: absolute;
  top: 25%; /* pushes content down a bit from the top */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,31,61,0.6) 0%, rgba(10,31,61,0.1) 100%);
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.hero-content h1 span {
  color: #00b3b3;
}

.hero-content p {
  font-size: 1.2rem;
  margin: 15px 0 25px;
}

.btn {
  background: #00b3b3;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #009999;
}


/* ✅ RESPONSIVE MENU */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row !important;       /* ensures logo + links remain in one row */
    justify-content: space-between !important; /* space between logo and links */
    align-items: flex-start;
  }
  .nav-links {
   flex-direction: column !important;    /* links stacked vertically */
    align-items: flex-end !important;     /* align links to right */
    gap: 10px;
    margin: 0;
    padding: 0;
  }
.nav-links li {
     text-align: right !important;
    width: auto;
  }
}

/* ✅ SHOWCASE SECTION */
.showcase {
  position: relative;
  background: url('images/true-logo2.jpg') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-overlay {
  position: absolute;
  top:15%;
  left:50%;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,31,61,0.4) 0%, rgba(10,31,61,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-text {
  color: #fff;
  text-align: center;
  max-width: 700px;
  z-index: 2;
  padding: 20px;
  
}

.showcase-text h2 {
  color: #002855;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.showcase-text p {
	color: #002855;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 30px;
}

.btn-light {
  background: #fff;
  color: #0a1f3d;
  padding: 6px 12px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
 
}

.btn-light:hover {
  background: #e6e6e6;
}

/* ✅ ABOUT SECTION */
.about {
  text-align: center;
  padding: 60px 20px;
}

.about h2 {
  color: #0a1f3d;
  margin-bottom: 20px;
}

.about p {
  max-width: 800px;
  margin: 10px auto;
  color: #555;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* ✅ CTA SECTION */
.cta {
  background: #00b3b3;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta h3 {
	margin-top: 15px;
	margin-bottom: 15px;
	color: #002855;
	font-size: 1.5rem;
}
.cta p {
	color: #002855;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.cta .btn-light {
  background: #fff;
  color: #00b3b3;
}

/* ✅ FOOTER */
footer {
  background: #0a1f3d;
  color: #fff;
  text-align: center;
  padding: 25px 0;
}

footer .disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 5px;
}

