/* =========================
   Contact us/Head Office Page
========================= */



/* Banner */
.page-banner{
  position: relative;
  height: 200px;
  overflow: hidden;
}

.page-banner-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-banner-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,58,93,0.85), rgba(255,107,53,0.70));
  display: flex;
  align-items: center;
}

.page-banner-title{
  color: #fff;
  font-weight: 900;
  margin: 0;
  font-size: 42px;
}

.page-breadcrumb{
  margin-top: 10px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.page-breadcrumb a{
  color: #fff;
  text-decoration: none;
}

.page-breadcrumb a:hover{
  opacity: 0.9;
}

.page-breadcrumb span{
  margin: 0 6px;
}


/* =========================
   Contact Section
========================= */
.contact-section{
  padding: 70px 0;
  background: #f4f8fb;
}

.contact-card{
  position: relative;
  height: 100%;
  padding: 35px 25px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.55)
  );

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);

  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
}

.contact-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 28px 65px rgba(0,0,0,0.18);
  border-color: rgba(255,107,53,0.4);
}

.contact-icon{
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: linear-gradient(135deg, #ff6b35, #ff944d);
  color: #fff;
  font-size: 26px;

  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.contact-card h5{
  font-weight: 900;
  margin-bottom: 10px;
  color: #0E3A5D;
}

.contact-card p{
  font-size: 14px;
  font-weight: 700;
  color: rgba(11,19,32,0.75);
  line-height: 1.6;
}

.social-icons{
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

.social-icons a{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: #0E3A5D;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover{
  background: #ff6b35;
  transform: translateY(-3px);
}

/* Watermark icon */
.watermark-icon{
  position: absolute;
  right: -15px;
  bottom: -20px;
  font-size: 90px;
  color: rgba(14,58,93,0.08);
  pointer-events: none;
}

/* =========================
   Map Section
========================= */
.map-section{
  background: #eef4f8;
}

.map-section iframe{
  width: 100%;
  height: 420px;
  border: none;
}


/* =========================
   District Office Section
========================= */
.district-office-section{
  padding: 70px 0;
  background: #f4f8fb;
}

.section-header{
  text-align: center;
  margin-bottom: 30px;
}

.section-header h3{
  font-weight: 900;
  color: #0E3A5D;
}

.section-header p{
  font-weight: 600;
  font-size: 14px;
  color: rgba(11,19,32,0.7);
}

/* =========================
   Table Card
========================= */
.table-card{
  position: relative;
  padding: 25px;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.85),
    rgba(255,255,255,0.55)
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: 0 22px 55px rgba(0,0,0,0.14);
  overflow: hidden;
}

/* Watermark */
.table-watermark{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 140px;
  font-weight: 900;
  letter-spacing: 8px;
  color: rgba(14,58,93,0.05);
  pointer-events: none;
  z-index: 0;
}

/* =========================
   District Table
========================= */
.district-table{
  position: relative;
  z-index: 1;
  width: 100%;
  font-size: 13px;
}

.district-table thead th{
  background: linear-gradient(135deg, #0E3A5D, #143f63);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  padding: 14px;
  border: none;
}

.district-table tbody td{
  padding: 12px;
  vertical-align: middle;
  font-weight: 600;
  color: #0B1320;
  background: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.district-table tbody tr{
  transition: 0.3s ease;
}

/* Hover Effect */
.district-table tbody tr:hover{
  background: linear-gradient(
    135deg,
    rgba(255,107,53,0.08),
    rgba(14,58,93,0.05)
  );
  transform: scale(1.005);
}

/* Email */
.district-table a{
  color: #ff6b35;
  text-decoration: none;
  font-weight: 700;
}

.district-table a:hover{
  text-decoration: underline;
}

/* Mobile scroll hint */
.table-responsive{
  border-radius: 14px;
}

