/* ---------- GLOBAL ---------- */
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background: url("images/bg2.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;
  gap: 15px;
  padding-left: 40px;
  margin-top: 10px;
}

.brand-logo {
  height: 80px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.company-name {
  color: yellow;
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}

.company-tag {
  color: 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: 20px; /* ✅ reduced gap to bring image closer to text */
}

.text-section {
  max-width: 1500px;
}

.text-section h1 {
  font-size: 28px;
  color: #001f3f;
}

.text-section h2 {
  font-size: 22px;
  color: #003366;
}

.text-section p {
  font-size: 18px;
  color: #001a1a;
  margin-top: 15px;
  line-height: 1.6;
}

.text-section a {
  color: darkolivegreen;
  font-weight: bold;
  text-decoration: none;
}

.text-section a:hover {
  color: magenta;
}

/* Profile Image */
.profile-img {
  width: 320px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  align-self: flex-start; /* ✅ aligns image top with name */
}

/* ---------- 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;
  }
  .profile-img {
    width: 80%;
    margin-top: 20px;
  }
}
