 
	  @media (prefers-color-scheme: dark) {
  body {
    background-attachment: ;ckground-color: #FFFFFF;
    color: #e0e0e0;
  }
}
.contact-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
  align-items: flex-start;
}

/* Compact Card Styles */
.form-card,
.info-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 24px;
  box-shadow: none;
  border: 1px solid #e0e0e0;
}

.form-card h3,
.info-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 16px;
  font-weight: 600;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}
	  .grid-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}

.info-card a {
  color: #003366;
  font-weight: 500;
  text-decoration: none;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.save-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
  filter: grayscale(40%);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.save-icon:hover {
  transform: scale(1.15);
  filter: grayscale(0%);
}

.vcard {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .form-card,
  .info-card {
    padding: 24px;
    border-radius: 16px;
  }
}
/* Flat style base */
.form-card form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Floating Label Group */
.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  color: #333;
  appearance: none;
  transition: border-color 0.3s ease;
	font-size: 14px;
  padding: 10px 12px;
  border-radius: 6px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #003366;
  outline: none;
  background-color: #fff;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-size: 14px;
  color: #777;
  background: transparent;
  transition: 0.2s ease all;
  pointer-events: none;
	  font-size: 13px;

}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #003366;
  background: #f9f9f9;
  padding: 0 4px;
}

/* File upload styling */
.file-upload input[type="file"] {
  border: 1px dashed #bbb;
  padding: 14px;
  border-radius: 6px;
  width: 100%;
  background-color: #f9f9f9;
  color: #003366;
  cursor: pointer;
}
.drop-zone {
  border: 2px dashed #ccc;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.drop-zone:hover {
  background-color: #f1f1f1;
}

.drop-zone.dragover {
  background-color: #e6f0ff;
  border-color: #003366;
}

.drop-zone p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.drop-zone input.drop-input {
  display: none;
}

/* Button */
button[type="submit"] {
  background-color: #003366;
  color: #fff;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
	padding: 12px;
  font-size: 15px;
  border-radius: 6px;
}
button[type="submit"]:hover {
  background-color: #01477c;
}

button .btn-loader {
  width: 16px;
  height: 16px;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form message */
.form-message {
  margin-top: 16px;
  padding: 12px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 14px;
}
.form-message.success {
  background-color: #e6f7ec;
  color: #217a3b;
}
.form-message.error {
  background-color: #fcebea;
  color: #b02a37;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .form-card form {
    gap: 18px;
  }
}
/* Map Card */
.map-card {
  margin: 50px 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
  box-shadow: 0 0 0 1px #e2e2e2;
}

/* Default Team Cards */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.team-card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  border: 1px solid #eee;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 0 1px #e2e2e2;
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card h4 {
  color: #003366;
  font-size: 18px;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* Small version of team-cards inside contact info (Forced Horizontal) */
.team-cards.small {
  margin-top: 20px;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 15px;
  justify-content: center;
}

.team-cards.small .team-card {
  flex: 0 0 150px;
  padding: 12px;
  font-size: 13px;
}

.team-cards.small .team-card h4 {
  font-size: 14px;
  margin-bottom: 6px;
}

.team-cards.small .team-card p {
  font-size: 12px;
  line-height: 1.4;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-header h4 {
  margin: 0;
  font-size: 15px;
  color: #003366;
}

.team-card .save-icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
  filter: grayscale(40%);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.team-card .save-icon:hover {
  transform: scale(1.15);
  filter: grayscale(0%);
}

/* 📱 Team cards stacked vertically on mobile */
@media (max-width: 768px) {
  .team-cards:not(.small) {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
  }

  .team-card {
    width: 100%;
    min-width: unset;
    padding: 18px;
    border-radius: 12px;
  }
}

}

.breadcrumb {
  font-size: 14px;
  margin: 20px 30px;
  color: #666;
}
.breadcrumb a {
  color: #003366;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
/* ===========================
   📱 Enhanced Mobile Styles
   =========================== */

/* Extra padding & spacing on mobile */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 20px;
    margin: 20px 15px;
  }

  .form-card,
  .info-card {
    max-width: 100%;
    padding: 20px;
    border-radius: 14px;
  }

  .form-row {
    flex-direction: column;
    gap: 16px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 15px;
    padding: 12px;
  }

  button[type="submit"] {
    width: 100%;
    font-size: 15px;
    padding: 14px;
    border-radius: 8px;
  }

  /* Info card text for readability */
  .info-card p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Team cards - vertical stack on small devices */
@media (max-width: 768px) {
  .team-cards:not(.small) {
    flex-direction: column;
    gap: 16px;
  }

  .team-card {
    padding: 18px;
    border-radius: 14px;
    text-align: left;
  }

  .team-card h4 {
    font-size: 16px;
  }
}

/* Keep "small" team-cards scrollable row */
@media (max-width: 600px) {
  .team-cards.small {
    gap: 10px;
    padding-bottom: 10px;
  }
  .team-cards.small .team-card {
    min-width: 160px;
  }
}

/* Map card tweaks */
@media (max-width: 768px) {
  .map-card {
    margin: 30px 0;
    border-radius: 12px;
  }
  .map-card iframe {
    height: 240px;
  }
}

/* Breadcrumb spacing */
@media (max-width: 600px) {
  .breadcrumb {
    margin: 10px 15px;
    font-size: 13px;
  }
}

/* 📱 Center team cards vertically aligned in mobile */
@media (max-width: 768px) {
  .team-cards,
  .team-cards.small {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;   /* ⬅ centers cards horizontally */
    justify-content: center !important;
    gap: 16px !important;
    overflow: visible !important;
  }

  .team-cards .team-card,
  .team-cards.small .team-card {
    width: 90% !important;   /* ⬅ slightly inset from screen edges */
    max-width: 400px;        /* ⬅ prevents card from being too wide */
    min-width: unset !important;
  }
}
/* 📱 Center form + info card in mobile */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center !important;   /* ⬅ centers the children */
    justify-content: center !important;
    gap: 20px;
  }

  .form-card,
  .info-card {
    width: 90% !important;    /* inset from edges */
    max-width: 500px;         /* keep a nice readable width */
    margin: 0 auto;           /* center align */
  }
}
/* 🔹 Social Media Box inside Contact Info */
.social-box {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  background: #f1f5f9; /* light grey-blue */
  text-align: center;
  border: 1px solid #e0e0e0;
}

.social-box h4 {
  margin-bottom: 12px;
  font-size: 15px;
  color: #003366;
  font-weight: 600;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: grayscale(30%);
}

.social-icons a img:hover {
  transform: scale(1.2);
  filter: grayscale(0%);
}

/* 📱 Mobile tweak */
@media (max-width: 768px) {
  .social-box {
    padding: 12px;
  }
  .social-icons a img {
    width: 24px;
    height: 24px;
  }
}

.support-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 50px auto;
  flex-wrap: wrap;
}

.support-card {
  width: 320px; /* fixed medium size */
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.support-card .card-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.support-card .badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #002147;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.support-card h4 {
  margin: 12px 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: #002147;
}

.support-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 18px;
}

.support-card .chat-link {
  font-weight: 600;
  color: #c00;
  text-decoration: none;
}

.support-card .chat-link:hover {
  text-decoration: underline;
}
.support-card .card-icon {
  margin-bottom: 12px;
}

.support-card .card-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
