

/* =============== 1) Base / Reset =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body { height: 100%; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  background: #f9f9f9;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =============== 2) Design Tokens (easy variables) =============== */



/* =============== 3) Header & Navigation =============== */
.site-header {
  background: #4B2E2B;     /* solid, trustworthy blue */
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;         /* allows wrapping on small screens */
}

/* Logo + company text block */
.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
}

.company-info { display: flex; flex-direction: column; }
.company-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.tagline {
  font-size: 0.9rem;
  color: #e3e3e3;
}

/* Nav */
.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav a:hover,
.nav .is-active {
  background: #ffa500;    /* orange highlight on hover/active */
  color: #fff;
}


/* =============== 4) Hero (background image + plain text) =============== */
/* Put your image at images/hero.png */
.hero {
  width: 100%;
  height: 100vh;  /* full screen height on desktop */
  background: url("../images/hero.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}
@media (max-width: 768px) {
  .hero {
    height: 60vh; /* Adjust height for mobile and tablet */
    background-size: cover; /* Ensure the image covers the section */
  }
}

/* Further adjustment for very small screens (e.g., phones) */
@media (max-width: 480px) {
  .hero {
    height: 50vh; /* Further reduce height on very small devices */
    padding: 0 10px; /* Reduce padding to prevent text from touching edges */
  }
  
  .hero h1 {
    font-size: 2rem; /* Adjust font size for better readability on small screens */
  }

  .hero p {
    font-size: 1rem; /* Smaller text for paragraph */
  }
}


.hero .btn:hover { background: #004d33; } */


/* =============== 5) Generic Section Styles =============== */
.section {
  padding: 56px 0;
  background: var(--panel);
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 2rem;
}


/* =============== 6) About Section (world-class but simple) =============== */
/* About layout */
/* ===== About — layout ===== */
/* ===== About (Two-Box Layout) ===== */
/* ===== About (Two-Box Equal Layout) ===== */
/* ===========================
   ABOUT SECTION (WORLD CLASS)
   =========================== */

/* ===========================
   ABOUT — Two-Box (Pro)
   =========================== */

.about-two { padding: 80px 0; background: #f9fafb; }

/* Equal two columns; stretches height to match */
.about-two__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Generic panel styling */
.about-two__box{
  background: #fff;
  border: 1px solid #e5e7eb;      /* light border */
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.about-two__box:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  border-color: #cbd5e1;
}

/* LEFT: text box */
.about-two__info{ padding: 32px 28px; justify-content: center; }

.about-two__title{
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 12px;
  position: relative;
}
.about-two__title::after{
  content:"";
  display:block;
  width: 72px; height: 3px; margin-top: 10px;
  background: #0ea5e9;            /* brand accent (sky blue) */
  transition: width .25s ease;
}
.about-two__title:hover::after{ width: 100px; }

.about-two__lead{
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
  margin: 10px 0 16px;
  max-width: 65ch;
}

/* Universal bullets, with glide hover */
.about-two__list{
  list-style: none;
  padding: 0;
  margin: 8px 0 18px;
}
.about-two__list li{
  position: relative;
  padding-left: 20px;
  margin: 7px 0;
  color: #4b5563;
  transition: color .2s ease, transform .15s ease;
}
.about-two__list li::before{
  content:"";
  position:absolute; left:0; top:.6em;
  width: 8px; height: 8px; border-radius: 50%;
  background: #0ea5e9;
}
.about-two__list li:hover{
  color:#0f172a;
  transform: translateX(4px);
}

/* Stats row */
.about-two__stats{
  display: flex;
  gap: 12px;
  margin: 14px 0 18px;
}
.about-two__stats .stat{
  flex: 1;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.about-two__stats .stat:hover{
  transform: translateY(-3px);
  border-color:#cbd5e1;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}
.about-two__stats .num{
  font-size: 1.4rem;
  font-weight: 800;
  color: #006d4a;                /* CTA green for emphasis */
}
.about-two__stats .label{ color:#6b7280; font-size:.92rem; margin-top:4px; }

/* Centered CTA, compact size */
.about-two__cta{
  align-self: center;            /* centers inside the flex column */
  background: #006d4a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: background .2s ease, transform .12s ease, box-shadow .2s ease;
}
.about-two__cta:hover{
  background:#004d33;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

/* RIGHT: image box (no stretch, neat crop) */
.about-two__media{ margin: 0; }
.about-two__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .3s ease;
}
.about-two__media:hover img{ transform: scale(1.04); }

/* Responsive: stack on mobile */
@media (max-width: 980px){
  .about-two__grid{ grid-template-columns: 1fr; }
}

/* Small phones: tighten spacing */
@media (max-width: 560px){
  .about-two { padding: 56px 0; }
  .about-two__info{ padding: 24px 20px; }
  .about-two__title{ font-size: 1.6rem; }
  .about-two__cta{ min-width: 160px; padding: 9px 16px; }
}



/* =============== 7) Products (category cards) =============== */
/* Your index uses: .grid .grid--cards and also .product-grid/.product-card in earlier drafts.
   We support both so you can use either. */

/* ===== Products Grid — Premium Cards ===== */
/* ========== Sections (Categories + Products) ========== */

/* Palette & tokens (optional, safe defaults) */
:root {
  --bg: #ffffff;
  --bg-muted: #f7f8fb;
  --card: #ffffff;
  --text: #0b1020;
  --text-dim: #55607a;
  --border: #e6e9f2;
  --brand: #0061ff;
  --brand-2: #00d1c1;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(0,0,0,.08);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1020;
    --bg-muted: #101831;
    --card: #0f1530;
    --text: #e7eaf2;
    --text-dim: #aab2c8;
    --border: rgba(255,255,255,.08);
    --shadow: 0 14px 30px rgba(0,0,0,.35);
  }
}

/* Container inside sections */
.section .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section shells */
.section {
  padding: 64px 0;
  background: var(--bg);
}

.section--muted {
  background: var(--bg-muted);
}

/* Titles & subtitles */
.section h2 {
  margin: 0 0 10px;
  line-height: 1.2;
  font-size: clamp(22px, 3.2vw, 34px);
  color: var(--text);
}

.section .sub {
  margin: 0 0 26px;
  color: var(--text-dim);
  font-size: 0.98rem;
}

/* ========== Grids ========== */

.grid {
  display: grid;
  gap: 18px;
}

/* Category cards grid */
.grid--cards {
  grid-template-columns: repeat(4, 1fr);
}


/* Product cards grid */
.grid--products {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsiveness */
@media (max-width: 1024px) {
  .grid--cards { grid-template-columns: repeat(3, 1fr); }
  .grid--products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--cards,
  .grid--products { grid-template-columns: 1fr; }
}

/* ========== Category Card ========== */

.card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: inherit;
  text-decoration: none;
}

.card:hover,
.card:focus {
  outline: none;
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border-color: transparent;
}

.card__icon {
  font-size: 28px;
  line-height: 1;
}

.card h3 {
  margin: 2px 0 4px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text);
}

.card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.98rem;
}

.card__tag {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;              /* gradient text */
}

/* ========== Product Card ========== */

.p-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.p-card:hover,
.p-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(0,0,0,.12);
  border-color: transparent;
}

/* Product image */
.p-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #e9eef7;
}

/* Body */
.p-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-card__body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text);
}

.p-card .meta {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* ========== Buttons (in sections) ========== */

.btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .12s ease, filter .2s ease, box-shadow .2s ease;
}

.btn:active { transform: translateY(1px); }

.btn--small { padding: 8px 12px; font-size: 14px; }

.btn--primary {
  color: #0b1020;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 6px 14px rgba(0, 97, 255, .22);
}

.btn--primary:hover,
.btn--primary:focus {
  filter: brightness(1.05);
  box-shadow: 0 10px 22px rgba(0, 97, 255, .28);
  outline: none;
}

/* ========== Utility (optional but helpful) ========== */

.section .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(0, 209, 193, .12);
  border: 1px solid rgba(0, 209, 193, .35);
}


/* Why Choose Us list (polish) */
/* ===== Why Choose Us — premium feature list ===== */
@media (prefers-color-scheme: dark){
  :root{ --ink:#e2e8f0; --subtle:#94a3b8; --line:#222a3a; --section:#0a0f1a; --surface:#0b1220; }
}

.why-split{ background:var(--section); padding:clamp(42px,6vw,96px) 0; }
.why-split__wrap{ width:min(1200px,92vw); margin:auto; display:grid; grid-template-columns: 1fr 1.2fr; gap:min(6vw,48px); align-items:start; }
@media (max-width: 980px){ .why-split__wrap{ grid-template-columns:1fr; } }

.why-split__visual{ position:sticky; top:16px; align-self:start; text-align:center; }
.why-split__svg{ width:min(520px,100%); height:auto; display:block; margin-inline:auto; }
.why-split__caption{ color:var(--subtle); margin:.6rem 0 0; font-size:.95rem; }

.why-split__heading{ margin:0 0 .4rem; color:var(--ink); font-size:clamp(1.6rem,1.2rem + 1.4vw,2.4rem); letter-spacing:-.01em; }
.why-split__lede{ margin:0 0 1.2rem; color:var(--subtle); max-width:68ch; }

.why-rail{ margin:0; padding:0; list-style:none; border-left:2px dashed color-mix(in oklab, var(--brand) 45%, var(--line)); }
.why-rail__item{ position:relative; padding: 18px 0 18px 22px; display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:start; }
.why-rail__item + .why-rail__item{ border-top:1px solid var(--line); }

.why-rail__dot{
  position:absolute; left:-15px; top:22px;
  width:28px; height:28px; border-radius:50%;
  display:grid; place-items:center; font-size:16px; background:var(--surface);
  box-shadow:0 6px 18px rgba(15,23,42,.08);
  outline:2px solid color-mix(in oklab, var(--brand) 55%, transparent);
}
.why-rail__title{ margin:0; font-weight:750; color:var(--ink); font-size:1.05rem; }
.why-rail__text{ margin:.25rem 0 0; color:var(--subtle); line-height:1.6; }

.why-rail__item:hover .why-rail__title{ text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
@media (prefers-reduced-motion: reduce){ .why-rail__item *{ transition:none!important; } }

/* =============== 9) Testimonials =============== */
@media (prefers-color-scheme: dark){
  :root{
    --ink:#e2e8f0; --muted-ink:#cbd5e1; --subtle:#94a3b8;
    --line:#243044; --surface:#0b1220; --section:#0a0f1a;
    --shadow: 0 10px 28px rgba(0,0,0,.35);
  }
}

/* ------ Section scaffold ------ */
/* ========= TOKENS & DARK MODE ========= */
/* ===== Basic tokens (classic CSS) ===== */


/*  */
/* ===== About — Mission (hero-ish card) ===== */
/* ===== Perfected About Sections ===== */
/* Global Reset */
/* Global Reset */
/* Global Reset */
/* Global Reset */
/* Global Reset */
* /* Global Reset */
* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f4f7fc;
  color: #333;
}

/* Section Styles */
.section {
  padding: 60px 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

h2, h3 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #003366;
}

ul {
  list-style: none;
}

/* Hero Section */
.about-hero__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.about-hero__copy {
  flex-basis: 50%;
}

.about-hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 20px;
}

.about-hero__lead {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.about-hero__media {
  flex-basis: 50%;
}

.about-hero__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.about-hero__media img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* KPI Boxes */
.about-kpis {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.kpi {
  background-color: #ffffff;
  padding: 20px 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  margin-right: 20px;
}

.kpi:last-child {
  margin-right: 0;
}

.kpi:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.kpi__num {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
}

.kpi__label {
  font-size: 1.1rem;
  color: #555;
}

/* Who We Are Section */
.about-split {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.about-split__panel {
  flex-basis: 48%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-split__panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-split__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 20px;
}

.about-split__panel p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.about-split__panel ul {
  padding-left: 20px;
}

.about-split__panel ul li {
  margin-bottom: 15px;
}

.about-split__panel ul li strong {
  color: #007bff;
}

/* Values Section */
.about-split__panel.values {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-split__panel.values:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.list {
  margin-top: 20px;
}

.list li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* Logos Section */
.logos {
  background-color: #ffffff;
  text-align: center;
  padding: 60px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logos__title {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 40px;
}

.logo-row {
  display: flex;
  justify-content: center;  /* Centering logos */
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.logo-row img {
  width: 200px;
  height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: contain; /* Ensures proper scaling */
}

.logo-row img:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Footer */
.site-footer {
  background: #f8fafc;
  color: #475569;
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 16px 0;
}

.site-footer a { 
  color: #0369a1; 
  text-decoration: underline; 
}

/* Responsive Tweaks */
@media screen and (max-width: 768px) {
  /* Hero Section */
  .about-hero__wrap {
    flex-direction: column;
    text-align: center;
  }

  .about-hero__copy {
    flex-basis: 100%;
    margin-bottom: 30px;
  }

  .about-hero__media {
    flex-basis: 100%;
  }

  /* KPI Boxes */
  .about-kpis {
    flex-direction: column;
    gap: 30px;
  }

  .kpi {
    margin-right: 0;
    width: 100%; /* Ensure each KPI box takes up the full width on small screens */
  }

  /* Who We Are Section */
  .about-split {
    flex-direction: column;
    gap: 30px;
  }

  .about-split__panel {
    flex-basis: 100%;
    margin-bottom: 30px;
  }

  .about-split__panel.values {
    margin-top: 20px;
  }

  /* Metrics Section */
  .about-metrics {
    flex-direction: column;
    gap: 30px;
  }

  .metric-box {
    flex-basis: 100%;
    padding: 30px;
  }
}

/* Logo section responsive */
@media (max-width: 768px) {
  .logo-row {
    flex-direction: column; /* Stack logos vertically on smaller screens */
    align-items: center;
  }

  .logo-row img {
    width: 120px; /* Adjust logo size for smaller screens */
    height: auto;
    margin-bottom: 20px;
  }
}

/* Smaller devices like phones */
@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .logo-row img {
    width: 100px; /* Further adjust logo size */
    height: auto;
  }
}



/*  */


/* contact  */
/* ===== Contact (world-class) ===== */
/* ===== Contact Pro (floating labels, premium card UI) ===== */
/* General Contact Section Styling */
/* General Contact Section Styling */
.contact-modern {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.contact-header p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Info Items */
.contact-item {
  flex: 1 1 30%;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact-item i {
  font-size: 40px;
  color: #0061ff;
  margin-bottom: 15px;
}

.contact-item h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.contact-item p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.contact-item a {
  color: #0061ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #004bb5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .contact-info {
    flex-direction: column;
  }
  .contact-header h2 {
    font-size: 28px;
  }
  .contact-header p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-item {
    flex: 1 1 100%;
    padding: 15px;
  }
  .contact-item i {
    font-size: 30px;
  }
  .contact-item h3 {
    font-size: 20px;
  }
}


/* footer */
/* General Pre-Footer Styling */
/* Pre-Footer Section Styling */
.pre-footer {
  background-color: #4B2E2B;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.pre-footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pre-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Changed to 2 columns */
  gap: 40px;
}

.pre-footer h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.pre-footer p {
  font-size: 16px;
  color: #eaeaea;
}

.pre-footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pre-footer a:hover {
  color: #f1f1f1;
}

/* Location and Address Styling */
.pre-footer-location p {
  font-size: 16px;
  color: #eaeaea;
}

.pre-footer-map {
  /* Ensure the map takes up the full available space */
  width: 100%;
  height: 100%;
}

.clickable-address {
  font-size: 16px;
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.3s ease;
}

.clickable-address:hover {
  color: #4B2E2B;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .pre-footer-content {
    grid-template-columns: 1fr; /* Stack the content vertically */
  }
  .pre-footer h3 {
    font-size: 20px;
  }
  .pre-footer p {
    font-size: 14px;
  }
}

/*  */



/* ---- particles.js container ---- */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #b61924;  /* Background color */
  background-image: url("");  /* Optional background image */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* Content section */
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  /* Centering the content */
  color: #d3d3d3;
  text-align: center;  /* Center-align text by default */
  font-family: Arial, sans-serif;
  padding: 0 20px;  /* Add padding for small screens */
  width: 100%;
  max-width: 900px;  /* Set a max-width to prevent the content from becoming too wide */
  box-sizing: border-box;
}

.content h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.content a.cta {
  display: inline-block;
  padding: 10px 20px;
  background-color: #13E8E9;
  color: #000022;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
}

/* Stats - particles count */
.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats, .count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .content {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
  }

  .content h2 {
    font-size: 1.8em;
  }

  .content p {
    font-size: 1.1em;
  }

  .content a.cta {
    font-size: 1.1em;
    padding: 10px 18px;
  }
}

@media (max-width: 768px) {
  .content {
    top: 30%;
  }

  .content h2 {
    font-size: 1.6em;
  }

  .content p {
    font-size: 1em;
  }

  .content a.cta {
    font-size: 1em;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .content {
    top: 25%;
    padding: 0 10px;
  }

  .content h2 {
    font-size: 1.4em;
  }

  .content p {
    font-size: 0.9em;
  }

  .content a.cta {
    font-size: 0.9em;
    padding: 8px 12px;
  }
}
