* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.header {
  background: #0f172a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: bold;
}

.logo img {
  height: 40px;
}

nav a {
  margin-left: 20px;
  color: #cbd5f5;
}

.hero {
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.slogan {
  font-size: 20px;
  margin: 10px 0;
  color: #a7f3d0;
}

.hero-title {
  font-size: 60px; 
  font-weight: 800;
  margin-bottom: 15px;
}



.hero-subtitle {
  font-size: 35px;
  font-weight: 400;
  margin-bottom: 25px;
  color: #a7f3d0;

  }







.hero-text {
  max-width: 700px;
  margin: 20px auto;
  font-size: 18px; 
  line-height: 1.8;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  margin: 10px;
  display: inline-block;
}

.primary {
  background: #22c55e;
  color: #fff;
}

.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.section {
  padding: 70px 0;
}

.light {
  background: #f8fafc;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}


.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}


.why {
  list-style: none;
  padding: 0;
}

.why li {
  padding-left: 25px;
  margin-bottom: 10px;
  position: relative;
}

.why li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
}

.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 50px 0 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}


.stars {
  color: #FFD700; /* Gold color */
  font-size: 18px;
  margin-top: 10px;
}

.hero {
  background: 
    linear-gradient(135deg, rgba(15,23,42,0.7), rgba(30,58,138,0.7)), 
    url('hero-bg.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}



/* About Us / Meet the Management Page */
.cards.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-card .role {
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 8px;
}

.team-card .bio {
  font-size: 16px;
  line-height: 1.5;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}


/* Mobile responsiveness--This prevents images from feeling too tall on phones. */
@media (max-width: 768px) {    
  .team-card img {
    height: 220px;
  }
}

.who-we-are {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.who-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
}

.who-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: #0f172a;
}

.who-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 15px;
}


/* Mobile responsiveness--This prevents images from feeling too tall on phones. */
@media (max-width: 768px) {
  .who-we-are {
    grid-template-columns: 1fr;
  }

  .who-image img {
    height: 220px;
  }

  .who-content h2 {
    font-size: 30px;
  }
}

.brand-name {
  font-weight: 900;       /* extra bold */
  font-size: 18px;        /* bigger than paragraph */
  color: black;        
}
