/* ================================================================
   CONTACT PAGE — FULL CSS
   Color Scheme (hardcoded — no variables):
     Backgrounds : #000000 | #041018 | #060d1f | #0b1430 | #050814 | #02030a
     Cyan        : #1ec8ff | #16A2E7 | #4fd6ff
     Text        : #ffffff
                   rgba(255,255,255,0.86) | rgba(255,255,255,0.78)
                   rgba(255,255,255,0.75) | rgba(255,255,255,0.72) | rgba(255,255,255,0.70)
                   rgba(255,255,255,0.65) | rgba(255,255,255,0.50) | rgba(255,255,255,0.45)
                   rgba(255,255,255,0.40) | rgba(255,255,255,0.35)
     Borders     : rgba(255,255,255,0.04) | rgba(255,255,255,0.06) | rgba(255,255,255,0.08)
                   rgba(255,255,255,0.10) | rgba(255,255,255,0.12) | rgba(255,255,255,0.14)
                   rgba(30,200,255,0.12)  | rgba(30,200,255,0.15)  | rgba(30,200,255,0.18)
                   rgba(30,200,255,0.20)  | rgba(30,200,255,0.22)  | rgba(30,200,255,0.25)
                   rgba(30,200,255,0.28)  | rgba(30,200,255,0.45)  | rgba(30,200,255,0.60)
   Fonts         : 'Fjalla One' (display) | 'DM Sans' (body)
================================================================ */


/* ================================================================
   §0  GLOBAL — reset, base body, mesh grid, glow blobs, scrollbar
================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: #041018;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.7;
}

/* Cyan mesh grid — fixed behind all content */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 162, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 162, 231, 0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
  z-index: 0;
}

/* Ambient radial glow blobs — fixed behind all content */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(22, 162, 231, 0.11) 0%, transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(30, 200, 255, 0.08) 0%, transparent 38%);
  pointer-events: none;
  z-index: 0;
}

/* Cyan scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30, 200, 255, 0.28); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 200, 255, 0.50); }


/* ================================================================
   §1  CONTACT HERO
   Full-width image hero, dark gradient left overlay, text left
================================================================ */

/* Outer max-width wrapper */
.contact-hero-wrapper {
  max-width: 1400px;
  margin: auto;
}

/* Hero container — background image + flex align center */
.contact-hero {
  position: relative;
  min-height: 600px;
  padding: 60px 0;
  overflow: hidden;
  background: url("/newsite/images/OverlayImg/Overlayimg.webp")
    right center / cover no-repeat;
  display: flex;
  align-items: center;
}




/* Left-to-right dark gradient fading over image */
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5, 8, 18, 0.95)  0%,
    rgba(5, 8, 18, 0.85) 30%,
    rgba(5, 8, 18, 0.45) 55%,
    rgba(5, 8, 18, 0.15) 75%,
    rgba(5, 8, 18, 0.05) 100%
  );
  z-index: 1;
}

/* Text content — above overlay */
.contact-hero-content {
  color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 45px 70px;
  max-width: 650px;
}

/* Breadcrumb pill — cyan glass */
.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  padding: 7px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #1ec8ff;
  background: rgba(30, 200, 255, 0.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(30, 200, 255, 0.25);
}
.breadcrumb-pill span { opacity: 0.8; }

/* Hero headline — Fjalla One */
.contact-hero-content h1 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}

/* Hero body paragraph */
.contact-hero-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  max-width: 500px;
  margin-bottom: 22px;
}

/* Inline text link */
.hero-link {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #1ec8ff;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-link:hover { opacity: 0.85; transform: translateX(4px); }


/* ================================================================
   §2  CONTACT FORM SECTION
   Two-column grid: info left, form card right.
   Background: radial gradient dark-3 → near-black.
================================================================ */

/* Section wrapper */
.contact-form-section {
  background: radial-gradient(circle at top, #0b1430 0%, #050814 65%, #02030a 100%);
  padding: 120px 0;
  color: #ffffff;
}

/* Inner max-width container */
.contact-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Two-column grid */
.contact-form-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

/* ── Left: Info column ── */

/* Eyebrow badge */
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(30, 200, 255, 0.15);
  color: #1ec8ff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Section heading — Fjalla One */
.contact-info h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 18px;
}
.contact-info h2 span { color: #1ec8ff; }

/* Intro description */
.contact-desc {
  max-width: 520px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

/* Detail items column */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Single detail row */
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

/* Icon square badge */
.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30, 200, 255, 0.12);
  border: 1px solid rgba(30, 200, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-item-icon i { font-size: 16px; color: #1ec8ff; }

/* Icon fills solid cyan on row hover */
.contact-item:hover .contact-item-icon { background: #1ec8ff; border-color: #1ec8ff; }
.contact-item:hover .contact-item-icon i { color: #041018; }

/* Detail label */
.contact-item strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #1ec8ff;
  margin-bottom: 5px;
  font-weight: 600;
}

/* Detail value */
.contact-item span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* Social sub-block */
.contact-social { margin-top: 10px; }
.contact-social > span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.50);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Social icon row */
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  background: #1ec8ff;
  border-color: #1ec8ff;
  color: #041018;
  transform: translateY(-3px);
}

/* ── Right: Form card ── */

/* Glassmorphic card container */
.contact-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-radius: 32px;
  padding: 48px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.60),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

/* Card heading — Fjalla One */
.contact-form-card h3 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Card sub-description */
.contact-form-card > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Form flex column */
.contact-form-card form { display: flex; flex-direction: column; gap: 16px; }

/* Two-column input row */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Shared input / textarea / select */
.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color 0.25s ease, background 0.25s ease;
  outline: none;
}

/* Select — custom cyan arrow */
.contact-form-card select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231ec8ff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.contact-form-card select option { background: #0b1430; color: #ffffff; }

/* Focus — cyan border + soft glow tint */
.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  border-color: rgba(30, 200, 255, 0.60);
  background: rgba(30, 200, 255, 0.06);
}

/* Textarea */
.contact-form-card textarea { min-height: 140px; resize: none; }

/* Placeholder */
.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder { color: rgba(255, 255, 255, 0.40); }

/* Submit button — cyan gradient pill */
.contact-form-card button[type="submit"] {
  margin-top: 6px;
  padding: 15px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.contact-form-card button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(30, 200, 255, 0.40);
}


/* ================================================================
   §3  MAP SECTION
   Iframe inside glassmorphic card. Background: #000000.
================================================================ */

/* Section wrapper */
.map-section { background: #000000; padding: 120px 0; color: #ffffff; }

/* Inner container */
.map-wrapper { max-width: 1400px; margin: 0 auto; padding: 0 60px; }

/* Header above map */
.map-header { max-width: 640px; margin-bottom: 40px; }

/* Eyebrow badge */
.map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(30, 200, 255, 0.15);
  color: #1ec8ff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Map heading — Fjalla One */
.map-header h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Map description */
.map-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Glassmorphic card around iframe */
.map-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.60);
  border: 1px solid rgba(30, 200, 255, 0.20);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.map-card:hover { transform: translateY(-6px); box-shadow: 0 50px 120px rgba(30, 200, 255, 0.25); }

/* Dark vignette overlay on top of iframe */
.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 8, 18, 0.18), rgba(5, 8, 18, 0.38));
  pointer-events: none;
  z-index: 1;
}

/* Iframe with dark/cyan tint */
.map-card iframe {
  width: 100%;
  height: 440px;
  border: none;
  filter: grayscale(20%) contrast(105%) brightness(85%);
}


/* ================================================================
   §4  FAQ SECTION
   Accordion list. Background: radial dark gradient.
================================================================ */

.faq-section {
  background: radial-gradient(circle at top, #0b1430 0%, #050814 65%, #02030a 100%);
  padding: 120px 20px;
  display: flex;
  justify-content: center;
}

.faq-header { text-align: center; margin-bottom: 70px; }

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #1ec8ff;
  background: rgba(30, 200, 255, 0.12);
  margin-bottom: 18px;
}

.faq-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
}
.faq-title span { color: #1ec8ff; }

.faq-subtitle {
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-inline: auto;
}

.faq-list { display: flex; flex-direction: column; gap: 18px; }

/* Single accordion item */
.faq-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-radius: 22px !important;
  border: 1px solid rgba(30, 200, 255, 0.18);
  backdrop-filter: blur(14px);
  overflow: hidden !important ;
  transition: all 0.35s ease;
}
.faq-item:hover { transform: translateY(-3px); border-radius: 22px !important; overflow: hidden;  }

/* Open state — brighter cyan border */
.faq-item.open { border-color: rgba(30, 200, 255, 0.45); }

/* Question trigger button */
.faq-question {
  border-radius: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

/* Icon badge beside question */
.faq-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(30, 200, 255, 0.18);
  color: #1ec8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
/* Icon fills solid on open */
.faq-item.open .faq-icon { background: #1ec8ff; color: #041018; }

/* Question text */
.faq-question-text {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

/* Plus/close toggle circle */
.faq-toggle {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  transition: all 0.35s ease;
}
/* Rotates 45deg to X on open */
.faq-item.open .faq-toggle { background: #1ec8ff; color: #041018; border-color: #1ec8ff; transform: rotate(45deg); }

/* Answer panel — collapsed */
.faq-answer { max-height: 0; overflow: hidden; border-radius: 22px; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; opacity: 0; }
.faq-item.open .faq-answer { max-height: 400px; opacity: 1; }

/* Answer text */
.faq-answer-content {
  border-radius: 22px !important;
  overflow: hidden;
  padding: 0 26px 26px 86px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}


/* ================================================================
   §5  PRICING CTA SECTION
   Centered glassmorphic card with headline + CTA button.
================================================================ */

/* Section wrapper */
.pricing-cta-section {
  padding: 120px 20px;
  background: radial-gradient(circle at top, #0b1430 0%, #050814 65%, #02030a 100%);
}

/* Glassmorphic centered card */
.pricing-cta-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 60px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* CTA heading — Fjalla One */
.pricing-cta-container h2 {
  font-family: 'Fjalla One', sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
}
.pricing-cta-container h2 span { color: #1ec8ff; }

/* CTA description */
.pricing-cta-container p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto 34px;
}

/* CTA pill button */
.btn-pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1ec8ff, #16A2E7);
  color: #041018;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-pricing-cta i { font-size: 0.9rem; transition: transform 0.3s ease; }
.btn-pricing-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(30, 200, 255, 0.35); }
.btn-pricing-cta:hover i { transform: translateX(6px); }



/* ================================================================
   §2  SCROLLBAR STYLING
================================================================ */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #041018; }
::-webkit-scrollbar-thumb { background: rgba(30, 200, 255, 0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(30, 200, 255, 0.55); }


/* ================================================================
   HERO FULL-WIDTH FIX
   Apply this to Contact, About, and Pricing pages
   Replace the existing wrapper + hero + content rules with these
================================================================ */

/* ── Contact Page ── */
.contact-hero-wrapper {
  max-width: 100%;   /* was 1400px — caused white/dark side gaps */
  width: 100%;
  margin: 0;
}

/* .contact-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 60px 0;
  overflow: hidden;
  background: url("https://i.pinimg.com/1200x/f7/96/4b/f7964b2f2fd2c1cab619a19127f40115.jpg")
    right center / cover no-repeat;
  display: flex;
  align-items: center;
} */

.contact-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 140px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;

  background-color: #03111a;
  background-image: url("/newsite/images/OverlayImg/Overlayimg.webp");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right -2px top 80px;
}


.contact-hero-content {
  color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 70px 80px;
  max-width: 100%;
  width: 100%;
}

/* On very large screens, push text inward to stay readable */
@media (min-width: 1600px) {
  .contact-hero-content {
    padding-left: max(80px, calc((100vw - 1400px) / 2 + 80px));
  }
}

/* ── About Page ── */
.about-hero-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

/* .about-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 60px 0;
  overflow: hidden;
  background: url("https://i.pinimg.com/1200x/f7/96/4b/f7964b2f2fd2c1cab619a19127f40115.jpg")
    right center / cover no-repeat;
  display: flex;
  align-items: center;
} */

.about-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 140px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;

  background-color: #03111a;
  background-image: url("/newsite/images/OverlayImg/Overlayimg.webp");
  background-repeat: no-repeat;
  background-size:  auto 100%;
  background-position: right -2px top 80px;
}


.about-hero-content {
  color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 70px 80px;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1600px) {
  .about-hero-content {
    padding-left: max(80px, calc((100vw - 1400px) / 2 + 80px));
  }
}

/* ── Pricing Page ── */
.pricing-hero-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

/* .pricing-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 60px 0;
  overflow: hidden;
  background: url("https://i.pinimg.com/1200x/f7/96/4b/f7964b2f2fd2c1cab619a19127f40115.jpg")
    right center / cover no-repeat;
  display: flex;
  align-items: center;
} */


.pricing-hero {
  width: 100%;
  position: relative;
  min-height: 600px;
  padding: 140px 0 60px;
  overflow: hidden;
  display: flex;
  align-items: center;

  background-color: #03111a;
  background-image: url("/newsite/images/OverlayImg/Overlayimg.webp");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: right -2px top 80px;
}


.pricing-hero-content {
  color: #ffffff;
  position: relative;
  z-index: 2;
  padding: 70px 80px;
  max-width: 100%;
  width: 100%;
}

@media (min-width: 1600px) {
  .pricing-hero-content {
    padding-left: max(80px, calc((100vw - 1400px) / 2 + 80px));
  }
}


/* ================================================================
   RESPONSIVE BREAKPOINTS — All three pages
================================================================ */

@media (max-width: 1100px) {
  .contact-hero-content,
  .about-hero-content,
  .pricing-hero-content {
    padding: 70px 60px;
  }
}

@media (max-width: 992px) {
  .contact-hero,
  .about-hero,
  .pricing-hero {
    min-height: 460px;
  }

  .contact-hero-content,
  .about-hero-content,
  .pricing-hero-content {
    padding: 60px 50px;
  }

  .contact-hero-content h1,
  .about-hero-content h1,
  .pricing-hero-content h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .contact-hero,
  .about-hero,
  .pricing-hero {
    min-height: 400px;
    background-position: center center;
  }

  .contact-hero-content,
  .about-hero-content,
  .pricing-hero-content {
    padding: 60px 36px;
  }

  .contact-hero-content h1,
  .about-hero-content h1,
  .pricing-hero-content h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .contact-hero,
  .about-hero,
  .pricing-hero {
    min-height: 360px;
  }

  .contact-hero-content,
  .about-hero-content,
  .pricing-hero-content {
    padding: 75px 24px 60px;
  }

  .contact-hero-content h1,
  .about-hero-content h1,
  .pricing-hero-content h1 {
    font-size: 2.0rem;
    letter-spacing: -0.02em;
  }

  .contact-hero-content p,
  .about-hero-content p,
  .pricing-hero-content p {
    font-size: 0.96rem;
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .contact-hero-content,
  .about-hero-content,
  .pricing-hero-content {
    padding: 70px 18px 55px;
  }

  .contact-hero-content h1,
  .about-hero-content h1,
  .pricing-hero-content h1 {
    font-size: 1.8rem;
  }
}