/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1f2937;
  line-height: 1.6;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER & NAV ================= */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.nav h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #1e40af;
}

nav a {
  margin-left: 18px;
  font-weight: 500;
  color: #1f2937;
}

nav a.active {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
  padding-bottom: 4px;
}

.btn-outline {
  border: 2px solid #2563eb;
  padding: 6px 14px;
  border-radius: 6px;
  color: #2563eb;
  font-weight: 600;
}

/* ================= HERO ================= */
.hero,
.inner-hero {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #ffffff;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero h1,
.inner-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  margin-bottom: 16px;
}

.hero p,
.inner-hero p {
  font-size: 18px;
  max-width: 720px;
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: #22c55e;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.btn-secondary {
  background: #ffffff;
  color: #1e40af;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 10px;
  display: inline-block;
}

/* ================= SECTIONS ================= */
.section {
  padding: 70px 0;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #111827;
}

/* ================= CARDS ================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 15px;
}

/* ================= CTA ================= */
.cta {
  background: #1e40af;
  color: #ffffff;
  padding: 50px 0;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* ================= CONTACT FORM ================= */
.contact-form {
  max-width: 600px;
  margin: auto;
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.form-btn {
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
}

/* ================= SUCCESS MESSAGE ================= */
.success-message {
  display: none;
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 30px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  text-align: center;
  color: #065f46;
}

.success-message i {
  font-size: 40px;
  color: #22c55e;
  margin-bottom: 10px;
}

.success-message h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

/* ================= FOOTER ================= */
.footer {
  background: #0f172a;
  color: #cbd5f5;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
}

/* ================= WHATSAPP ICON ================= */
.whatsapp-pill {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 52px;
  height: 52px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 999;
}

.whatsapp-pill i {
  font-size: 26px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 28px;
  }

  .cta-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= PRIVACY POLICY ================= */
.policy-container {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.policy-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.policy-card h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 10px;
  color: #1e40af;
}

.policy-card p {
  color: #374151;
  line-height: 1.7;
}

/* ================= PRIVACY POLICY – REFINED ================= */

.privacy-section {
  background: #f8fafc;
}

.policy-container {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Card style same as site cards */
.policy-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

/* Smaller, calmer headings */
.policy-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: #1e40af;
}

/* 👇 MAIN CHANGE: SMALLER TEXT */
.policy-card p {
  font-size: 15px;        /* smaller than site text */
  line-height: 1.65;
  color: #374151;
}


/* ================= FOOTER POLISH ================= */

.footer {
  padding-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 14px;
  color: #cbd5e1;
}

.footer-bottom a {
  color: #93c5fd;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Mobile fix */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

/* ================= FORM PAGE ENHANCEMENTS ================= */
/* Grid layout for larger screens */
.card form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 18px;
  align-items: start;
}

/* Make full-width fields span both columns */
.card form textarea,
.card form input[type="file"],
.card form #message,
.card form #resume,
.card form label[for="resume"],
.card form #voicePlayback,
.card form .btn-primary,
.card form p,
.card form #recStatus,
.card form #referFields {
  grid-column: 1 / -1;
}

/* Labels & small helper text */
.card form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.card form input[type="text"],
.card form input[type="email"],
.card form input[type="tel"],
.card form input[type="number"],
.card form select,
.card form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  background: #ffffff;
}

.card form input[type="file"] {
  padding: 8px 6px;
}

.card form input:focus,
.card form select:focus,
.card form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

/* Recorder controls */
#startRec, #stopRec {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(15,23,42,0.08);
  background: #f8fafc;
  color: #0f172a;
  cursor: pointer;
  font-weight: 600;
}

#startRec[disabled], #stopRec[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

#voicePlayback {
  width: 100%;
  margin-top: 6px;
}

#recStatus {
  font-size: 13px;
  color: #6b7280;
}

/* Referral nested block */
#referFields {
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  border: 1px dashed #e6eef6;
}

/* Primary button styling inside form */
.card form .btn-primary {
  padding: 12px 26px;
  font-size: 16px;
  border-radius: 8px;
}

/* Small helper notes */
.small-muted {
  font-size: 13px;
  color: #6b7280;
}

/* Make form single-column on narrow screens */
@media (max-width: 720px) {
  .card form {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 26px;
  }
}

}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 15px;

  display: flex;
  justify-content: center;   /* CENTER horizontally */
  align-items: center;       /* CENTER vertically */
  gap: 15px;

  font-size: 14px;
  color: #cbd5e1;
  text-align: center;
}

/* ================= BLOG PAGE ================= */

.blog-content {
  max-width: 820px;
  margin: auto;
}

.blog-intro {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #1f2937;
}

.blog-content h3 {
  margin-top: 30px;
  color: #1e40af;
}

.blog-highlight {
  margin-top: 30px;
  padding: 18px 22px;
  background: #f1f5f9;
  border-left: 4px solid #2563eb;
  font-weight: 500;
}

/* ================= BUTTON SPACING FIX ================= */

/* Space between text paragraphs and buttons */
.hero a,
.cta a,
.section a.btn-primary,
.section a.btn-secondary {
  margin-top: 16px;
}

/* If buttons are inline, add gap between them */
.hero a + a,
.cta a + a {
  margin-left: 12px;
}

/* Extra breathing space after paragraphs */
.hero p,
.section p {
  margin-bottom: 20px;
}

/* ================= BEAUTIFUL FORM ================= */

.resume-form {
  padding: 30px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group small {
  font-size: 12px;
  color: #6b7280;
}

.rec-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rec-box audio {
  max-width: 100%;
}

.refer-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.refer-fields {
  display: none;
  padding-left: 12px;
  border-left: 2px solid #e5e7eb;
  margin-bottom: 16px;
}

.privacy-note {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

.form-feedback {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.refer-box label {
  margin: 0;
  font-size: 14px;
}
.refer-box {
  display: inline-flex;          /* shrink to content */
  align-items: center;           /* vertical align */


  /* ================= WHATSAPP CHAT BOX ================= */

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-chat i {
  font-size: 22px;
}

.whatsapp-chat:hover {
  background: #1ebe5d;
}

/* Mobile: show icon only */
@media (max-width: 768px) {
  .whatsapp-chat span {
    display: none;
  }
}

  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #f9fafb;
  white-space: nowrap;           /* 🔑 FORCE SINGLE LINE */
}

.refer-box input {
  margin: 0;
}

.refer-box label {
  margin: 0;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

/* ================= FORM GRID ================= */

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Tablet */
@media (max-width: 1023px) {
  .form-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
}


