/* ---------- GLOBAL ---------- */
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background: url("images/bg1.jpeg") no-repeat center center fixed;
  background-size: cover;
  color: #001f3f;
}

/* ---------- HEADER ---------- */
.site-header {
  width: 100%;
}

.hero {
  background: url("images/hero.jpeg") no-repeat center center;
  background-size: cover;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

/* --- BRAND (Logo + Company + Slogan) --- */
.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;  /* ✅ logo + text aligned to the left side */
  gap: 15px;
  padding-left: 40px;           /* adds breathing space from page edge */
  margin-top: 10px;
}

.brand-logo {
  height: 80px;    /* ✅ controlled logo size */
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.company-name {
  color: yellow;   /* ✅ visible on hero background */
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}

.company-tag {
  color: white;    /* ✅ slogan in white */
  font-size: 18px;
  margin-top: 4px;
}

/* Navigation Buttons */
.navbar {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.nav-btn {
  background-color: #00bfff;
  color: white;
  border: 2px solid turquoise;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.nav-btn:hover {
  background-color: #008ecc;
}

/* ---------- BODY ---------- */
.main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  gap: 50px;
}

.text-section {
  max-width: 600px;
}

.text-section h1 {
  font-size: 30px;
  color: #001f3f;
}

.text-section h2 {
  font-size: 20px;
  color: #003366;
}

.text-section p {
  font-size: 18px;
  color: #001a1a;
  margin-top: 15px;
}

.laf-img {
  width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ---------- CIN STRIP ---------- */
.cin-strip {
  background-color: rgba(0, 0, 50, 0.8);
  text-align: center;
  color: white;
  font-size: 20px;
  padding: 15px 0;
}

/* ---------- FOOTER ---------- */
footer {
  background-color: #333;
  color: turquoise;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 20px 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero { height: 400px; }
  .brand-logo { height: 60px; }
  .company-name { font-size: 22px; }
  .company-tag { font-size: 18px; }
  .navbar { flex-wrap: wrap; gap: 8px; }
  .main-content { flex-direction: column; padding: 40px; text-align: center; }
  .laf-img { width: 80%; margin-top: 20px; }
}
