/* ---------- GLOBAL ---------- */
body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  background: url("images/bg4.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;
}

/* 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;
}

/* Center Microsoft Form */
.form-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 40px 0 80px 0;
}

.form-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding: 40px 0 ; 
  text-align: center;
}
.form-box iframe {
  width: 80%;
  max-width:640px;
  border: none;
  border-radium: 10px;
  box-shadow:0 8px 20px rgba(0,0,0,0.25);
}
.privacy-note {
  font-size: 16px;
  color: #002244;
  background: rgba(255,255,255,0.6);
  padding: 15px 25px;
  border-radius: 8px;
  max-width: 700px;
  margin: 20px auto 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  line-height: 1.6;
}



/* ---------- ADDRESS ---------- */
.address-block {
  background-color: rgba(255, 255, 255, 0.1);
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  color: #001f3f;
}

/* ---------- 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; }
}
