/* ---------- GLOBAL ---------- */
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background: url("images/scuba.jpg") 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 {
  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;
}

.company-name {
  color: yellow;
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}

.company-tag {
  color: white;
  font-size: 18px;
  margin-top: 4px;
}

.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;
}

/* ---------- MAIN CONTENT ---------- */
.main-content {
  padding: 60px 100px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 60px auto;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.text-section h1 {
  font-size: 34px;
  color: #002147;
}

.text-section h2 {
  font-size: 26px;
  color: #003366;
  margin-top: 20px;
}

.text-section h3 {
  font-size: 22px;
  color: #004080;
  margin-top: 15px;
}

.text-section p {
  font-size: 18px;
  color: #001a1a;
  margin-top: 10px;
  line-height: 1.6;
}

/* Extra spacing for Collaborate page paragraphs */
.text-section p {
  margin-bottom: 20px;
}
/* Ensure all content aligns left — override float shifts */
.text-section,
.text-section h1,
.text-section h2,
.text-section p {
  text-align: left !important;
}


/* Collaboration Image */
/* Reset legacy floats */
.collab-img {
  display: block;
  float: none !important;
  width: 500px;
  height: auto;
  margin: 18px 0 30px 0;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Force wrapper to position image left */
.image-wrapper {
  width: 100%;
  text-align: left;
}

/* Make sure following text aligns correctly */
.text-section p,
.text-section h2,
.text-section h3 {
  text-align: left;
  clear: both !important;
}

.motto {
  text-align: left;
  color: #002147;
  font-weight: bold;
  margin-top: 40px;
}

.closing {
  text-align: left;
  color: #001f3f;
  font-style: italic;
  font-size: 18px;
}

/* ---------- 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 { width: 90%; padding: 40px; }
  .collab-img { width: 80%; margin-top: 20px; }
}
