/* ======== HERO SECTION ======== */
.page-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,37,64,0.85), rgba(10,37,64,0.65));
}

.hero-content {
  position: relative;
  color: white;
  z-index: 2;
}

.hero-badge {
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
}



/* ===== CONTACT GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
   align-items: stretch;
}

/* LEFT INFO BOX */
.contact-info {
  background: #f4f6f8;
  padding: 30px;
  border-radius: 16px;
}

.contact-desc {
  margin: 10px 0 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 22px;
  color: #0a2540;
}

/* SOCIAL ICONS */
.modern-social {
  margin-top: 20px;
}

.modern-social a {
  font-size: 20px;
  margin-right: 15px;
  color: #0a2540;
}

/* RIGHT FORM BOX */
.contact-box {
  background: white;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* FORM */
.modern-form {
  margin-top: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0a2540;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0a2540;
  background: white;
}

.full-width {
  grid-column: 1 / -1;
}

/* SUBMIT BUTTON */
.btn-submit {
  margin-top: 20px;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #0a2540, #144272);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(10,37,64,0.3);
}

/* MAP */
.map-container {
  margin-top: 30px;
  border-radius: 16px;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}




















/* ========== FOOTER (Home Consistency) ========== */
.footer {
  text-align: center;
  padding: 20px;
  background: #0a2540;
  color: white;
}





 /* ====================HEADER==================== */
         .header {    padding-top: 0;padding-bottom: 0; position: sticky;    top: 0;  height:70px;  z-index: 100; background: linear-gradient(135deg, #f8fafc 0%, #e9eff7 100%); 
             backdrop-filter: blur(8px);    -webkit-backdrop-filter: blur(8px);    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

        .nav-flex {  display:flex;    justify-content: space-between;    align-items: center;  padding: 5px 30px 10px 30px;}

    
        nav a {  color: #0a2540; font-size: 14px; font-weight: 400;  margin-left: 40px;   text-decoration: none;}

        nav a.active {        border-bottom: 2px solid #f9b233;    }            
      
        .logo-img {  height: 70px;  width: auto; image-rendering:-webkit-optimize-contrast;  image-rendering: crisp-edges;}
  




/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  color: #1d1d1f;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}