:root {
  --bg: #07111f;
  --bg2: #0b1d33;
  --card: rgba(255, 255, 255, 0.1);
  --card2: rgba(255, 255, 255, 0.16);
  --text: #f8fbff;
  --muted: #bed0e8;
  --brand: #20d3a2;
  --brand2: #55a7ff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(32, 211, 162, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(85, 167, 255, 0.25), transparent 30%),
    linear-gradient(135deg, var(--bg), var(--bg2));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  padding: 12px 18px;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #062018;
  background: linear-gradient(135deg, var(--brand), #d3fff2);
  box-shadow: 0 10px 26px rgba(32, 211, 162, 0.25);
}

.brand-text {
  font-size: 16px;
  letter-spacing: 0.7px;
  font-weight: 700;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.nav-links a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #062018;
  background: var(--brand);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 24px;
  cursor: pointer;
}

.hero-page {
  max-width: 1180px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 70px 18px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  gap: 28px;
}

.hero-content {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,0.13), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-content h1,
.inner-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -2px;
}

.hero-text,
.inner-hero p,
.about-card p,
.service-card p,
.contact-card p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 720px;
  font-size: 17px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #062018;
  background: var(--brand);
  box-shadow: 0 14px 32px rgba(32, 211, 162, 0.26);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
}

.login-panel {
  min-height: 430px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(32,211,162,0.15), rgba(85,167,255,0.12)),
    rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.login-panel::before {
  content: "LOGIN / PLATFORM CONTAINER";
  position: absolute;
  inset: 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
}

.stats-section {
  max-width: 1180px;
  margin: -18px auto 0;
  padding: 0 18px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card,
.service-card,
.about-card,
.contact-card,
.map-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.stat-card {
  padding: 20px;
}

.stat-card strong {
  display: block;
  font-size: 28px;
  color: var(--white);
}

.stat-card span {
  color: var(--muted);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 18px;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  padding: 24px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 26px;
  background: rgba(255,255,255,0.12);
}

.slider-wrap {
  max-width: 1180px;
  margin: 0 auto 70px;
  padding: 0 18px;
}

.slider-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.08);
}

.slides {
  position: relative;
  height: 340px;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0,0,0,0.35);
  font-size: 34px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.slider-btn.prev {
  left: 14px;
}

.slider-btn.next {
  right: 14px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 0;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  cursor: pointer;
}

.slider-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--brand);
}

.inner-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 18px 42px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  padding-top: 10px;
}

.about-card {
  padding: 26px;
}

.about-card.big {
  grid-row: span 2;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding-top: 10px;
}

.contact-card {
  padding: 28px;
}

.map-card {
  min-height: 420px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(1.1) contrast(1.05);
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero-page,
  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .hero-page {
    min-height: auto;
    padding-top: 46px;
  }

  .login-panel {
    min-height: 300px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 10px;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 10px;
    right: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 12px;
    background: rgba(7,17,31,0.96);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    border-radius: 14px;
  }

  .brand-text {
    font-size: 13px;
  }

  .hero-content {
    padding: 24px;
  }

  .hero-content h1,
  .inner-hero h1 {
    letter-spacing: -1px;
  }

  .stats-section,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .slides {
    height: 240px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .hero-page,
  .section,
  .slider-wrap,
  .inner-hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}


/* Clean About + Contact additions */
.small-actions { margin-top: 18px; }
.about-clean { align-items: stretch; }
.profile-card h2 { font-size: clamp(26px, 3vw, 38px); }
.mini-tags { display:flex; flex-wrap:wrap; gap:10px; margin-top:20px; }
.mini-tags span { padding:8px 12px; border-radius:999px; background:rgba(255,255,255,0.11); color:var(--muted); font-weight:800; font-size:13px; }
.icon-card .service-icon { margin-bottom: 14px; }
.clean-info-section { padding-top: 26px; }
.info-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:18px; }
.info-card { padding:26px; border:1px solid rgba(255,255,255,0.12); border-radius:var(--radius); background:rgba(255,255,255,0.09); box-shadow:0 18px 40px rgba(0,0,0,0.18); }
.info-card p { color:var(--muted); line-height:1.75; }
.full-card { margin-top:18px; }
.notice-card { border-color: rgba(32,211,162,0.35); background: rgba(32,211,162,0.10); }
.contact-clean { align-items:start; }
.contact-side { display:grid; gap:18px; }
.contact-form { display:grid; gap:10px; margin-top:18px; }
.contact-form label { color:var(--white); font-weight:800; font-size:14px; }
.contact-form input, .contact-form textarea { width:100%; border:1px solid rgba(255,255,255,0.15); border-radius:16px; padding:14px 15px; color:var(--white); background:rgba(255,255,255,0.08); outline:none; font:inherit; }
.contact-form input:focus, .contact-form textarea:focus { border-color:rgba(32,211,162,0.75); box-shadow:0 0 0 4px rgba(32,211,162,0.12); }
.contact-form textarea { resize:vertical; min-height:130px; }
.contact-form button { border:0; cursor:pointer; margin-top:6px; }
.form-note { margin:18px 0 0; font-size:14px; }
.direct-list { display:grid; gap:10px; margin:18px 0 22px; }
.direct-list a { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:14px 16px; border-radius:18px; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.12); font-weight:900; }
.direct-list a:hover { background:rgba(32,211,162,0.16); border-color:rgba(32,211,162,0.36); }
.compact-map, .compact-map iframe { min-height:280px; }
@media (max-width: 980px) { .info-grid { grid-template-columns:1fr; } }
@media (max-width: 420px) { .info-card, .contact-card, .about-card { padding:20px; } }

/* Index page: Gajanand Consultancy content */
.gajanand-hero .hero-content h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.hero-chip-row span,
.soft-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.hero-chip-row span:first-child {
  color: #f8d46b;
}

.vision-line {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-title-row h2 {
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 0;
}

.overview-section {
  padding-top: 54px;
}

.overview-text {
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.overview-text p,
.light-card p,
.workflow-step p {
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.overview-text p:last-child,
.light-card p:last-child,
.workflow-step p:last-child {
  margin-bottom: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.light-card {
  background: rgba(255,255,255,0.085);
}

.clean-list {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.85;
}

.clean-list li::marker {
  color: var(--brand);
}

.workflow-section {
  padding-top: 34px;
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.workflow-step > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #062018;
  background: var(--brand);
  font-weight: 900;
}

.workflow-step h3 {
  margin-bottom: 6px;
  font-size: 17px;
}

@media (max-width: 980px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-chip-row span,
  .soft-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .workflow-step {
    grid-template-columns: 40px 1fr;
    padding: 15px;
  }

  .workflow-step > span {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
}

/* Full width layout update */
body {
  overflow-x: hidden;
}

.topbar,
.hero-page,
.stats-section,
.section,
.slider-wrap,
.inner-hero,
.footer {
  width: 100%;
  max-width: none;
}

.site-header {
  padding-left: 18px;
  padding-right: 18px;
}

.topbar,
.hero-page,
.stats-section,
.section,
.slider-wrap,
.inner-hero,
.footer {
  padding-left: 24px;
  padding-right: 24px;
}

.hero-page {
  grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.6fr);
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.12);
}

@media (max-width: 980px) {
  .hero-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .topbar,
  .hero-page,
  .stats-section,
  .section,
  .slider-wrap,
  .inner-hero,
  .footer {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Good look update: Send Message card */
.message-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(32, 211, 162, 0.22);
  background:
    radial-gradient(circle at 12% 8%, rgba(32, 211, 162, 0.22), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(85, 167, 255, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055));
  box-shadow: 0 26px 70px rgba(0,0,0,0.28);
}

.message-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.20), transparent 24%, transparent 70%, rgba(32,211,162,0.12));
}

.message-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 28px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(7,17,31,0.24);
}

.message-card-top h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.8px;
}

.message-card-top p:last-child {
  margin-bottom: 0;
}

.message-icon {
  width: 58px;
  min-width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 28px;
  background: linear-gradient(135deg, var(--brand), #d3fff2);
  box-shadow: 0 18px 34px rgba(32,211,162,0.25);
}

.modern-form {
  position: relative;
  z-index: 1;
  padding: 22px 28px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field-box {
  display: grid;
  gap: 8px;
}

.full-field,
.send-btn,
.stylish-note {
  grid-column: 1 / -1;
}

.message-card .contact-form label {
  color: rgba(255,255,255,0.92);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.message-card .contact-form input,
.message-card .contact-form textarea {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(7,17,31,0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.message-card .contact-form input::placeholder,
.message-card .contact-form textarea::placeholder {
  color: rgba(190,208,232,0.72);
}

.message-card .contact-form input:focus,
.message-card .contact-form textarea:focus {
  background: rgba(7,17,31,0.48);
  border-color: rgba(32,211,162,0.9);
  box-shadow: 0 0 0 4px rgba(32,211,162,0.13), inset 0 1px 0 rgba(255,255,255,0.08);
}

.send-btn {
  width: 100%;
  min-height: 54px;
  margin-top: 8px;
  border-radius: 18px;
  justify-content: space-between;
  padding: 14px 18px 14px 22px;
  font-size: 16px;
}

.send-btn b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(7,17,31,0.22);
}

.stylish-note {
  position: relative;
  z-index: 1;
  margin: 18px 28px 28px;
  padding: 14px 16px;
  border: 1px solid rgba(32,211,162,0.24);
  border-radius: 18px;
  background: rgba(32,211,162,0.09);
  color: rgba(255,255,255,0.82) !important;
}

@media (max-width: 720px) {
  .message-card-top {
    padding: 22px 20px 16px;
  }

  .modern-form {
    grid-template-columns: 1fr;
    padding: 20px 20px 0;
  }

  .stylish-note {
    margin: 16px 20px 22px;
  }

  .message-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 18px;
    font-size: 24px;
  }
}

/* Form fix v2: clean Send Message form */
.contact-layout.contact-clean {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 22px;
}

.message-card {
  min-width: 0;
}

.modern-form {
  margin-top: 0;
  padding: 24px 28px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.modern-form .form-row {
  display: grid;
  gap: 16px;
  width: 100%;
}

.modern-form .form-row.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modern-form .field-box {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.message-card .modern-form label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.95);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.25px;
  line-height: 1.2;
}

.message-card .modern-form label span {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255,255,255,0.10);
  font-size: 13px;
}

.message-card .modern-form input,
.message-card .modern-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  background: rgba(4,13,25,0.58);
  outline: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 10px 24px rgba(0,0,0,0.12);
}

.message-card .modern-form textarea {
  min-height: 142px;
  resize: vertical;
}

.message-card .modern-form input::placeholder,
.message-card .modern-form textarea::placeholder {
  color: rgba(190,208,232,0.72);
  font-weight: 500;
}

.message-card .modern-form input:hover,
.message-card .modern-form textarea:hover {
  border-color: rgba(255,255,255,0.28);
}

.message-card .modern-form input:focus,
.message-card .modern-form textarea:focus {
  border-color: rgba(32,211,162,0.95);
  background: rgba(4,13,25,0.72);
  box-shadow: 0 0 0 4px rgba(32,211,162,0.14), inset 0 1px 0 rgba(255,255,255,0.08);
}

.message-card .send-btn {
  width: 100%;
  min-height: 56px;
  margin-top: 2px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #041d16;
  background: linear-gradient(135deg, #20d3a2, #92ffe2);
  box-shadow: 0 18px 34px rgba(32,211,162,0.26);
}

.message-card .send-btn span {
  font-size: 16px;
}

.message-card .send-btn b {
  width: 30px;
  height: 30px;
  background: rgba(4,29,22,0.12);
}

.message-card .send-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(32,211,162,0.32);
}

.stylish-note {
  margin: 18px 28px 28px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .contact-layout.contact-clean {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .modern-form,
  .message-card-top {
    padding-left: 18px;
    padding-right: 18px;
  }

  .modern-form .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .message-card .modern-form input,
  .message-card .modern-form textarea {
    min-height: 50px;
    font-size: 14px;
  }

  .stylish-note {
    margin-left: 18px;
    margin-right: 18px;
  }
}

/* FINAL FIX: Contact Send Message form clean alignment */
.message-card .modern-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  padding: 24px 28px 0 !important;
  margin-top: 0 !important;
}

.message-card .modern-form .form-row.two-col {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
}

.message-card .modern-form .field-box {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-width: 0 !important;
  width: 100% !important;
}

.message-card .modern-form .full-field,
.message-card .modern-form .send-btn {
  grid-column: 1 / -1 !important;
}

.message-card .modern-form label {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  white-space: normal !important;
}

.message-card .modern-form label span {
  width: 22px !important;
  height: 22px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 8px !important;
  background: rgba(255,255,255,0.10) !important;
  font-size: 13px !important;
}

.message-card .modern-form input,
.message-card .modern-form textarea {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  min-height: 52px !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  color: #ffffff !important;
}

.message-card .modern-form textarea {
  min-height: 145px !important;
}

.message-card .modern-form .send-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 56px !important;
  margin-top: 4px !important;
}

@media (max-width: 760px) {
  .message-card .modern-form,
  .message-card .modern-form .form-row.two-col {
    grid-template-columns: 1fr !important;
  }

  .message-card .modern-form {
    padding: 20px 18px 0 !important;
    gap: 15px !important;
  }
}


/* Login page embed in default.php platform container */
.login-panel.has-login {
  min-height: 640px;
  padding: 0;
  border-style: solid;
  border-color: rgba(255,255,255,0.18);
  background: #f6f8fb;
  overflow: hidden;
}

.login-panel.has-login::before {
  content: none;
}

.platform-login-frame {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
  background: #f6f8fb;
}

@media (max-width: 980px) {
  .login-panel.has-login,
  .platform-login-frame {
    min-height: 680px;
    height: 680px;
  }
}

@media (max-width: 576px) {
  .login-panel.has-login,
  .platform-login-frame {
    min-height: 760px;
    height: 760px;
  }
}


/* Direct PHP include login inside #platfrom — no iframe */
.login-panel.has-login {
  min-height: auto !important;
  height: auto !important;
  padding: 10px !important;
  background: #f6f8fb !important;
  overflow: visible !important;
}
.login-panel.has-login .gc-login {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}
.login-panel.has-login .gc-login .wrap {
  max-width: none;
  padding: 0;
}
@media (max-width: 980px) {
  .login-panel.has-login {
    min-height: auto !important;
    height: auto !important;
  }
}
@media (max-width: 576px) {
  .login-panel.has-login {
    min-height: auto !important;
    height: auto !important;
  }
}


/* Portal top dropdown + selected login container */
.portal-top-select {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 270px;
  padding: 6px 8px 6px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}

.portal-top-select span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.portal-top-select select {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  border-radius: 999px;
  padding: 9px 12px;
  color: #062018;
  background: linear-gradient(135deg, var(--brand), #d3fff2);
  font-weight: 900;
  cursor: pointer;
}

.portal-selected-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(32,211,162,.26);
  border-radius: 16px;
  color: #eaf8ff;
  background: linear-gradient(135deg, rgba(32,211,162,.14), rgba(85,167,255,.12));
}

.portal-selected-title span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.portal-selected-title b {
  color: var(--white);
  font-size: 14px;
}

.login-panel.has-login .gc-login {
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .topbar {
    flex-wrap: wrap;
  }
  .portal-top-select {
    order: 3;
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .portal-top-select {
    padding: 6px;
    border-radius: 18px;
  }
  .portal-top-select span {
    display: none;
  }
  .portal-top-select select {
    font-size: 13px;
  }
}


/* Login containers layout: dropdown removed */
.login-panel.platform-containers {
  background: #f6f8fb !important;
  color: #0f172a;
  padding: 12px !important;
}
.login-panel.platform-containers .portal-selected-title {
  color: #0f172a;
  background: linear-gradient(135deg, rgba(32,211,162,.16), rgba(85,167,255,.12));
  border-color: rgba(15,23,42,.08);
}
.login-panel.platform-containers .portal-selected-title span {
  color: #475569;
}
.login-panel.platform-containers .portal-selected-title b {
  color: #0f172a;
}
@media (min-width: 1100px) {
  .hero-page.gajanand-hero {
    grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
    align-items: flex-start;
  }
}


/* CLICK FIX: Login (Mail OTP) embedded container पर placeholder overlay click block न करे */
.login-panel::before,
.login-panel.has-login::before,
.login-panel.platform-containers::before,
#form_Login_Mail_OTP::before {
  content: none !important;
  display: none !important;
  pointer-events: none !important;
}

.login-panel.platform-containers,
#form_Login_Mail_OTP {
  position: relative !important;
  overflow: visible !important;
}

.login-panel.platform-containers > *,
#form_Login_Mail_OTP > *,
#form_Login_Mail_OTP .gc-login,
#form_Login_Mail_OTP form,
#form_Login_Mail_OTP button,
#form_Login_Mail_OTP select,
#form_Login_Mail_OTP input {
  position: relative;
  z-index: 5;
  pointer-events: auto !important;
}


/* ONLY TEST KE LIYE container */
.only-test-section {
  padding-top: 30px;
}

.only-test-container {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #f6f8fb;
  color: #0f172a;
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
}

.only-test-container::before {
  content: none !important;
  display: none !important;
  pointer-events: none !important;
}

.only-test-container .portal-selected-title {
  color: #0f172a;
  background: linear-gradient(135deg, rgba(32,211,162,.16), rgba(85,167,255,.12));
  border-color: rgba(15,23,42,.08);
}

.only-test-container .portal-selected-title span {
  color: #475569;
}

.only-test-container .portal-selected-title b {
  color: #0f172a;
}

.only-test-body {
  padding: 16px;
  border: 1px dashed rgba(15, 23, 42, 0.16);
  border-radius: 16px;
  background: #ffffff;
}

.only-test-body p {
  margin: 0;
  color: #475569;
  font-weight: 800;
  line-height: 1.6;
}


/* ONLY_TEST_KE_LIYE embedded form click safety */
#ONLY_TEST_KE_LIYE,
#ONLY_TEST_KE_LIYE .only-test-container,
#ONLY_TEST_KE_LIYE .gc-only-test,
#ONLY_TEST_KE_LIYE form,
#ONLY_TEST_KE_LIYE button,
#ONLY_TEST_KE_LIYE select,
#ONLY_TEST_KE_LIYE input {
  position: relative;
  z-index: 4;
  pointer-events: auto;
}
#ONLY_TEST_KE_LIYE .only-test-container::before,
#ONLY_TEST_KE_LIYE .platform-containers::before {
  pointer-events: none !important;
}


/* Create New Page menu item style */
.nav-links a.create-page-menu {
  color: #062018;
  background: linear-gradient(135deg, var(--brand), #d3fff2);
  box-shadow: 0 8px 22px rgba(32, 211, 162, 0.20);
}
.nav-links a.create-page-menu:hover,
.nav-links a.create-page-menu.active {
  color: #062018;
  background: linear-gradient(135deg, #d3fff2, var(--brand));
}
.only-test-section {
  scroll-margin-top: 92px;
}
.top-menu-page-note {
  margin: 6px 0 0;
  color: #475569;
  font-weight: 800;
  font-size: 13px;
}
@media (max-width: 720px) {
  .only-test-section {
    scroll-margin-top: 82px;
  }
}
