/* RESET + BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #0D1B2A;
  line-height: 1.6;
}

/* HEADER */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0D1B2A;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  height: 50px;
  display: block;
}
.brand-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  line-height: 1;
}
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.menu {
  display: flex;
  gap: 22px;
}
.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.menu a:hover,
.menu a.active {
  color: #FFD700;
  border-bottom: 2px solid #FFD700;
}

/* MOBILE HEADER */
@media (max-width: 768px) {
  .logo img { height: 40px; }
  .brand-name { font-size: 13px; margin-left: 14px; }
  .hamburger { display: block; z-index: 10001; }
  .menu {
    display: none;
    position: absolute;
    top: 56px;
    right: 10px;
    left: 10px;
    flex-direction: column;
    background: #0D1B2A;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
  }
  .menu.active { display: flex; }
  .menu a { font-size: 15px; padding: 10px 6px; border-bottom: 1px solid rgba(255,255,255,.12); }
  .menu a:last-child { border-bottom: none; }
}

/* HERO */
/* HERO —— premium split with soft spotlight + accent underline */
.hero{
  position: relative;
  padding: 84px 24px;
  background: radial-gradient(1200px 600px at 75% 0%, rgba(48,43,99,.10), transparent 60%) #fff;
  overflow: hidden;
}
.hero::after{ /* faint angled ribbon */
  content:"";
  position:absolute; inset:-20% -10% auto auto;
  height:60%; width:70%;
  background: linear-gradient(135deg, rgba(15,12,41,.08), rgba(36,36,62,.0));
  transform: rotate(-6deg);
  border-radius:24px;
}
.hero-content{
  max-width: 1200px;
  margin: 0 auto;
  display:flex; align-items:center; justify-content:space-between;
  gap: 36px; flex-wrap: wrap;
}

/* left column */
.hero-text{ flex:1; min-width:320px }
.hero-eyebrow{
  display:inline-block;
  font-size:14px; letter-spacing:.12em; text-transform:uppercase;
  color:#6b7280; background:#F3F4F6; border-radius:999px;
  padding:6px 12px; margin-bottom:10px;
}
.hero-text h1{
  font-size: clamp(36px, 5vw, 56px);
  line-height:1.08;
  margin: 6px 0 10px;
  font-weight: 800;
  color:#0D1B2A;
}
.hero-underline{
  width: 76px; height: 5px; border-radius: 999px;
  background: linear-gradient(90deg,#0f0c29,#302b63,#24243e);
  margin: 10px 0 18px;
}
.hero-text p{
  font-size: clamp(16px, 2.1vw, 20px);
  color:#374151;
  margin: 0 0 30px;
  max-width: 58ch;
}

/* CTA group */
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap }
.cta-button{
  display:inline-block;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration:none;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color:#fff;
  box-shadow: 0 8px 18px rgba(36,36,62,.18);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}
.cta-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(36,36,62,.25);
  filter: saturate(1.08);
}
.cta-ghost{
  background:#fff; color:#0D1B2A; border:1.5px solid #E5E7EB;
}
.cta-ghost:hover{ border-color:#0f0c29 }

/* small trust badges */
.hero-badges{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:16px;
}
.hero-badges .badge{
  font-size:12px; color:#111827; background:#F9FAFB; border:1px solid #E5E7EB;
  padding:6px 10px; border-radius:999px;
}

/* right column image */
.hero-image{ flex:1; min-width:320px; display:flex; justify-content:flex-end }
.hero-image img{
  width: min(520px, 90%);
  height: 400px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(13,27,42,.18);
  outline: 1px solid rgba(48,43,99,.10);
}
/* ✅ Hide hero image only in mobile view */
@media (max-width: 768px) {
  .hero-image {
    display: none;
  }
}

/* Responsive */
@media (max-width: 992px){
  .hero{ padding: 64px 20px; }
  .hero-content{ flex-direction:column; text-align:center }
  .hero-underline{ margin: 10px auto 18px }
  .hero-actions{ justify-content:center }
  .hero-image{ justify-content:center }
}
@media (max-width: 520px){
  .hero{ padding: 48px 16px; }
  .hero-text p{ margin-bottom: 22px }
}

/* VENDOR HERO DARK */
.vendor-hero-dark{
  position: relative;
  background: radial-gradient(1200px 420px at 20% -10%, rgba(255,215,0,.08), transparent 60%), #000;
  color:#fff;
  padding:64px 20px 80px;
  text-align:center;
  overflow:hidden;
}
.vendor-hero-dark::before{
  content:"";
  position:absolute; inset:-20% -10% auto -10%;
  height:70%;
  background: radial-gradient(900px 360px at 10% 0%, rgba(255,215,0,.18), transparent 60%);
  filter: blur(2px);
  mix-blend-mode: screen;
  animation: heroSweep 9s linear infinite;
  pointer-events:none;
}
@keyframes heroSweep { to { transform: translateX(15%);} }

.vh-title{
  font-size:44px;
  line-height:1.06;
  font-weight:900;
  letter-spacing:.2px;
  margin-bottom:8px;
  background: linear-gradient(90deg,#fff,#ffd60a,#fff);
  background-size:200% auto;
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;
  animation: titleShine 6s linear infinite;
}
@keyframes titleShine { to { background-position:200% center; } }

.vh-sub{ font-size:20px; opacity:.9; margin-bottom:22px; color:#e6e6e6; }

.vh-actions{ display:inline-flex; flex-wrap:wrap; gap:12px; margin-bottom:14px; }
.vh-btn{
  padding:12px 20px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
}
.vh-btn-primary{ background:#0a84ff; color:#fff; box-shadow: 0 8px 20px rgba(10,132,255,.25); }
.vh-btn-primary:hover{ transform: translateY(-2px); box-shadow:0 12px 26px rgba(10,132,255,.32); }
.vh-btn-ghost{ background:rgba(255,255,255,.02); color:#8ec2ff; border:1px solid rgba(142,194,255,.5); backdrop-filter: blur(2px); }
.vh-btn-ghost:hover{ background: rgba(255,255,255,.06); color:#fff; transform: translateY(-2px); border-color:#0a84ff; }

.vh-caption{ font-size:14px; margin-top:10px; color:#cfd6e0; }
.vh-caption span{
  background:linear-gradient(90deg,#7c00ff,#ff2d55,#ffd60a);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
  font-weight:800; letter-spacing:.2px; position: relative;
}
.vh-caption span::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px;
  background:linear-gradient(90deg,#7c00ff,#ff2d55,#ffd60a);
  opacity:.7; border-radius:2px;
}

/* ✅ Tablet/mobile tweaks for Vendor Hero (properly CLOSED) */
@media (max-width: 768px){
  .vendor-hero-dark{ padding:40px 16px 48px; }
  .vh-title{ font-size:32px; }
  .vh-sub{ font-size:16px; }
  .vh-actions{ gap:10px; }
  .vh-btn{ padding:10px 16px; }
} /* ← THIS was missing */

/* ===== SERVICES ===== */
.services {
  padding: 40px 20px;
  background-color: #f4f6ff;
  text-align: center;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.services-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.service-card {
  display: block;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #fff;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(0,0,0,.1); }
.service-card img { width: 100px; margin: 0 auto 15px; display: block; }
.service-card h3 { font-size: 18px; color: #fff; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: #b3b3b3; }

/* Paragraphs directly under .services (not inside cards) */
.services > p { font-size: 16px; margin-bottom: 8px; color: #0D1B2A; }

/* 📱 Services mobile */
@media (max-width: 768px) {
  .services { text-align: left; padding: 30px 16px 20px; }
  .section-title { font-size: 18px; margin-bottom: 10px; text-align: left; }
  .services-carousel {
    display: flex; overflow-x: auto; gap: 16px;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  }
  .services-carousel .service-card {
    flex: 0 0 160px; scroll-snap-align: start;
    padding: 12px 10px; border-radius: 12px;
  }
  .services-carousel .service-card img { width: 50px; height: 50px; }
  .services-carousel .service-card h3 { font-size: 12px; }
  .services-carousel .service-card p { display: none; }
}

/* === TENDER BANNER === */
.tender-banner{
  --bg1:#0f0c29; --bg2:#302b63; --bg3:#24243e; --gold:#FFD700;
  position:relative; overflow:hidden; border-radius:18px;
  padding:78px 22px; color:#fff; max-width:1200px; margin:56px auto;
  background: linear-gradient(135deg,var(--bg1),var(--bg2),var(--bg3));
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.tender-banner::before{
  content:"LIVE TENDERS"; position:absolute; top:18px; left:-42px; 
  transform:rotate(-12deg);
  background:linear-gradient(135deg,#111,#333);
  color:#fff; letter-spacing:.18em; font-weight:800; font-size:12px;
  padding:10px 58px; border:1px solid rgba(255,255,255,.08);
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}
.tender-banner::after {
  content: ""; position: absolute; top: -30%; left: -10%; right: -10%;
  height: 80%;
  background: radial-gradient(1200px 420px at 20% 0%, rgba(255, 215, 0, 0.18), transparent 60%);
  pointer-events: none; mix-blend-mode: screen;
}

.banner-content{
  position:relative; z-index:1; max-width:980px; margin:0 auto;
  padding:28px 24px; border-radius:16px;
  background:linear-gradient( to bottom, rgba(255,255,255,.10), rgba(255,255,255,.04) );
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  animation: bcFade .9s ease both;
}
@keyframes bcFade{from{opacity:0; transform:translateY(14px)} to{opacity:1; transform:none}}

.banner-eyebrow{ display:inline-block; font-size:12px; letter-spacing:.22em; opacity:.9; margin-bottom:10px; color:#cfd6ff; }

.banner-content h2 {
  font-size: 42px; font-weight: 900; letter-spacing: .5px;
  margin: 4px 0 8px; line-height: 1.1; color:#fff;
  position: relative; display: inline-block;
}
.banner-content h2::after{
  content:""; position:absolute; left:0; right:0; bottom:-8px; height:3px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  transform:scaleX(.2); transform-origin:center; transition:transform .35s ease;
}
.tender-banner:hover .banner-content h2::after{ transform:scaleX(1); }

.banner-content p{ font-size:18px; opacity:.92; margin:14px auto 28px; max-width:720px; }

.banner-actions{ display:flex; justify-content:center; gap:14px; flex-wrap:wrap; }
.banner-button{
  display:inline-block; padding:13px 26px; border-radius:999px;
  font-weight:800; text-decoration:none; font-size:15px; letter-spacing:.2px;
  background:linear-gradient(135deg, var(--gold), #ff9a00);
  color:#0D1B2A; border:0; position:relative; transition:transform .2s ease, box-shadow .2s ease;
  box-shadow:0 8px 26px rgba(255,215,0,.35);
}
.banner-button::after{
  content:""; position:absolute; inset:0; border-radius:inherit;
  box-shadow:0 0 0 0 rgba(255,215,0,.0); transition: box-shadow .35s ease;
}
.banner-button:hover{ transform:translateY(-3px); box-shadow:0 12px 34px rgba(255,215,0,.55); }
.banner-button:hover::after{ box-shadow:0 0 0 10px rgba(255,215,0,.08); }
.banner-button.ghost{ background:transparent; color:var(--gold); border:2px solid var(--gold); box-shadow:none; }
.banner-button.ghost:hover{ background:var(--gold); color:#0D1B2A; }

.banner-stats{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:16px; }
.stat-pill{ padding:8px 12px; border-radius:999px; font-size:12px; letter-spacing:.04em; color:#e9ecff; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); }

.banner-ticker{ margin-top:18px; overflow:hidden; mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%); }
.banner-ticker .track{ display:inline-block; white-space:nowrap; animation:ticker 18s linear infinite; opacity:.85; font-size:13px; }
.banner-ticker .item{ margin:0 22px; color:#d8defa; }
@keyframes ticker{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* 📱 Slim Banner */
@media (max-width:768px){
  .tender-banner{ padding:18px 10px; border-radius:10px; margin:14px 8px; }
  .banner-content{ padding:10px 8px; border-radius:8px; }
  .banner-content h2{ font-size:16px; line-height:1.15; margin:0 0 4px; }
  .banner-content p{ font-size:12px; margin:4px auto 10px; max-width:95%; line-height:1.35; }
  .banner-actions{ gap:6px; }
  .banner-button{ padding:6px 12px; font-size:12px; border-radius:16px; }
  .banner-stats{ gap:6px; margin-top:8px; }
  .stat-pill{ padding:4px 8px; font-size:10px; }
  .banner-ticker{ margin-top:6px; }
  .banner-ticker .track{ font-size:11px; animation-duration: 26s; }
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-box {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
  position: relative;
}
/* Civil Form Wrapper */
form#civilForm {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

/* Input & Select Fields */
#civilForm input,
#civilForm select,
#civilForm textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.2s ease-in-out;
  background-color: #f9f9f9;
}

#civilForm input:focus,
#civilForm select:focus,
#civilForm textarea:focus {
  border-color: #0D1B2A;
  outline: none;
  background-color: #fff;
}

/* Submit Button */
#civilForm .cta-button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#civilForm .cta-button:hover {
  background: linear-gradient(to right, #1a1a40, #3b3b8f);
}

/* Section Title for Form */
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0D1B2A;
  text-align: center;
  text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
  form#civilForm {
    padding: 20px;
  }

  .section-title {
    font-size: 20px;
  }
}
/* CLEAN CIVIL FORM STYLING */
form#civilForm {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 800px;
}

#civilForm input,
#civilForm select,
#civilForm textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

#civilForm input:focus,
#civilForm select:focus,
#civilForm textarea:focus {
  border-color: #0D1B2A;
  outline: none;
  background-color: #fff;
}

#civilForm label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #0D1B2A;
}

#civilForm .cta-button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#civilForm .cta-button:hover {
  background: linear-gradient(to right, #1a1a40, #3b3b8f);
}
/* Form subtitles */
/* Shared Form Styling (Civil, Electrical, Fabrication) */
form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 800px;
}

/* Section title */
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #0D1B2A;
  text-align: center;
  text-transform: uppercase;
}

/* Sub-headings inside forms */
.form-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #0D1B2A;
  text-align: left;
}

/* Form input fields */
form input[type="text"],
form input[type="email"],
form input[type="date"],
form input[type="file"],
form select,
form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

/* On focus */
form input:focus,
form select:focus,
form textarea:focus {
  border-color: #0D1B2A;
  background-color: #fff;
  outline: none;
}

/* Labels */
form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #0D1B2A;
}

/* Required label */
.required-label::after {
  content: " *";
  color: red;
}

/* Red indicator below input */
.error-star {
  color: red;
  font-size: 12px;
  margin-bottom: 8px;
  display: block;
}

/* Submit Button */
form .cta-button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form .cta-button:hover {
  background: linear-gradient(to right, #1a1a40, #3b3b8f);
}

/* Character Counters */
#charCounter,
#charCounterElectrical,
#charCounterFabrication {
  font-size: 12px;
  text-align: right;
  color: #666;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  form {
    padding: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .form-subtitle {
    font-size: 16px;
  }

  form .cta-button {
    font-size: 15px;
    padding: 12px;
  }
}
/* Number input field style (same as others) */
input[type="number"] {
  width: 30%;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

input[type="number"]:focus {
  border-color: #0D1B2A;
  outline: none;
  background-color: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: inherit;
  text-decoration: none; /* remove underline */
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.contact-card i {
  color: #0D1B2A;
}

.contact-card h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.contact-card p {
  margin-top: 5px;
  font-size: 0.95rem;
}

.contact-card a {
  color: inherit;
  text-decoration: none; /* remove underline */
}

/* Reduce vertical spacing in sections */
.services {
  padding: 40px 20px; /* was more before */
}

.section-title {
  margin-bottom: 15px; /* less gap under heading */
  text-align: center;
}

.map-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Less gap above the map section */
#map-section {
  padding-top: 20px;
}

#map-section .map-wrap {
  margin-top: 10px; /* smaller gap between heading and map */
}
/* Tender Search – light, clean, matches site theme */

/* ===== Tender Form Styling ===== */
.tender-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 1000px;
  margin: 30px auto;
  text-align: left;
}

.tender-form fieldset {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.tender-form legend {
  font-weight: 700;
  color: #0D1B2A;
  padding: 0 8px;
}

.tender-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #0D1B2A;
  margin-bottom: 15px;
}

.tender-form input,
.tender-form select,
.tender-form textarea {
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.tender-form input:focus,
.tender-form select:focus,
.tender-form textarea:focus {
  border-color: #0D1B2A;
  background: #fff;
  outline: none;
}

.tender-form .tf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.tender-form .tf-col-2 {
  grid-column: span 2;
}

.tender-form .tf-actions {
  display: flex;
  gap: 15px;
}

.tender-form .tf-reset {
  background-color: #999;
}

.tender-form .tf-hint {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .tender-form .tf-col-2 {
    grid-column: span 1;
  }
}
#tender-note {
  margin-top: 25px;
  padding: 25px 20px;
  background: linear-gradient(135deg, #fffbea, #fffbe9);
  border-left: 6px solid #FFD700;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

#tender-note p {
  margin-bottom: 12px;
  color: #333;
}

#tender-note strong {
  color: #b58900;
}

@media (max-width: 768px) {
  #tender-note {
    font-size: 16px;
    padding: 18px 14px;
  }
}
/* ==== Mega Footer (Jio-style) ==== */
.mega-footer{
  background:#0D1B2A;
  color:#fff;
  margin-top:40px;
  padding:32px 20px 10px;
}
.mf-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(5, minmax(160px,1fr));
  gap:28px;
}
.mega-footer h4{
  font-size:16px;
  margin-bottom:12px;
  color:#fff;
  font-weight:700;
}
.mega-footer ul{list-style:none; padding:0; margin:0;}
.mega-footer li{margin:8px 0;}
.mega-footer a{
  color:#cfd6e0;
  text-decoration:none;
}
.mega-footer a:hover{ color:#FFD700; }

.mf-social{ display:flex; gap:10px; margin:8px 0 16px; }
.mf-social a{
  width:36px; height:36px; line-height:36px; text-align:center;
  border-radius:50%;
  background:#13283e; color:#fff; font-weight:700; display:inline-block;
}
.mf-social a:hover{ background:#1a3653; }

.mf-download{ margin-top:8px; }
.mf-stores{ display:flex; gap:10px; flex-wrap:wrap; }
.store-badge{
  display:inline-block; padding:10px 14px; border-radius:8px;
  border:1px solid #fff; color:#fff; text-decoration:none; font-weight:600;
}
.store-badge:hover{ background:rgba(255,255,255,0.08); }

.mf-bottom{
  border-top:1px solid rgba(255,255,255,0.12);
  margin-top:24px; padding-top:12px; text-align:center; font-size:14px;
}
.mf-bottom a{ color:#FFD700; text-decoration:none; }
.mf-bottom a:hover{ text-decoration:underline; }

/* ===== Mobile layout for mega footer ===== */
@media (max-width: 600px) {
  .mega-footer{
    padding: 26px 14px 8px;
  }

  .mf-wrap{
    grid-template-columns: 1fr;   /* stack all columns */
    gap: 18px;
    max-width: 520px;
  }

  /* Headings & lists */
  .mega-footer h4{
    font-size: 15px;
    margin-bottom: 10px;
  }
  .mega-footer li{
    margin: 10px 0;
  }
  .mega-footer a{
    font-size: 14.5px;
    line-height: 1.5;
  }

  /* Add soft dividers between sections */
  .mf-col{
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mf-col:first-child{ border-top: none; }

  /* Brand + socials */
  .mf-brand{ text-align: center; }
  .mf-brand .mf-logo{ justify-content: center; }
  .mf-social{
    justify-content: center;
    gap: 12px;
  }
  .mf-social a{
    width: 44px; height: 44px; line-height: 44px;   /* larger tap target */
    font-size: 16px;
  }

  /* Store/download badges */
  .mf-stores{
    justify-content: center;
    gap: 12px;
  }
  .store-badge{
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
  }

  /* Bottom bar */
  .mf-bottom{
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 13.5px;
  }
  .mf-bottom .mf-links{
    justify-content: center;
  }
  .mf-top{
    width: 100%;
    justify-content: center;
  }
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

.map-section {
  margin: 50px auto;
  max-width: 900px;
}

.map-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #0D1B2A;
}

.map-section img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom:-40px;
}

.map-caption {
  text-align: center;
  margin: 20px 0;
}

.map-caption h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #0D1B2A;
  text-align: left;
}
.map-description {
  max-width: 800px;
  margin: 5px auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.mapl {
  display: flex;
  justify-content: center;     /* center horizontally */
  align-items: center;
  gap: 40px;                   /* spacing between the two spans */
  flex-wrap: wrap;              /* responsive: stack on small screens */
  margin: 25px auto;
  padding: 15px 25px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  max-width: 700px;
  font-size: 17px;
  font-weight: 600;
  color: #0D1B2A;
}

.mapl span {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.dot-blue {
  background: radial-gradient(#9cc4ff, #000d35);
  box-shadow: 0 0 6px rgba(45,98,255,0.6);
}

.dot-gold {
  background: radial-gradient(#ffe28a, #d9aa00);
  box-shadow: 0 0 6px rgba(217,170,0,0.6);
}
/* ====== Responsive ====== */

/* Tablets & small laptops */
@media (max-width: 992px) {
  .map-section { margin: 40px auto; padding: 0 16px; }
  .map-section h2 { font-size: 30px; margin-bottom: 28px; }
  .map-description { max-width: 90%; font-size: 15.5px; }
  .mapl { gap: 28px; max-width: 640px; padding: 14px 18px; font-size: 16px; }
}

/* Large phones & small tablets */
@media (max-width: 768px) {
  .map-section { margin: 32px auto; }
  .map-section h2 { font-size: 26px; }
  .map-caption h3 { font-size: 16px; margin-bottom: 6px; text-align: center; }
  .map-description { font-size: 15px; line-height: 1.7; }
  .mapl {
    gap: 18px;
    padding: 12px 16px;
    max-width: 95%;
    font-size: 15.5px;
  }
  .mapl span { white-space: normal; } /* allow wrap if needed */
}

/* Phones */
@media (max-width: 480px) {
  .map-section { margin: 24px auto; }
  .map-section h2 { font-size: 22px; margin-bottom: 18px; }
  .map-description { font-size: 8px; max-width: 94%; }
  .mapl {
    flex-direction: column;     /* stack items */
    align-items: stretch;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 15px;
  }
  .mapl span {
    justify-content: center;    /* center each line */
    text-align: center;
  }
  .dot { width: 12px; height: 12px; } /* slightly smaller dots */
}

/* Very small phones */
@media (max-width: 360px) {
  .map-section h2 { font-size: 20px; }
  .mapl { font-size: 14.5px; gap: 10px; }
}
.mf-social {
  display: flex;
  gap: 12px;
  margin: 12px 0 20px;
}

.mf-social a {
  width: 40px;
  height: 40px;
  background: #1a273a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd6e0;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.mf-social a:hover {
  background: #FFD700;
  color: #0D1B2A;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
:root{
  --bg:#ffffff;     /* White background */
  --text:#0D1B2A;   /* Dark brand color */
  --muted:#666666;  /* Muted text */
  --accent:#FFD700; /* Gold accent */
}

/* Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* Wrap */
.cs-wrap{
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: var(--bg);
  position: relative;
}

/* Card */
.cs-card{
  position: relative;
  width: min(500px, 92%);
  padding: 32px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  text-align: center;
}

/* Small pill */
.cs-pill{
  display:inline-block;
  font-size:13px;
  padding:6px 12px;
  border-radius:999px;
  background:#f7f7f7;
  color:var(--muted);
  margin-bottom:12px;
}

/* Title */
.cs-title{
  font-size:32px;
  margin:10px 0;
  position: relative;
}
.cs-shimmer{
  display:block;
  width:100%;
  height:3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin-top:8px;
  border-radius: 3px;
  animation: shimmer 2s linear infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-120%); opacity:0; }
  40%  { opacity:1; }
  100% { transform: translateX(120%); opacity:0; }
}

/* Subtitle */
.cs-sub{
  font-size:16px;
  color:var(--muted);
  margin:0 0 22px;
}

/* Button */
.cs-btn{
  display:inline-block;
  padding:12px 20px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  background:var(--accent);
  color:var(--text);
  transition: all 0.2s ease;
  box-shadow: 0 6px 18px rgba(255,215,0,0.3);
}
.cs-btn:hover{
  background:#e6c200;
  box-shadow:0 8px 22px rgba(255,215,0,0.4);
}

/* Hint */
.cs-hint{
  margin-top:16px;
  font-size:13px;
  color:var(--muted);
}

/* Remove blobs (kept as placeholders if you want in future) */
.blob{ display:none; }

/* Responsive */
@media (max-width:480px){
  .cs-card{ padding:24px 18px; }
  .cs-title{ font-size:26px; }
}
.ir-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.ir-card {
  background: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.ir-card h3 {
  margin-bottom: 10px;
  color: #0D1B2A;
}
/* --- Careers page (pure CSS, no JS) --- */

.cv-brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:#fff;}
.cv-brand img{height:42px; border-radius:6px;}
.cv-brand span{font-weight:700; letter-spacing:.3px;}
.cv-burger{display:none; font-size:26px; cursor:pointer; padding:8px 10px;}
#cv-nav-toggle{display:none;}
.cv-nav{display:flex; gap:22px;}
.cv-nav a{color:#fff; text-decoration:none; font-weight:500;}
.cv-nav a.active, .cv-nav a:hover{color:#FFD700;}
@media (max-width: 820px){
  .cv-burger{display:block;}
  .cv-nav{
    position:absolute; right:10px; top:60px; background:#0D1B2A; border-radius:8px;
    padding:10px; display:none; flex-direction:column; gap:10px; width:200px;
    box-shadow:0 6px 18px rgba(0,0,0,.25);
  }
  #cv-nav-toggle:checked + .cv-burger + .cv-nav{display:flex;}
}

/* Hero */
.cv-hero{
  position:relative; overflow:hidden; padding:70px 20px; background:#ffffff;
}
.cv-blob{
  position:absolute; inset:auto -100px -120px auto; width:380px; height:380px;
  background: radial-gradient(closest-side, #e8ecff, transparent 70%);
  filter: blur(10px);
}
.cv-hero__wrap{max-width:1100px; margin:0 auto; text-align:left;}
.cv-tag{display:inline-block; padding:6px 10px; background:#f2f4ff; color:#1a2d40; border:1px solid #e3e7ff; border-radius:999px; font-size:12px; margin-bottom:10px;}
.cv-hero__title{font-size:40px; color:#0D1B2A; margin:6px 0 12px;}
.cv-hero__lead{max-width:780px; color:#333; font-size:18px;}
.cv-cta{display:flex; gap:12px; margin-top:18px;}
.cv-btn{padding:12px 18px; border-radius:10px; text-decoration:none; font-weight:700; display:inline-block;}
.cv-btn--primary{background:#0D1B2A; color:#fff;}
.cv-btn--ghost{background:#fff; color:#0D1B2A; border:1px solid #0D1B2A;}
.cv-btn--ghost:hover{background:#0D1B2A; color:#fff;}
@media (max-width:700px){
  .cv-hero__title{font-size:30px;}
  .cv-cta{flex-wrap:wrap;}
}

/* Stats band */
.cv-stats{
  display:grid; grid-template-columns:repeat(auto-fit, minmax(180px,1fr));
  gap:10px; max-width:1100px; margin:10px auto 0; padding:10px;
}
.cv-stat{
  background:#f7f9ff; border:1px solid #eef1ff; border-radius:12px; padding:16px; text-align:center;
  color:#1a2d40; font-weight:600;
}
.cv-stat span{font-size:20px; display:block; color:#0D1B2A;}

/* Sections */
.cv-section{padding:40px 16px; background:#f4f6ff; margin-top:28px;}
.cv-section__title{font-size:24px; font-weight:800; color:#0D1B2A; text-align:center; margin-bottom:18px;}

/* Cards grid */
.cv-grid{
  max-width:1100px; margin:0 auto; display:grid; gap:16px;
  grid-template-columns:repeat(auto-fit, minmax(250px,1fr));
}
.cv-card{
  background:#fff; border:1px solid #eef0f6; border-radius:14px; padding:16px;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.cv-card h3{margin:0 0 6px; color:#0D1B2A;}
.cv-card p{color:#333; font-size:14px; margin:6px 0 10px;}
.cv-card ul{padding-left:18px; color:#333; font-size:14px;}
.cv-card li{margin:4px 0;}

.cv-note{
  max-width:900px; margin:16px auto 0; padding:14px; background:#fffbe9;
  border-left:5px solid #FFD700; border-radius:8px; color:#5a4a00; text-align:center;
}

/* Values */
.cv-values{
  max-width:1100px; margin:0 auto; display:grid; gap:16px;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
}
.cv-value{
  background:linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color:#fff; border-radius:14px; padding:16px; box-shadow:0 4px 14px rgba(0,0,0,.08);
}
.cv-value h4{margin:0 0 6px;}

/* Benefits */
.cv-benefits{
  max-width:900px; margin:0 auto; background:#fff; border:1px solid #eef0f6; border-radius:14px; padding:18px;
  display:grid; gap:10px; grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
}
.cv-benefits li{margin-left:18px;}

/* Steps */
.cv-steps{
  max-width:900px; margin:0 auto; background:#fff; border:1px solid #eef0f6; border-radius:14px; padding:18px;
}
.cv-equal{max-width:900px; margin:10px auto 0; text-align:center; color:#333;}

/* FAQs */
.cv-faqs{
  max-width:900px; margin:0 auto; display:grid; gap:10px;
}
.cv-faqs details{
  background:#fff; border:1px solid #eef0f6; border-radius:12px; padding:12px 14px;
}
.cv-faqs summary{cursor:pointer; font-weight:700; color:#0D1B2A;}
.cv-faqs p{margin-top:8px; color:#333;}

/* Footer */
.cv-footer{
  text-align:center; padding:20px; background:#0D1B2A; color:#fff; margin-top:30px;
}
/* Keep header above page content everywhere */
.main-header {
  position: sticky;   /* or 'relative' if you don't want sticky */
  top: 0;
  z-index: 9999;      /* key fix: header above hero */
}

/* Ensure the hamburger itself is always clickable */
.hamburger { z-index: 10001; position: relative; }

/* Careers hero (and any decorative blobs) must NOT block header clicks */
.cv-hero { position: relative; z-index: 1; }
.cv-blob { pointer-events: none; }

/* Mobile dropdown panel should overlay content, not push it */
@media (max-width: 768px) {
  .menu {
    display: none;                /* default hidden; your JS toggles .active */
    position: absolute;
    top: 56px;                    /* height of header on mobile */
    right: 10px;
    left: 10px;                   /* full-width panel with margins */
    padding: 12px;
    background-color: #0D1B2A;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    flex-direction: column;
    gap: 10px;
    z-index: 9999;                /* above sections */
  }
  .menu.active { display: flex; }

  /* optional: nicer tap targets */
  .menu a { padding: 10px 6px; }
}
/* Loader Overlay */
.loader-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* Spinner */
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #0D1B2A; /* brand color */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* ===== Privacy Policy Page Styles (lightweight, mobile-first) ===== */

:root {
  --pp-text: #0D1B2A;
  --pp-muted: #4b5563;
  --pp-bg: #ffffff;
  --pp-card: #ffffff;
  --pp-border: #e5e7eb;
  --pp-accent: #FFD700;
}

.pp-wrap {
  background: var(--pp-bg);
  color: var(--pp-text);
  padding: 32px 16px 40px;
}

.pp-hero {
  max-width: 1000px;
  margin: 0 auto 18px;
  background: #fff;
  border: 1px solid var(--pp-border);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.pp-hero h1 {
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.1;
  margin-bottom: 6px;
  font-weight: 800;
}

.pp-updated {
  color: var(--pp-muted);
  margin-bottom: 12px;
  font-size: 14px;
}

.pp-lead {
  font-size: 16px;
  color: #1f2937;
  margin-bottom: 14px;
}

.pp-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pp-badges span {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 6px 10px;
  border-radius: 999px;
  background: #F9FAFB;
  border: 1px solid var(--pp-border);
}

/* Sections */
.pp-section {
  max-width: 1000px;
  margin: 14px auto;
  background: var(--pp-card);
  border: 1px solid var(--pp-border);
  border-left: 5px solid var(--pp-accent);
  border-radius: 10px;
  padding: 18px 16px;
}

.pp-section h2 {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 800;
}

.pp-section p {
  color: #111827;
  line-height: 1.7;
  margin: 8px 0;
}

.pp-list {
  margin: 10px 0 0 20px;
}

.pp-list li {
  margin: 6px 0;
  color: #111827;
}

.pp-note {
  font-size: 14px;
  color: var(--pp-muted);
  margin-top: 8px;
}

.pp-small {
  font-size: 14px;
  color: var(--pp-muted);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .pp-section { padding: 14px; }
  .pp-hero { padding: 18px 14px; }
  .pp-badges span { font-size: 11px; padding: 5px 8px; }
}
:root{
  --text:#0D1B2A;
  --muted:#4b5563;
  --accent:#FFD700;
  --border:#e5e7eb;
}

.pp-wrap {
  padding: 32px 16px;
  background: #fff;
  color: var(--text);
}

.pp-hero {
  max-width: 1000px;
  margin: 0 auto 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.pp-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 6px;
  font-weight: 800;
}
.pp-updated { color: var(--muted); margin-bottom: 12px; font-size: 14px; }
.pp-lead { font-size: 16px; color: #1f2937; }

.pp-section {
  max-width: 1000px;
  margin: 14px auto;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 18px;
}
.pp-section h2 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.pp-section p { line-height: 1.7; color: #111827; }

.pp-list { margin: 10px 0 0 20px; }
.pp-list li { margin: 6px 0; color: #111827; }

@media(max-width:600px){
  .pp-section { padding: 14px; }
  .pp-hero { padding: 18px 14px; }
}
:root{
  --text:#0D1B2A;
  --muted:#4b5563;
  --accent:#FFD700;
  --border:#e5e7eb;
}

.pp-wrap {
  padding: 32px 16px;
  background: #fff;
  color: var(--text);
}

.pp-hero {
  max-width: 1000px;
  margin: 0 auto 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.pp-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 6px;
  font-weight: 800;
}
.pp-updated { color: var(--muted); margin-bottom: 12px; font-size: 14px; }
.pp-lead { font-size: 16px; color: #1f2937; }

.pp-section {
  max-width: 1000px;
  margin: 14px auto;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 18px;
}
.pp-section h2 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.pp-section p { line-height: 1.7; color: #111827; }

.pp-list { margin: 10px 0 0 20px; }
.pp-list li { margin: 6px 0; color: #111827; }

@media(max-width:600px){
  .pp-section { padding: 14px; }
  .pp-hero { padding: 18px 14px; }
}
:root{
  --text:#0D1B2A;
  --muted:#4b5563;
  --accent:#FFD700;
  --border:#e5e7eb;
}

.pp-wrap {
  padding: 32px 16px;
  background: #fff;
  color: var(--text);
}

.pp-hero {
  max-width: 1000px;
  margin: 0 auto 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.pp-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 6px;
  font-weight: 800;
}
.pp-updated { color: var(--muted); margin-bottom: 12px; font-size: 14px; }
.pp-lead { font-size: 16px; color: #1f2937; }

.pp-section {
  max-width: 1000px;
  margin: 14px auto;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 18px;
}
.pp-section h2 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.pp-section p { line-height: 1.7; color: #111827; }

.pp-list { margin: 10px 0 0 20px; }
.pp-list li { margin: 6px 0; color: #111827; }

@media(max-width:600px){
  .pp-section { padding: 14px; }
  .pp-hero { padding: 18px 14px; }
}
:root{
  --text:#0D1B2A;
  --muted:#4b5563;
  --accent:#FFD700;
  --border:#e5e7eb;
}

.pp-wrap {
  padding: 32px 16px;
  background: #fff;
  color: var(--text);
}

.pp-hero {
  max-width: 1000px;
  margin: 0 auto 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}

.pp-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 6px;
  font-weight: 800;
}
.pp-updated { color: var(--muted); margin-bottom: 12px; font-size: 14px; }
.pp-lead { font-size: 16px; color: #1f2937; }

.pp-section {
  max-width: 1000px;
  margin: 14px auto;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  border-radius: 10px;
  padding: 18px;
}
.pp-section h2 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.pp-section p { line-height: 1.7; color: #111827; }

.pp-list { margin: 10px 0 0 20px; }
.pp-list li { margin: 6px 0; color: #111827; }

@media(max-width:600px){
  .pp-section { padding: 14px; }
  .pp-hero { padding: 18px 14px; }
}
