/*!*************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/styles.css ***!
  \*************************************************************************/
:root {
  /* ===== Global Header Settings ===== */
  --font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  --font-family2: "Times New Roman", Times, serif;

  /* ===== Header Layout ===== */
  --topbar-h: 0px;
  --header-h: 130px;
  --header-padding-x: 0rem;
  --nav-padding-x: 280px;

  /* ===== Colors ===== */
  --header-bg: #fff;
  --header-border: #eee;
  --link-color: #333;
  --link-hover: #0077ff;

  /* ===== Contact Bar ===== */
  --contact-font-size: 1.4rem;
  --phone-icon-size: 30px;

  /* ===== Social Icons ===== */
  --social-icon-size: 28px;
  --social-gap: 12px;

  /* ===== Navigation ===== */
  --nav-gap: 2.5rem;
  --nav-font-size: 1.05rem;

  /* ===== Responsive ===== */
  --mobile-breakpoint: 768px;

  /* ===== Features Section ===== */
  --accent: #0077ff;
  --ink: #1f2937;
  --muted: #6b7280;
  --bg: #1e1e1e;;

  /* ===== Hero Section ===== */
  --bg-start: #0e1421;
  --bg-end: #0a0f1a;
  --glow-warm: 255,156,66;
  --glow-cool: 0,119,255;

  /* ===== Footer ===== */
  --footer-bg-start: #0e1421;
  --footer-bg-end: #0a0f1a;
  --footer-fg: #e5e7eb;
  --footer-muted: #a8b0be;
  --footer-accent: #5aa0ff;
  --footer-border: rgba(255,255,255,.08);
}

/* ================= Responsive Root Adjustments ================= */
@media (max-width: 1900px) { :root { --nav-padding-x: 170px; } }
@media (max-width: 1700px) { :root { --nav-padding-x: 100px; } }
@media (max-width: 1200px) { :root { --nav-padding-x: 0px; } }
@media (max-width: 900px)  { :root { --nav-padding-x: 0px; } }
@media (max-width: 600px)  { :root { --nav-padding-x: 20px; } }

/* ================= Base ================= */
* { font-family: var(--font-family); }
body, ul { margin: 0; padding: 0; }
ul { list-style: none; }

/* ================= Header ================= */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  padding: var(--topbar-h) var(--header-padding-x) 0 var(--header-padding-x);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: relative;
}

.contact-number-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 1.2rem;
  background: var(--header-bg);
  font-weight: 400;
  font-size: var(--contact-font-size);
  z-index: 1000;
}

.contact-number-container a { color: var(--link-hover); text-decoration: none; }
.contact-number-container a:hover { text-decoration: underline; }

.phone-icon {
  width: var(--phone-icon-size);
  height: var(--phone-icon-size);
  margin-right: .4rem;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 1fr 1.5fr;
  align-items: center;
  flex: 1;
  padding: 0 var(--nav-padding-x);
}

.logo { grid-row: 1 / 3; }
.logo img { height: calc(var(--header-h) - 10px); display: block; }

.header-contact { justify-self: end; align-self: start; display: flex; }

.social-icons { display: flex; gap: var(--social-gap); }
.social-link { height: var(--social-icon-size); width: var(--social-icon-size); }

.nav-links {
  display: flex;
  gap: var(--nav-gap);
  align-items: center;
  justify-self: end;
  margin-top: 35px;
}

.nav-links a {
  font-family: var(--font-family2);
  text-decoration: none;
  font-weight: 400;
  font-size: calc(var(--nav-font-size) * 1.2);
  color: var(--link-color);
  position: relative;
  transition: color 0.3s ease;
}


.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--link-hover);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--link-hover); }
.nav-links a:hover::after { width: 100%; }

@media (max-width: 768px) {
  .contact-number-container { display: none; }
  .site-header { padding-top: 0; }
}

/* ================= Mobile Header ================= */
.desktop-header { display: block; }
.mobile-header { display: none; }

@media (max-width: 1100px) {
  .desktop-header { display: none; }
  .mobile-header {
    display: flex;
    flex-direction: column;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    padding: 0.8rem 1.2rem;
  }
  .mobile-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .mobile-logo { height: 60px; }
  .mobile-phone {
    font-weight: 600;
    color: var(--link-hover);
    text-decoration: none;
  }
  .mobile-burger {
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--link-color);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 999;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav ul { list-style: none; margin: 0; padding: 0; }
  .mobile-nav li { border-bottom: 1px solid #f2f2f2; }
  .mobile-nav li:last-child { border-bottom: none; }
  .mobile-nav a {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
  }
  .mobile-nav a:hover { background: #f9f9f9; color: var(--link-hover); }
  .mobile-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
  }
  .mobile-social img { width: 28px; height: 28px; }
}

/* ================= 3 Card Section ================= */
.hp-features {
  background: radial-gradient(120% 90% at 20% 15%, rgba(var(--glow-warm), .14) 0%, rgba(var(--glow-warm), .06) 28%, transparent 60%), radial-gradient(120% 90% at 80% 85%, rgba(var(--glow-cool), .16) 0%, rgba(var(--glow-cool), .05) 30%, transparent 60%), linear-gradient(180deg, var(--bg-start), var(--bg-end));
  padding: 64px 20px;
}

.hp-features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hp-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height: 80%;
}

.hp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
  border-color: rgba(0,119,255,.25);
}

.hp-icon {
  width: 96px;
  height: 96px;
  display: block;
  margin: 6px auto 14px;
  object-fit: contain;
}

.hp-card-title {
  margin: 10px 0 8px;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .2px;
}

.hp-card-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

@media (max-width: 1000px) {
  .hp-features-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hp-features-inner { grid-template-columns: 1fr; }
  .hp-card { padding: 24px 18px; }
  .hp-icon { width: 84px; height: 84px; }
}

/* ================= Hero Duo Section ================= */
.hero-duo {
  position: relative;
  min-height: 833px;
  display: grid;
  place-items: center;
  padding: 40px 20px 0px;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(var(--glow-warm),.14) 0%, rgba(var(--glow-warm),.06) 28%, transparent 60%),
    radial-gradient(120% 90% at 80% 85%, rgba(var(--glow-cool),.16) 0%, rgba(var(--glow-cool),.05) 30%, transparent 60%),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
}

.hero-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  width: min(92vw, 1200px);
}

.tile {
  border-radius: 24px;
  overflow: hidden;
  background:#0b0f18;
  box-shadow: 0 22px 60px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  position: relative;
}
.tile::before {
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(80% 60% at 50% 0%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .6s ease, filter .6s ease;
  filter: saturate(1.02) contrast(1.02);
}
.tile:hover img { transform: scale(1.06); filter: saturate(1.08) contrast(1.06); }

@media (max-width: 900px) {
.tile img {
  width: 320px;
  height: 320px;
}
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 0 20px;
  pointer-events: none;
}
.hero-overlay h1 {
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin: 0 0 34rem;
  color: rgba(255,255,255,.96);
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hero-tagline {
  letter-spacing: .08em;
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.92);
}

/* ================= Footer ================= */
.site-footer {
  background: #121212;;
  color: var(--footer-fg);
  padding: 48px 20px 16px;
  border-top: 1px solid var(--footer-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.footer-block h4 {
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 .6rem;
}

.footer-list { list-style:none; margin:0; padding:0; }
.footer-list li+li { margin-top:.35rem; }
.footer-list a { color:var(--footer-fg); text-decoration:none; transition:color .2s ease,opacity .2s ease; }
.footer-list a:hover { color:var(--footer-accent); }

.footer-address { font-style:normal; color:var(--footer-muted); line-height:1.6; }
.footer-block p { color:var(--footer-muted); margin:0; }

.footer-bottom {
  max-width:1200px;
  margin:0 auto;
  padding-top:16px;
  border-top:1px solid var(--footer-border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.footer-brand { font-weight:600; letter-spacing:.04em; opacity:.9; }

.privacy-link {
  color:var(--footer-fg);
  text-decoration:none;
  padding:8px 12px;
  border:1px solid var(--footer-border);
  border-radius:10px;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}
.privacy-link:hover {
  background:rgba(255,255,255,.06);
  color:var(--footer-accent);
  border-color:rgba(90,160,255,.35);
}

.footer-meta {
  max-width:1200px;
  margin:10px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--footer-muted);
}
.footer-meta small { font-size:.72rem; opacity:.85; }
.footer-meta .credit a {
  color:var(--footer-muted);
  text-decoration:none;
  border-bottom:1px dotted rgba(255,255,255,.2);
}
.footer-meta .credit a:hover {
  color:var(--footer-accent);
  border-bottom-color:transparent;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; }
  .main { max-width: 760px !important; }
  .hero-overlay h1 {
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: clamp(2rem, 5vw, 4.5rem);
    margin: 50px 0 10rem;
    color: rgba(255,255,255,.96);
    text-shadow: 0 2px 20px rgba(0,0,0,.4);
  }
  .hero-tiles {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: min(92vw, 1200px);
  }
  .hero-tagline {
    margin-top: 35rem;
  }
}



/*!***********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles/customer-reviews.css ***!
  \***********************************************************************************/
:root {
  --accent:#0077ff;
  --ink:#1f2937;
  --muted:#6b7280;
  --card:#ffffff;
  --bg:#f7f8fb;
  --ring:rgba(0,119,255,.15);
}

/* Global resets */
body, ul { margin: 0; padding: 0; }
*{ font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }

/* Page layout */
.reviews {
  background: var(--bg);
  padding: 60px 20px 80px;
}
.reviews-inner {
  max-width: 1180px;
  margin: 0 auto;
}

/* Heading */
.reviews-title {
  font-weight: 400;
  font-size: 2.35rem;
  letter-spacing: .2px;
  color: #fff;
  text-align:center;
}

/* Review Grid */
.reviews-grid {
  display: grid;
  margin-top:40px;
  grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
  gap:26px;
}

/* Card */
.review-card {
  background:#fff;
  border-radius:15px;
  padding:28px 26px;
  border:1px solid rgba(0,0,0,.07);
  box-shadow:0 4px 14px rgba(0,0,0,.05);
  transition:.25s ease;
  display:flex;
  flex-direction:column;
}
.review-card:hover {
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  border-color:var(--accent);
}

/* Quote Text */
.review-text {
  font-size:1.05rem;
  line-height:1.7rem;
  color:var(--ink);
  margin:0 0 18px;
  font-style:italic;
  position:relative;
  padding-left:8px;
}

/* Add quotation marks */
.review-text::before { 
  content:"“"; 
  font-size:1.9rem;
  color:var(--muted); 
  position:absolute; 
  left:-4px; top:-6px;
}
.review-text::after { 
  content:"”"; 
  font-size:1.9rem;
  color:var(--muted);
  margin-left:4px;
}

.reviews-page-container{
  padding-top: 40px;
  background-color: #111111;
}


/* Reviewer */
.reviewer {
  font-weight:700;
  color:var(--accent);
  margin-top:auto;
  text-align:right;
  font-size:0.95rem;
  letter-spacing:.3px;
}

/* Responsive text bump */
@media (min-width:900px){
  .review-text { font-size:1.12rem; }
}

