/* ==================================================
   WHY CHOOSE PAGE - COMMON + HERO SECTION
================================================== */

:root {
  --why-primary: #1769f5;
  --why-primary-dark: #08295c;
  --why-heading: #09275a;
  --why-text: #4b5563;
  --why-light: #f3f8ff;
  --why-white: #ffffff;
  --why-border: #e4ecf7;
  --why-shadow: 0 18px 45px rgba(9, 39, 90, 0.08);
}

body.why-page {
  margin: 0;
  background: #ffffff;
  color: var(--why-text);
  font-family: "Poppins", Arial, sans-serif;
}

.why-page .main {
  overflow: hidden;
}

.why-page img {
  max-width: 100%;
  display: block;
}

.why-page a {
  text-decoration: none;
}

/* ===============================
   HERO SECTION
================================ */

.why-hero {
  position: relative;
  padding: 58px 0 62px;
  background:
    radial-gradient(circle at 18% 25%, rgba(23, 105, 245, 0.10), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #edf6ff 55%, #eaf7ff 100%);
  overflow: hidden;
}

.why-hero::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  right: 10%;
  top: 42%;
  border-radius: 50%;
  background: #6a9df7;
  animation: whyFloat 3s ease-in-out infinite;
}

.why-hero::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 4px;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: linear-gradient(90deg, var(--why-primary), #09bde8);
}

.why-hero .container {
  position: relative;
  z-index: 2;
}

.why-hero h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--why-heading);
  letter-spacing: -0.8px;
}

.why-hero p {
  max-width: 820px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.75;
  color: #566274;
}

/* reveal animation common */

.why-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.why-reveal.why-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes whyFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===============================
   HERO RESPONSIVE
================================ */

@media (max-width: 991px) {
  .why-hero {
    padding: 50px 0 56px;
  }

  .why-hero p {
    font-size: 15.5px;
  }
}

@media (max-width: 575px) {
  .why-hero {
    padding: 42px 0 50px;
  }

  .why-hero h1 {
    font-size: 29px;
  }

  .why-hero p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .why-hero::after {
    bottom: 26px;
    width: 62px;
  }
}





















/* ==================================================
   SKG MEDIHUB CONTACT SECTION
   Fully namespaced to avoid header conflicts
================================================== */

.skg-contact-section {
  position: relative;
  padding: 35px 0;
  background: #f7f9fc;
  overflow: hidden;
}

/* Unique container: header ke .container ko affect nahi karega */

.skg-contact-container {
  width: min(90%, 1250px);
  margin: 0 auto;
}

/* ==================================================
   MAIN LAYOUT
================================================== */

.skg-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* ==================================================
   LEFT SIDE
================================================== */

.skg-contact-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ==================================================
   CONTACT INFORMATION BOX
================================================== */

.skg-contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid #edf1f6;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(8, 27, 51, 0.06);
}

/* ==================================================
   INFORMATION ROW
================================================== */

.skg-contact-info-row {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  padding: 14px;
  border: 1px solid #ededed;
  border-radius: 14px;
  background: #ffffff;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.skg-contact-info-row:hover {
  transform: translateY(-3px);
  border-color: #2563eb;
  background: #fafdff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.1);
}

.skg-contact-address-row {
  align-items: flex-start;
}

/* ==================================================
   INFORMATION ICON
================================================== */

.skg-contact-info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(37, 99, 235, 0.1);
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    background 0.35s ease;
}

.skg-contact-info-icon i {
  color: #2563eb;
  font-size: 18px;
  transition: color 0.35s ease;
}

.skg-contact-info-row:hover .skg-contact-info-icon {
  transform: rotate(7deg) scale(1.06);
  background: #2563eb;
}

.skg-contact-info-row:hover .skg-contact-info-icon i {
  color: #ffffff;
}

/* ==================================================
   INFORMATION CONTENT
================================================== */

.skg-contact-info-content {
  flex: 1;
  min-width: 0;
}

.skg-contact-info-content h4 {
  margin: 0;
  color: #081b33;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.skg-contact-info-content p {
  margin: 5px 0 0;
  color: #555f6e;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 400;
}

.skg-contact-info-content a {
  color: #606a78;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}

.skg-contact-info-content a:hover {
  color: #2563eb;
}

/* ==================================================
   GOOGLE MAP
================================================== */

.skg-contact-map {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(8, 27, 51, 0.06);
}

.skg-contact-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

/* ==================================================
   RIGHT FORM CARD
================================================== */

.skg-contact-form-card {
  height: 100%;
  padding: 28px;
  border: 1px solid #edf1f6;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(8, 27, 51, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* ==================================================
   FORM HEADER
================================================== */

.skg-contact-form-header {
  margin-bottom: 22px;
}

.skg-contact-form-header > span {
  display: block;
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: 1px;
}

.skg-contact-form-header p {
  margin: 0;
  color: #626b78;
  font-size: 15px;
  line-height: 1.75;
}

/* ==================================================
   CONTACT FORM
================================================== */

.skg-contact-form {
  width: 100%;
}

.skg-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
  row-gap: 18px;
}

/* ==================================================
   FORM GROUP
================================================== */

.skg-contact-form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.skg-contact-form-group label {
  margin-bottom: 9px;
  color: #081b33;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.skg-contact-form-group input,
.skg-contact-form-group select,
.skg-contact-form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  outline: none;
  background: #fafafa;
  color: #263244;
  font-family: inherit;
  font-size: 15px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.skg-contact-form-group input::placeholder,
.skg-contact-form-group textarea::placeholder {
  color: #939aa5;
}

.skg-contact-form-group input:hover,
.skg-contact-form-group select:hover,
.skg-contact-form-group textarea:hover {
  border-color: rgba(37, 99, 235, 0.65);
}

.skg-contact-form-group input:focus,
.skg-contact-form-group select:focus,
.skg-contact-form-group textarea:focus {
  border-color: #2563eb;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.skg-contact-form-group select {
  cursor: pointer;
}

/* ==================================================
   TEXTAREA
================================================== */

.skg-contact-textarea-group {
  margin-top: 18px;
}

.skg-contact-textarea-group textarea {
  height: 160px;
  min-height: 120px;
  resize: vertical;
}

/* ==================================================
   SUBMIT BUTTON
================================================== */

.skg-contact-submit-btn {
  width: 100%;
  margin-top: 22px;
  padding: 16px 22px;
  border: 0;
  border-radius: 10px;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2563eb;
  color: #ffffff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.2);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.skg-contact-submit-btn i {
  font-size: 15px;
  transition: transform 0.35s ease;
}

.skg-contact-submit-btn:hover {
  transform: translateY(-3px);
  background: #081b33;
  box-shadow: 0 16px 34px rgba(8, 27, 51, 0.22);
}

.skg-contact-submit-btn:hover i {
  transform: translateX(6px);
}

.skg-contact-submit-btn:active {
  transform: translateY(-1px);
}

/* ==================================================
   RESPONSIVE - TABLET/LAPTOP
================================================== */

@media (max-width: 1100px) {
  .skg-contact-layout {
    grid-template-columns: 1fr;
  }

  .skg-contact-left,
  .skg-contact-form-card {
    height: auto;
  }

  .skg-contact-map iframe {
    height: 300px;
  }
}

/* ==================================================
   RESPONSIVE - TABLET/MOBILE
================================================== */

@media (max-width: 768px) {
  .skg-contact-section {
    padding: 35px 0;
  }

  .skg-contact-container {
    width: min(94%, 680px);
  }

  .skg-contact-layout {
    gap: 22px;
  }

  .skg-contact-form-card {
    padding: 22px;
  }

  .skg-contact-form-header > span {
    font-size: 28px;
  }

  .skg-contact-form-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .skg-contact-form-grid {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .skg-contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .skg-contact-info-icon i {
    font-size: 16px;
  }

  .skg-contact-info-content h4 {
    font-size: 16px;
  }

  .skg-contact-info-content p {
    font-size: 13px;
    line-height: 1.6;
  }

  .skg-contact-info-content a {
    font-size: 14px;
  }

  .skg-contact-textarea-group textarea {
    height: 140px;
  }
}

/* ==================================================
   RESPONSIVE - SMALL MOBILE
================================================== */

@media (max-width: 480px) {
  .skg-contact-section {
    padding: 28px 0;
  }

  .skg-contact-container {
    width: 92%;
  }

  .skg-contact-info-box {
    padding: 12px;
    border-radius: 16px;
  }

  .skg-contact-info-row {
    gap: 11px;
    padding: 12px;
  }

  .skg-contact-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .skg-contact-info-content h4 {
    font-size: 15px;
  }

  .skg-contact-info-content p {
    font-size: 12.5px;
  }

  .skg-contact-info-content a {
    display: block;
    margin-top: 3px;
    font-size: 13.5px;
  }

  .skg-contact-map iframe {
    height: 230px;
  }

  .skg-contact-form-card {
    padding: 18px;
    border-radius: 16px;
  }

  .skg-contact-form-header {
    margin-bottom: 18px;
  }

  .skg-contact-form-header > span {
    font-size: 24px;
  }

  .skg-contact-form-group label {
    font-size: 14px;
  }

  .skg-contact-form-group input,
  .skg-contact-form-group select,
  .skg-contact-form-group textarea {
    padding: 13px 14px;
    font-size: 14px;
  }

  .skg-contact-textarea-group textarea {
    height: 120px;
  }

  .skg-contact-submit-btn {
    padding: 14px;
    font-size: 15px;
  }
}