/* =========================================
   CONTACT PAGE — page-specific styles
   ========================================= */

/* Base typography (present on style.css too; keep here so page standalone rahe) */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Brand (page needs this visual weight) */
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

/* ---------- Hero (shared look, Contact content) ---------- */
.hero {
  background: url('../images/bg1.jpeg') no-repeat center center / cover;
  color: #fff;
  padding: 120px 0;
  position: relative;
  overflow: visible;
}
.hero .container { position: relative; z-index: 1; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 0;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
  opacity: .1;
}

/* Section spacing */
.py-5,
.section-padding {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

/* Primary button gradient (project-wide look, used here too) */
.btn-primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none; border-radius: 25px; padding: 12px 30px; transition: .3s all;
}
.btn-primary:hover {
  background: linear-gradient(45deg, #764ba2, #667eea);
  transform: scale(1.05);
}

/* Contact block spacing */
#loginPrompt { margin-bottom: 1rem; }

/* Form readability tweaks (over Bootstrap) */
.form-label { font-weight: 600; }
.form-control {
  border-radius: .6rem;
  box-shadow: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 .2rem rgba(102, 126, 234, .2);
}

/* Footer */
footer {
  background: #343a40;
  color: #fff;
  padding: 40px 0;
}
/* Follow Us icons spacing fix */
.ft-social {
  display: flex;
  gap: 14px;              /* icons ke beech proper spacing */
  margin-top: 10px;
}

.ft-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(170,195,255,.28);
  border-radius: 10px;
  color: #007bff;          /* same blue color */
  font-size: 18px;
  background: rgba(255,255,255,.06);
  transition: all .2s ease;
}

.ft-social a:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: #7c4dff;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

