
/* =============== 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; 
  height: auto;
}

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


/* =============== 2) 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: cover;  /* Make sure the logo fully covers the circle */
  border-radius: 50%;  /* Circle shape */
  background: #fff;
  padding: 0;  /* Remove extra padding */
}

/* Company info section */
.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;
}

/* Navigation styles */
.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;
}

/* =============== 3) Responsive Design =============== */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;  /* Stack header content on smaller screens */
    text-align: center;
  }

  .logo-area {
    justify-content: center;
    gap: 8px;
  }

  .company-name {
    font-size: 1.4rem;
  }

  .tagline {
    font-size: 0.8rem;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .nav a {
    padding: 10px 15px;
    font-size: 1rem;
  }
}

/* ===== Hamburger button (desktop hidden) ===== */
/* Desktop: hamburger hidden, inline nav */
.site-header { position: relative; }
.site-header .hamburger{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:30px;height:21px;
  position:absolute;right:20px;top:50%;
  transform:translateY(-50%);
  background:transparent;border:0;cursor:pointer;
  z-index:10001; /* keep on top */
}
.site-header .hamburger .line{
  height:3px;width:100%;
  background:#000; /* use currentColor if dark header */
  border-radius:5px;
  transition:transform .25s ease, opacity .25s ease;
}

/* Mobile dropdown */
@media (max-width:768px){
  .site-header .hamburger{ display:flex; }

  .site-header .nav{
    position:absolute;
    top:calc(100% + 8px);
    left:50%; transform:translateX(-50%);
    display:none; flex-direction:column; gap:6px;

    width:min(92vw,320px); max-height:60vh; overflow:auto;
    background:#fff; border:1px solid rgba(0,0,0,.08);
    border-radius:12px; padding:10px;
    box-shadow:0 8px 24px rgba(0,0,0,.12);
    z-index:10000;
  }
  .site-header .nav.is-open{ display:flex; }

  .site-header .nav a{
    display:block; padding:10px 8px; text-align:center;
    color:#000; text-decoration:none; border-radius:8px;
  }
  .site-header .nav a:hover{ background:rgba(0,0,0,.05); }

  /* Animate hamburger to X when active */
  .site-header .hamburger.is-active .line:nth-child(1){
    transform:translateY(9px) rotate(45deg);
  }
  .site-header .hamburger.is-active .line:nth-child(2){
    opacity:0;
  }
  .site-header .hamburger.is-active .line:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
  }

  /* Non-blocking backdrop (optional) */
  body.menu-open::before{
    content:""; position:fixed; inset:0;
    background:rgba(0,0,0,.12);
    z-index:999; pointer-events:none;
  }
}



/* =============== 4) Hero (background image + plain text) =============== */



/* =============== 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) */
/* Advisor Message Section */
.advisor-message {
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Advisor Information (Image and Text) */
.advisor-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.advisor-photo {
  border-radius: 50%;
  width: 150px; /* Adjust size for image */
  height: 150px;
  object-fit: cover;
  border: 4px solid #0044cc; /* Blue border */
}

.advisor-message h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

/* Blockquote Styling */
.advisor-message blockquote {
  font-style: italic;
  font-size: 1.2rem;
  color: #555;
  margin: 20px auto;
  max-width: 900px;
  position: relative;
}

.advisor-message blockquote p {
  margin: 0;
  padding: 10px;
}

.advisor-message blockquote::before {
  content: '“';
  font-size: 3rem;
  color: #0044cc;
  position: absolute;
  top: -15px;
  left: -30px;
}

.advisor-message blockquote::after {
  content: '”';
  font-size: 3rem;
  color: #0044cc;
  position: absolute;
  bottom: -15px;
  right: -30px;
}

/* Links Styling */
.advisor-message a {
  color: #0044cc;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

.advisor-message a:hover {
  text-decoration: underline;
  color: #0033cc; /* Darker blue when hovering */
}

.advisor-message p {
  font-size: 1rem;
  color: #333;
  margin-top: 15px;
}

/* Additional Spacing for Footer */
.advisor-message p a {
  margin-bottom: 15px;
}




/* 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) */

/* service card  */


/* Custom Fonts */
/* Global Styles */
:root {
  --bg: #ffffff;
  --bg-muted: #f7f8fb;
  --card: #ffffff;
  --text: #1a1a1a;
  --text-dim: #9e9e9e;
  --border: #e6e9f2;
  --brand: #0061ff;
  --brand-2: #00d1c1;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(0,0,0,.08);
  --hover-shadow: 0 16px 40px rgba(0, 97, 255, .28);
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111;
    --bg-muted: #2b2b2b;
    --card: #212121;
    --text: #f7f7f7;
    --text-dim: #bbb;
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 14px 30px rgba(0,0,0,.35);
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  color: var(--text);
  margin-bottom: 20px;
}

/* Grid Layout */
.grid--cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

/* Card Styles */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  color: inherit;
  text-decoration: none;
}

/* Hover effects */
.card:hover,
.card:focus {
  outline: none;
  transform: translateY(-8px);
  box-shadow: var(--hover-shadow);
  border-color: transparent;
}

/* Card Icon (image) */
.card__icon {
  position: relative;
  height: 180px;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.card__icon img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  transition: transform .3s ease;
}

.card:hover .card__icon img {
  transform: scale(1.05);
}

/* Card Title and Text */
.card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: var(--text);
  margin: 10px 0;
}

.card__text {
  font-size: 0.95rem;
  color: var(--text-dim);
}

/* Card Footer */
.card__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.card__tag {
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.card__footer:hover .card__tag {
  color: var(--brand-2);
}

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

@media (max-width: 640px) {
  .grid--cards { 
    grid-template-columns: 1fr; 
  }

  .card__icon {
    font-size: 28px;
  }

  .card__title {
    font-size: 1rem;
  }

  .card__text {
    font-size: 0.9rem;
  }

  .card__tag {
    font-size: 0.8rem;
  }
}

/* Button Styling */
.more-btn-container {
  text-align: center;
  margin-top: 30px;
}

/* Basic CSS for the See More Button */
.see-more-btn {
  padding: 12px 20px;
  font-size: 16px;
  background-color: #0061ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.see-more-btn:hover {
  background-color: #00d1c1;
}

/* Hide the extra cards initially */
.hidden-cards {
  display: none;
}

/* Add spacing */
.see-more-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* CSS for visible and hidden cards */



/* Why Choose Us list (polish) */
/* ===== Why Choose Us — premium feature list ===== */


/* =============== 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: 768px) {
  .logo-row img {
    width: 220px !important;
    height: 220px !important;
  }
}

@media (max-width: 480px) {
  .logo-row img {
    width: 240px !important;
    height: 240px !important;
  }
}


/* contact  */
/* ===== Contact (world-class) ===== */
/* ===== Contact Pro (floating labels, premium card UI) ===== */
/* Contact Us Section */
/* Contact Us Section */
/* Contact section */
/* ===== Contact (scoped to this section only) ===== */
#contact.contact-modern{
  --c-bg: #f9f9f9;
  --c-card: #ffffff;
  --c-text: #333333;
  --c-muted: #666666;
  --c-accent: #0061ff;
  --c-accent-hover: #004bb5;
  --c-shadow: 0 4px 12px rgba(0,0,0,.08);

  padding: 60px 0;
  background: var(--c-bg);
  font-family: Arial, Helvetica, sans-serif;
}

/* Optional: auto-adapt for dark mode */
@media (prefers-color-scheme: dark){
  #contact.contact-modern{
    --c-bg: #0c0f17;
    --c-card: #121828;
    --c-text: #e8eefc;
    --c-muted: #b9c3e6;
    --c-accent: #6eb8ff;
    --c-accent-hover: #98cbff;
    --c-shadow: 0 6px 16px rgba(0,0,0,.35);
  }
}

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

#contact .contact-header h2{
  font-size: 32px;
  font-weight: 800;
  color: var(--c-text);
  margin: 0 0 8px;
  letter-spacing: .2px;
}

#contact .contact-header p{
  font-size: 16px;
  color: var(--c-muted);
  margin: 6px auto 0;
  max-width: 820px;
  line-height: 1.65;
}

/* Layout: responsive grid with equal cards */
#contact .contact-info{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Cards */
#contact .contact-item{
  background: var(--c-card);
  color: var(--c-text);
  padding: 22px 20px;
  border-radius: 14px;
  box-shadow: var(--c-shadow);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  border: 1px solid rgba(0,0,0,.06);
}

@media (prefers-color-scheme: dark){
  #contact .contact-item{ border-color: rgba(255,255,255,.06); }
}

#contact .contact-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

#contact .contact-item i{
  font-size: 38px;
  color: var(--c-accent);
  margin-bottom: 12px;
  display: inline-block;
}

#contact .contact-item h3{
  font-size: 20px;
  font-weight: 700;
  color: var(--c-text);
  margin: 6px 0 8px;
}

#contact .contact-item p{
  font-size: 16px;
  color: var(--c-muted);
  margin: 0;
  line-height: 1.65;
}

/* Links: phones & email */
#contact .contact-item a{
  color: var(--c-accent);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
  transition: color .2s ease, opacity .2s ease;
}

#contact .contact-item a:hover{
  color: var(--c-accent-hover);
}

#contact .contact-item a:focus-visible{
  outline: 2px dashed var(--c-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Spacing tweaks for stacked links (phone/emails) */
#contact .contact-item p a + br + a,
#contact .contact-item p a + a{
  display: inline-block;
  margin-top: 4px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px){
  #contact .contact-info{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  #contact .contact-header h2{ font-size: 30px; }
}

@media (max-width: 768px){
  #contact.contact-modern{ padding: 48px 0; }
  #contact .contact-info{ grid-template-columns: 1fr; }
  #contact .contact-header h2{ font-size: 28px; }
  #contact .contact-header p{ font-size: 15px; }
}

@media (max-width: 480px){
  #contact .contact-item{ padding: 18px 16px; }
  #contact .contact-item i{ font-size: 32px; }
  #contact .contact-item h3{ font-size: 19px; }
  #contact .contact-item p{ font-size: 15px; }
}


/* 



footer

*/
.footer {
  background: #370403;
  color: #eee;
  padding: 50px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Section */
.footer-left {
  flex: 1 1 280px;
  line-height: 1.6;
}

.footer-left h3 {
  margin-bottom: 8px;
  color: #fff;
}

.footer-left a {
  color: #fff;
  text-decoration: underline;
}

.footer-left p,
.footer-left address {
  margin: 4px 0 15px;
}

/* Right Section */
.footer-right {
  flex: 0 1 200px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap; 
}

.social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.social-links li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.social-links li:hover {
  transform: scale(1.1);
  background-color: #ddd;
}

.social-links img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full fill */
}



/* Footer bottom */
.footer-right .copyright {
  font-size: 16px;
  color: #bbb;
  font-weight: 600;
  margin-top: auto;
  white-space: nowrap;  
}




/* 


*/
/* ===== 100% Scoped: Rainbow Intl Pre-Footer ===== */
#ri-prefooter{
  /* variables scoped ONLY to this section */
  --bg: #0b0f1a;
  --card: #0f1424;
  --text: #e6eefc;
  --muted: #b9c3e6;
  --accent: #13E8E9;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);

  background: var(--bg);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

#ri-prefooter .ri-prefooter__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#ri-prefooter .ri-prefooter__grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Left card */
#ri-prefooter .ri-prefooter__location{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

#ri-prefooter .ri-prefooter__title{
  margin: 0 0 12px;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: .3px;
}

#ri-prefooter .ri-prefooter__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

#ri-prefooter .ri-prefooter__address{
  display: inline-block;
  text-decoration: none;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 12px;
  transition: color .2s ease, transform .2s ease, border-color .2s ease;
  will-change: transform;
}

#ri-prefooter .ri-prefooter__address strong{
  color: var(--text);
  font-weight: 700;
}

#ri-prefooter .ri-prefooter__address:hover,
#ri-prefooter .ri-prefooter__address:focus{
  color: var(--text);
  border-color: #8cf5f6;
  transform: translateY(-1px);
  outline: none;
}

/* Right (map) */
#ri-prefooter .ri-prefooter__map .ri-prefooter__map-container{
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

@supports not (aspect-ratio: 16 / 10){
  #ri-prefooter .ri-prefooter__map .ri-prefooter__map-container{ padding-top: 62.5%; }
  #ri-prefooter .ri-prefooter__map .ri-prefooter__map-container iframe{
    position: absolute; inset: 0; width: 100%; height: 100%;
  }
}

#ri-prefooter .ri-prefooter__map .ri-prefooter__map-container iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Keyboard focus (scoped) */
#ri-prefooter a:focus-visible{
  outline: 2px dashed var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ===== Responsive (scoped) ===== */
@media (max-width: 1024px){
  #ri-prefooter .ri-prefooter__grid{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  #ri-prefooter .ri-prefooter__location{ padding: 20px; }
}

@media (max-width: 768px){
  #ri-prefooter{ padding: 44px 0; }
  #ri-prefooter .ri-prefooter__grid{ grid-template-columns: 1fr; }
  #ri-prefooter .ri-prefooter__map .ri-prefooter__map-container{ aspect-ratio: 16 / 12; }
}

@media (max-width: 480px){
  #ri-prefooter .ri-prefooter__container{ padding: 0 14px; }
  #ri-prefooter .ri-prefooter__title{ font-size: 1.25rem; }
  #ri-prefooter .ri-prefooter__text{ font-size: .98rem; }
}



/* Particles canvas */
#particles-js {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a1a;           /* darker, neutral bg */
  background-image: url("");           /* optional */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 0;
}

/* Content over particles */
#particles-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#particles-section .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e6eefc;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0 20px;
  width: 100%;
  max-width: 900px;
  box-sizing: border-box;
  z-index: 1;                          /* above particles */
}

/* Updated headings & text (now using <h1>) */
#particles-section .content h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

#particles-section .content p {
  font-size: 1.1rem;
  margin: 0 0 12px;
  color: #cfd8ff;
}

/* Buttons used in the new HTML: .btn and .cta-button */
#particles-section .content .btn,
#particles-section .content .cta-button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

/* Primary action (Explore Our Services) */
#particles-section .content .btn {
  background-color: #13E8E9;
  color: #001122;
  box-shadow: 0 6px 18px rgba(19, 232, 233, 0.25);
}
#particles-section .content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(19, 232, 233, 0.35);
}

/* Secondary action (Book a Meeting) */
#particles-section .content .cta-button {
  background-color: transparent;
  color: #e6eefc;
  border: 2px solid #e6eefc;
  margin-left: 10px;
}
#particles-section .content .cta-button:hover {
  background-color: #e6eefc;
  color: #0a0a1a;
  transform: translateY(-2px);
}

/* Optional: stats overlay (if you use particles stats) */
.count-particles {
  background: #0a0a1a;
  position: absolute;
  top: 48px;
  left: 0;
  width: 92px;
  color: #13E8E9;
  font-size: 0.8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding: 4px 0 3px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  z-index: 2;
}
.js-count-particles { font-size: 1.1em; }
#stats { border-radius: 3px 3px 0 0; overflow: hidden; }
#stats, .count-particles { -webkit-user-select: none; margin-top: 5px; margin-left: 5px; }
.count-particles { border-radius: 0 0 3px 3px; }

/* Responsive tweaks */
@media (max-width: 1024px) {
  #particles-section .content { top: 45%; transform: translate(-50%, -45%); }
  #particles-section .content h1 { font-size: 2rem; }
  #particles-section .content p { font-size: 1.05rem; }
  #particles-section .content .btn,
  #particles-section .content .cta-button { padding: 11px 20px; }
}

@media (max-width: 768px) {
  #particles-section .content { top: 40%; transform: translate(-50%, -40%); }
  #particles-section .content h1 { font-size: 1.7rem; }
  #particles-section .content p { font-size: 1rem; }
  #particles-section .content .btn,
  #particles-section .content .cta-button {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 12px auto 0;
  }
}

@media (max-width: 480px) {
  #particles-section .content { top: 35%; transform: translate(-50%, -35%); padding: 0 12px; }
  #particles-section .content h1 { font-size: 1.45rem; }
  #particles-section .content p { font-size: 0.95rem; }
  #particles-section .content .btn,
  #particles-section .content .cta-button { padding: 10px 16px; }
}
