/* ============================================================
   RAJU DESIGNER — MASTER CSS v5
   Mobile-first. No horizontal overflow. Clean heading colours.
   All external CSS (Bootstrap/FA) loaded normally — no JS tricks.
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --primary:   #1a1a2e;
  --accent:    #c8850a;   /* 4.6:1 on white — WCAG AA */
  --accent-dk: #a36c08;
  --gold:      #f0a500;   /* only on dark backgrounds */
  --gold-lt:   #fbbf24;   /* bright gold on dark bg */
  --white:     #ffffff;
  --body-txt:  #333333;   /* 12:1 on white */
  --muted-txt: #555555;   /* 7.4:1 on white */
  --border:    #e0e0e0;
  --bg-light:  #f7f8fa;
  --green:     #127036;   /* AA on white */
  --wa-green:  #128c3f;
  --ff-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --sh-sm: 0 2px 10px rgba(0,0,0,.08);
  --sh-md: 0 6px 24px rgba(0,0,0,.10);
  --sh-lg: 0 16px 48px rgba(0,0,0,.13);
}

/* ---- MOBILE-FIRST RESET ---- */
/* The single most important rule to fix horizontal mobile scroll */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Do NOT set overflow-x here — use max-width on containers */
}

body {
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-txt);
  background: var(--white);
  margin: 0;
  padding: 0;
  /* FIX: overflow-x on BOTH html and body stops mobile right-scroll */
  overflow-x: clip;
  min-width: 0;
}

/* Prevent ANY element from causing horizontal overflow */
img, video, iframe, canvas, svg { max-width: 100%; }
img { height: auto; display: block; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.75rem;
  /* Default heading colour — DARK, high contrast */
  color: var(--primary);
}

/* On dark backgrounds headings must be white — use .text-white or section classes */
.dark-bg h1, .dark-bg h2, .dark-bg h3,
.dark-bg h4, .dark-bg h5, .dark-bg h6,
.service-hero h1, .why-section h2,
.callout-section h2, .svc-cta h2,
.hyderabad-section h2, .results-strip h2,
footer h2 { color: var(--white); }

h1 { font-size: clamp(24px, 4.5vw, 46px); }
h2 { font-size: clamp(20px, 3.5vw, 34px); }
h3 { font-size: clamp(17px, 2.5vw, 24px); }
h4 { font-size: clamp(15px, 2vw, 19px); }
h5 { font-size: 15px; }
h6 { font-size: 13px; }

p { margin-top: 0; margin-bottom: 1rem; }

/* Links */
a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
a:hover { color: var(--accent-dk); }
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Nav/button links — intentionally no underline (shape makes them distinct) */
.nav-link, .btn-primary-cta, .btn-outline-cta, .btn-nav-cta,
.btn-hero-card, .btn-hero-card-wa, .btn-plan, .footer-cta-btn,
.sidebar-wa-btn, .related-svc-card, .dropdown-item,
.sidebar-quick-links a, .filter-btn, .skill-btn {
  text-decoration: none !important;
}

ul { padding: 0; list-style: none; margin: 0; }

/* Screen reader only */
.skip-link {
  position: absolute;
  top: -50px; left: 0;
  background: var(--accent);
  color: var(--white);
  padding: 10px 18px;
  z-index: 99999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  transition: top .25s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.top-bar {
  background: var(--primary);
  color: #d0d0d0;
  padding: 7px 0;
  font-size: 12px;
  /* Prevent top-bar from overflowing on small screens */
  overflow: hidden;
}
.top-bar a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}
.top-bar a:hover { color: var(--white); }

.top-bar-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.top-bar-info i { color: var(--gold); font-size: 11px; flex-shrink: 0; }

.top-social { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.top-social a {
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
.top-social a:hover { color: var(--gold); }

/* Sticky header */
#main-header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
#main-header.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.15); }

/* Brand */
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none !important;
}
.brand-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary) !important;
  display: block;
  line-height: 1.2;
}
.brand-tag {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  display: block;
}

/* Nav links */
.nav-link {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary) !important;
  padding: 8px 10px !important;
  border-radius: 4px;
  position: relative;
  transition: color .2s !important;
}
.nav-link:hover { color: var(--accent) !important; }
.nav-link.active {
  color: var(--accent) !important;
  font-weight: 700;
}
@media (min-width: 992px) {
  .nav-link::after {
    content: '';
    position: absolute; bottom: 2px; left: 10px; right: 10px;
    height: 2px; background: var(--accent); border-radius: 2px;
    transform: scaleX(0);
    transition: transform .25s;
    transform-origin: center;
  }
  .nav-link:hover::after,
  .nav-link.active::after { transform: scaleX(1); }
}

/* CTA button in nav */
.btn-nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  border-radius: var(--r-sm) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  padding: 9px 18px !important;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: background .2s !important;
}
.btn-nav-cta:hover {
  background: var(--accent-dk) !important;
  color: var(--white) !important;
}
.btn-nav-cta::after { display: none !important; }

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 230px;
}
.dropdown-item {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  border-radius: 6px;
  padding: 9px 12px;
  transition: background .2s;
  text-decoration: none !important;
}
.dropdown-item:hover { background: #fff5e0; color: var(--accent); }
.dropdown-item i { width: 18px; text-align: center; color: var(--accent); }

/* Mobile nav collapse */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-top: 2px solid var(--border);
    padding: 12px 0 16px;
    margin-top: 8px;
    /* CRITICAL: prevent mobile nav from causing overflow */
    width: 100%;
    max-width: 100%;
  }
  .navbar-nav { width: 100%; }
  .nav-link { padding: 10px 16px !important; border-bottom: 1px solid #f0f0f0; }
  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    border: 1px solid #f0f0f0;
    margin: 4px 16px;
    width: calc(100% - 32px);
  }
  .btn-nav-cta {
    margin: 8px 16px 0;
    display: block;
    text-align: center;
    padding: 12px 16px !important;
  }
  .gap-lg-1 { gap: 0 !important; }
}

/* Toggler */
.navbar-toggler { border: 2px solid var(--border) !important; padding: 6px 10px; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(200,133,10,.2) !important; }

/* ============================================================
   GLOBAL SECTION STYLES
   ============================================================ */
section { overflow: hidden; }

.section-pad { padding: 70px 0; }
@media (max-width: 767px) { .section-pad { padding: 50px 0; } }

.section-title { margin-bottom: 40px; }
.section-title .label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--muted-txt); max-width: 600px; margin-bottom: 0; }
.section-title.center { text-align: center; }
.section-title.center p { margin-left: auto; margin-right: auto; }

/* Accent divider */
.divider {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 10px;
}
.divider.center { justify-content: center; }
.divider span:nth-child(1) { width: 32px; height: 3px; background: var(--accent); border-radius: 2px; }
.divider span:nth-child(2) { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.divider span:nth-child(3) { width: 14px; height: 3px; background: var(--accent); border-radius: 2px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary-cta:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,133,10,.35);
}

.btn-outline-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--primary) !important;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 11px 26px;
  border-radius: var(--r-sm);
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-outline-cta:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* ============================================================
   HERO (HOMEPAGE)
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1628 60%, #220e00 100%);
  padding: 80px 0 70px;
  overflow: hidden;
}
@media (max-width: 767px) { .hero-section { padding: 60px 0 50px; } }

.hero-section h1 {
  color: var(--white);
  font-size: clamp(26px, 4.5vw, 50px);
  margin-bottom: 16px;
}
.hero-section h1 span { color: var(--gold-lt); }
.hero-section p.lead {
  color: rgba(255,255,255,.82);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,.15);
  border: 1px solid rgba(240,165,0,.4);
  color: var(--gold-lt);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 6px 14px; border-radius: 30px; margin-bottom: 16px;
}
.hero-cta-group {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px;
}
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group a { width: 100%; justify-content: center; }
}

/* Slide heading (for carousel items 2 & 3) */
.slide-heading {
  color: var(--white);
  font-family: var(--ff-head);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.slide-heading span { color: var(--gold-lt); }

/* ============================================================
   SERVICE CARDS (homepage)
   ============================================================ */
.services-section { padding: 70px 0; background: var(--bg-light); }

.svc-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 22px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }

.svc-card-icon {
  width: 60px; height: 60px;
  background: #fff5df;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent);
  margin: 0 auto 16px;
  transition: background .25s, color .25s;
}
.svc-card:hover .svc-card-icon { background: var(--accent); color: var(--white); }
/* FIX: card heading colour — dark on white */
.svc-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.svc-card p  { font-size: 13px; color: var(--muted-txt); margin-bottom: 14px; }
.svc-card .read-more { font-size: 13px; font-weight: 700; color: var(--accent); }
.svc-card .read-more:hover { color: var(--accent-dk); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--accent); padding: 40px 0; }
.stat-item { text-align: center; padding: 10px 0; }
.stat-item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(28px, 4vw, 44px);
  /* FIX: white on accent = 4.6:1 AA ✓ */
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 13px;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================================
   WHY CHOOSE (dark)
   ============================================================ */
.why-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #0f1628 100%);
}
.why-section .section-title h2 { color: var(--white); }
.why-section .section-title .label { color: var(--gold-lt); }
.why-section .section-title p { color: rgba(255,255,255,.7); }

.why-card {
  display: flex; gap: 14px;
  padding: 20px 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  transition: background .25s, border-color .25s;
  height: 100%;
}
.why-card:hover { background: rgba(240,165,0,.1); border-color: rgba(240,165,0,.3); }

.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(240,165,0,.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--gold-lt);
  transition: background .25s;
}
.why-card:hover .why-icon { background: var(--accent); color: var(--white); }
/* FIX: why-card headings must be white on dark bg */
.why-card h4 { color: var(--white); font-size: 15px; margin-bottom: 4px; }
.why-card p  { color: rgba(255,255,255,.65); font-size: 13px; margin: 0; line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 70px 0; background: var(--bg-light); }

.testi-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--sh-sm);
  border-left: 4px solid var(--accent);
  height: 100%;
}
.testi-card .stars { color: var(--accent); font-size: 13px; margin-bottom: 12px; }
.testi-card blockquote {
  font-size: 14px; color: var(--muted-txt);
  font-style: italic; line-height: 1.8;
  margin: 0 0 16px; padding: 0; border: none;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: var(--white);
  font-family: var(--ff-head);
}
/* FIX: author name — dark on white */
.testi-author strong { display: block; font-size: 14px; color: var(--primary); }
.testi-author span   { font-size: 12px; color: var(--muted-txt); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  margin-bottom: 8px;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--ff-body) !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  /* FIX: dark text on white — 12:1 */
  color: var(--primary) !important;
  background: var(--white) !important;
  padding: 16px 20px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.accordion-button:not(.collapsed) {
  color: var(--accent) !important;
  background: #fff8ec !important;
}
.accordion-button::after { filter: brightness(.4); }
.accordion-body {
  font-size: 14px;
  color: var(--muted-txt);
  line-height: 1.8;
  padding: 14px 20px;
  background: var(--white);
}
.accordion-body a { color: var(--accent); }

/* ============================================================
   CALLOUT / CTA SECTION
   ============================================================ */
.callout-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #2d1600 100%);
}
/* FIX: callout headings must be white */
.callout-section h2 { color: var(--white); font-size: clamp(22px, 3vw, 36px); }
.callout-section h2 span { color: var(--gold-lt); }
.callout-section p  { color: rgba(255,255,255,.78); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { padding: 70px 0; }
.skill-wrap { margin-bottom: 14px; }
.skill-wrap label { font-size: 13px; font-weight: 700; color: var(--primary); display: block; margin-bottom: 5px; }
.skill-track { background: #e9ecef; border-radius: 20px; height: 8px; overflow: hidden; }
.skill-fill {
  height: 100%; background: var(--accent);
  border-radius: 20px;
  width: 0;
  transition: width 1.4s ease;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section { padding: 70px 0; background: var(--bg-light); }
.filter-btn {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--body-txt);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  font-family: var(--ff-body);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.portfolio-item { border-radius: var(--r-md); overflow: hidden; position: relative; }
.portfolio-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,46,.85);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s; padding: 20px;
  text-align: center;
}
.portfolio-item:hover .portfolio-overlay,
.portfolio-item:focus-within .portfolio-overlay { opacity: 1; }
/* FIX: white headings on dark overlay */
.portfolio-overlay h4 { color: var(--white); font-size: 16px; margin-bottom: 6px; }
.portfolio-overlay p  { color: rgba(255,255,255,.8); font-size: 13px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 70px 0; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--sh-md);
}
@media (max-width: 576px) { .contact-form-wrap { padding: 24px 18px; } }

/* Visible form labels */
.field-label {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.field-label .req { color: #c0392b; margin-left: 2px; }
.field-label .opt { font-weight: 400; color: var(--muted-txt); font-size: 11px; }

.form-control, .form-select {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--body-txt);
  border: 1.5px solid #d0d0d0;
  border-radius: var(--r-sm);
  padding: 10px 13px;
  background: var(--white);
  width: 100%;
  min-height: 42px;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,133,10,.15);
}
textarea.form-control { min-height: 100px; resize: vertical; }
.form-hint { font-size: 11px; color: var(--muted-txt); margin-top: 3px; display: block; }

.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 13px;
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 800;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: background .2s, transform .2s;
  text-transform: uppercase; letter-spacing: .5px;
}
.btn-submit:hover { background: var(--accent-dk); transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Form groups with labels */
.fg { margin-bottom: 14px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { position: sticky; top: 100px; }
@media (max-width: 991px) { .sidebar { position: static; margin-top: 40px; } }

.sidebar-box {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  box-shadow: var(--sh-sm);
  margin-bottom: 20px;
  overflow: hidden;
}
.sidebar-box-header {
  background: var(--primary);
  padding: 16px 20px;
}
/* FIX: sidebar heading white on dark */
.sidebar-box-header h2 {
  color: var(--white) !important;
  font-size: 16px !important;
  margin: 0 0 4px;
}
.sidebar-box-header p { color: rgba(255,255,255,.7); font-size: 12px; margin: 0; }
.sidebar-box-body { padding: 18px 20px; }

/* Label style for sidebar form */
.sb-label {
  display: block;
  font-size: 12px; font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.sb-label .req { color: #c0392b; }
.sb-label .opt { font-weight: 400; color: var(--muted-txt); font-size: 11px; }

/* Contact items in sidebar */
.cinfo-list { list-style: none; padding: 0; margin: 0 0 14px; }
.cinfo-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cinfo-item:last-child { border-bottom: none; }
.cinfo-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #fff5df;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--accent);
}
.cinfo-text strong { display: block; font-size: 12px; color: var(--primary); margin-bottom: 2px; }
.cinfo-text a, .cinfo-text span { font-size: 13px; color: var(--muted-txt); text-decoration: none; }
.cinfo-text a:hover { color: var(--accent); text-decoration: underline; }

.sidebar-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #128c3f; color: var(--white);
  padding: 10px 16px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 14px;
  text-decoration: none !important;
  transition: background .2s;
}
.sidebar-wa-btn:hover { background: #0d6b30; color: var(--white); }

/* Offer box */
.sidebar-offer {
  background: linear-gradient(135deg, var(--primary), #2a1400);
  border-radius: var(--r-md);
  padding: 22px 18px;
  margin-bottom: 20px;
  text-align: center;
}
.offer-badge {
  display: inline-block;
  background: var(--accent); color: var(--white);
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 8px; letter-spacing: 1px;
}
/* FIX: offer heading gold on dark bg */
.sidebar-offer h3 {
  font-size: 20px !important;
  color: var(--gold-lt) !important;
  margin: 4px 0 8px;
}
.sidebar-offer p { font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 14px; }
.sidebar-offer a {
  display: inline-block;
  background: var(--accent); color: var(--white);
  padding: 9px 22px; border-radius: var(--r-sm);
  font-weight: 800; font-size: 13px; text-decoration: none !important;
  transition: background .2s;
}
.sidebar-offer a:hover { background: var(--accent-dk); }

/* Sidebar section titles */
.sb-title {
  font-size: 13px !important;
  font-family: var(--ff-body) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary) !important;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f0f0f0;
}
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { border-bottom: 1px solid #f5f5f5; }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--body-txt);
  padding: 9px 0; text-decoration: none !important;
  transition: color .2s, padding-left .2s;
}
.sidebar-links a:hover { color: var(--accent); padding-left: 4px; }
.sidebar-links a i { font-size: 11px; color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
#main-footer {
  background: #111827;
  color: #b0b0b0;
  padding: 60px 0 40px;
}
.footer-brand { font-family: var(--ff-head); font-size: 22px; font-weight: 800; color: var(--white); margin: 0 0 2px; }
.footer-since { font-size: 12px; color: var(--gold); margin-bottom: 12px; }

/* FIX: footer headings */
.footer-hdg {
  font-family: var(--ff-body) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--white) !important;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(240,165,0,.3);
}
.footer-links li { margin-bottom: 7px; }
.footer-links a {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: #b0b0b0; text-decoration: none !important;
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a i { font-size: 9px; color: var(--accent); flex-shrink: 0; }

.footer-contact li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: #b0b0b0; margin-bottom: 8px;
}
.footer-contact a { color: #b0b0b0; text-decoration: none; }
.footer-contact a:hover { color: var(--gold); text-decoration: underline; }
.footer-contact i { color: var(--gold); font-size: 12px; margin-top: 3px; flex-shrink: 0; }

.footer-social { display: flex; gap: 9px; margin-top: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 13px;
  text-decoration: none !important;
  border: 1px solid rgba(255,255,255,.1);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

.footer-svc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px 8px;
}
.footer-svc-grid a {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: #b0b0b0; padding: 5px 0;
  text-decoration: none !important; transition: color .2s;
}
.footer-svc-grid a:hover { color: var(--gold); }
.footer-svc-grid a i { font-size: 9px; color: var(--accent); flex-shrink: 0; }

/* Footer CTA buttons */
.footer-cta-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 800;
  padding: 12px 16px; border-radius: var(--r-sm);
  text-decoration: none !important;
  margin-bottom: 8px; transition: background .2s, transform .2s;
}
.footer-cta-btn--call { background: var(--accent); color: var(--primary) !important; border: 2px solid var(--accent); }
.footer-cta-btn--call:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.footer-cta-btn--wa { background: var(--wa-green); color: var(--white) !important; }
.footer-cta-btn--wa:hover { background: #0d6b30; }
.footer-cta-btn--outline { background: transparent; color: var(--gold) !important; border: 2px solid var(--gold); }
.footer-cta-btn--outline:hover { background: var(--gold); color: var(--primary) !important; }

.footer-bottom {
  background: #0d1220; color: #6a6a6a;
  padding: 14px 0; font-size: 12px;
}
.footer-bottom p { margin: 0; color: #6a6a6a; }
.footer-bottom a { color: #8a8a8a; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links a { margin-left: 14px; font-size: 11px; color: #6a6a6a; text-decoration: none; }
.footer-bottom-links a:hover { color: var(--gold); }

/* Sticky float */
.sticky-float-btns {
  position: fixed; bottom: 22px; right: 16px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
}
.sticky-float-btns a {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  text-decoration: none !important;
  transition: transform .2s, box-shadow .2s;
}
.sticky-float-btns a:hover { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.btn-call     { background: var(--accent); color: var(--white); }
.btn-whatsapp { background: #25d366; color: var(--white); }

/* ============================================================
   CLIENTS STRIP
   ============================================================ */
.clients-section { padding: 44px 0; border-top: 1px solid var(--border); }
.clients-hdg {
  text-align: center;
  font-size: clamp(17px, 2.5vw, 24px);
  margin-bottom: 26px;
  color: var(--primary);
}
.clients-hdg span { color: var(--accent); }
.client-logo { padding: 10px; filter: grayscale(1) opacity(.5); transition: filter .3s; text-align: center; }
.client-logo:hover { filter: none; }
.client-logo img { width: 110px; height: 48px; object-fit: contain; margin: auto; }

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 991px) {
  .footer-svc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  body { font-size: 14px; }
  .section-title { margin-bottom: 28px; }
  .stats-bar { padding: 30px 0; }
  .stat-item { margin-bottom: 16px; }
  .sticky-float-btns { bottom: 14px; right: 12px; }
  .sticky-float-btns a { width: 44px; height: 44px; font-size: 18px; }
  .footer-svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-svc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .top-bar, .btn-nav-cta, .sticky-float-btns, .footer-cta-btn, .sidebar { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; }
}

/* ---- BACKWARD COMPAT ALIASES (old pages use .service-card) ---- */
.service-card { /* same as .svc-card */
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 22px;
  height: 100%;
  border: 1.5px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0);
  transition: transform .3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-card .icon {
  width: 60px; height: 60px; background: #fff5df; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent);
  margin: 0 auto 16px; transition: background .25s, color .25s;
}
.service-card:hover .icon { background: var(--accent); color: var(--white); }
.service-card h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.service-card p  { font-size: 13px; color: var(--muted-txt); margin-bottom: 14px; }
.service-card a.read-more { font-size: 13px; font-weight: 700; color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Why cards also need backward compat */
.why-card .content h4 { color: var(--white) !important; font-size: 15px; margin-bottom: 4px; }
.why-card .content p  { color: rgba(255,255,255,.65) !important; font-size: 13px; margin: 0; line-height: 1.6; }

/* ============================================================
   PAGE HERO BAR  (used on about, contact, portfolio, etc.)
   ============================================================ */
.page-hero-bar {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1628 60%, #220e00 100%);
  padding: 52px 0 44px;
  overflow: hidden;
  position: relative;
}
.page-hero-bar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.page-hero-label {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.page-hero-title {
  font-size: clamp(26px, 4vw, 44px);
  color: #ffffff !important;
  margin-bottom: 10px;
  font-weight: 800;
}
.page-hero-title span { color: var(--gold-lt); }
.page-hero-desc {
  color: rgba(255,255,255,.75);
  font-size: 15px;
  margin-bottom: 0;
  max-width: 540px;
}

/* Breadcrumb — inline horizontal, not a bullet list */
.breadcrumb-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.breadcrumb-inline li { color: rgba(255,255,255,.5); }
.breadcrumb-inline li a {
  color: var(--gold-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.breadcrumb-inline li a:hover { color: #fff; }
.breadcrumb-inline li i { font-size: 9px; color: rgba(255,255,255,.35); }
.breadcrumb-inline li[aria-current] { color: rgba(255,255,255,.75); font-weight: 600; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-main-section { padding: 60px 0 70px; }

/* Photo wrapper with experience badge */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  object-fit: cover;
  /* Placeholder colour while image loads — prevents layout shift */
  background: #f0f0f0;
  aspect-ratio: 400 / 440;
  display: block;
}
.exp-badge {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(200,133,10,.45);
  border: 3px solid #ffffff;
  min-width: 90px;
}
.exp-badge strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 28px;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 3px;
}
.exp-badge span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.3;
}
@media (max-width: 576px) {
  .exp-badge { right: 0; bottom: -14px; padding: 10px 14px; min-width: 76px; }
  .exp-badge strong { font-size: 22px; }
}

/* Role tag above name */
.about-role-tag {
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 6px;
}
/* Name heading */
.about-name-head {
  font-size: clamp(24px, 3.5vw, 34px) !important;
  color: var(--primary) !important;
  margin-bottom: 14px;
}

/* Content blocks */
.about-content-block { margin-bottom: 36px; }
.about-content-block h2 { font-size: clamp(20px, 2.5vw, 26px); color: var(--primary); margin-bottom: 14px; }

/* Skill bar */
.skill-wrap { margin-bottom: 12px; }
.skill-name { font-size: 14px; font-weight: 700; color: var(--primary); }
.skill-pct  { font-size: 13px; font-weight: 700; color: var(--accent); }
.skill-track { background: #e9ecef; border-radius: 20px; height: 8px; overflow: hidden; }
.skill-fill  { height: 100%; background: var(--accent); border-radius: 20px; width: 0; transition: width 1.4s ease; }

/* Services list */
.about-svc-list { list-style: none; padding: 0; margin: 0; }
.about-svc-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px; color: var(--body-txt);
}
.about-svc-list li:last-child { border-bottom: none; }
.about-svc-list li i { color: var(--accent); font-size: 15px; margin-top: 2px; flex-shrink: 0; }

/* Stat cards */
.about-stat-card {
  background: #fff8ec;
  border: 1px solid rgba(200,133,10,.2);
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
}
.about-stat-card strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}
.about-stat-card span {
  font-size: 12px;
  color: var(--muted-txt);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ============================================================
   SIDEBAR BOX HEADER — fix heading colour
   ============================================================ */
.sidebar-box-header h2,
.sidebar-box-header .sb-title {
  color: #ffffff !important;
  font-size: 15px !important;
  font-family: var(--ff-body) !important;
  font-weight: 700 !important;
  margin: 0 0 4px;
}
.sidebar-box-header p {
  color: rgba(255,255,255,.72) !important;
  font-size: 12px;
  margin: 0;
}

/* ============================================================
   INNER PAGE (generic content page)
   ============================================================ */
.content-page { padding: 60px 0 70px; }

/* ============================================================
   BACKWARD COMPAT — old page-hero class
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #0f1628 60%, #220e00 100%);
  padding: 52px 0 44px;
}
.page-hero h1 {
  color: #ffffff !important;
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 10px;
}
/* OLD breadcrumb-custom was a <ul> with bullets — fix display */
.breadcrumb-custom {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 13px;
}
.breadcrumb-custom li {
  color: rgba(255,255,255,.5);
  /* Remove bullet markers */
  list-style: none;
}
.breadcrumb-custom li::before { display: none; }
.breadcrumb-custom li a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb-custom li a:hover { color: #fff; }
.breadcrumb-custom .sep { color: rgba(255,255,255,.3); font-size: 12px; }

/* ============================================================
   CALLOUT section fix — inner pages may use it
   ============================================================ */
#callout {
  background: linear-gradient(135deg, var(--primary) 0%, #2d1600 100%);
  padding: 60px 0;
}
#callout h2 { color: #ffffff !important; }
#callout p  { color: rgba(255,255,255,.75); }
.btn-callout-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #ffffff !important;
  padding: 13px 28px; border-radius: var(--r-sm);
  font-weight: 800; font-size: 14px;
  text-decoration: none !important;
  text-transform: uppercase; letter-spacing: .5px;
  transition: background .2s;
}
.btn-callout-white:hover { background: var(--accent-dk); }

/* ============================================================
   btn-primary-custom / btn-outline-custom (old class aliases)
   ============================================================ */
.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #ffffff !important;
  font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 12px 26px; border-radius: var(--r-sm);
  border: 2px solid var(--accent);
  text-decoration: none !important;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-primary-custom:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-2px); }

.btn-outline-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--primary) !important;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 11px 24px; border-radius: var(--r-sm);
  border: 2px solid #cccccc;
  text-decoration: none !important;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-outline-custom:hover { background: var(--primary); color: #ffffff !important; border-color: var(--primary); }

/* ============================================================
   INDEX.PHP — ALL MISSING CLASSES
   These classes are used only in index.php and must exist here.
   ============================================================ */

/* ---- HERO SLIDER ---- */
#heroSlider { position: relative; }

.carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Fallback colour shows if image is missing */
}
/* Make the carousel full-height */
.carousel-item .container { display: flex; align-items: center; }

.carousel-caption {
  position: relative !important;
  left: auto !important; right: auto !important; bottom: auto !important;
  text-align: left !important;
  padding: 80px 0 120px;
  color: #fff;
}
@media (max-width: 767px) { .carousel-caption { padding: 50px 0 90px; } }

/* Hero badge pill */
.badge-hero {
  display: inline-block;
  background: rgba(240,165,0,.18);
  border: 1px solid rgba(240,165,0,.45);
  color: var(--gold-lt);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 30px;
  margin-bottom: 14px;
}
/* Hero H1 */
.carousel-caption h1 {
  color: #ffffff !important;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.15;
  margin-bottom: 16px;
}
.carousel-caption h1 span { color: var(--gold-lt); }
/* Slide heading (non-h1 slides) */
.slide-heading {
  font-family: var(--ff-head);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.slide-heading span { color: var(--gold-lt); }
/* Carousel body text */
.carousel-caption p {
  color: rgba(255,255,255,.82);
  font-size: clamp(14px, 1.8vw, 16px);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 22px;
}
/* Hero CTA buttons row */
.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
}

/* Hero stats bar (inside carousel, below caption) */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(26,26,46,.85);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
  z-index: 10;
}
.hero-stats .stat-item { padding: 6px 0; }
.hero-stats .stat-item strong {
  display: block;
  font-family: var(--ff-head);
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stats .stat-item span {
  font-size: 11px;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
}
@media (max-width: 480px) {
  .hero-stats .stat-item strong { font-size: 17px; }
  .hero-stats .stat-item span   { font-size: 9px; }
}

/* ---- SECTION SPACING (index.php sections use padding via section selector) ---- */
#about, #services, #why-choose, #testimonials, #clients, #faq, #contact {
  padding: 70px 0;
}
@media (max-width: 767px) {
  #about, #services, #why-choose, #testimonials, #clients, #faq, #contact {
    padding: 48px 0;
  }
}

/* ---- SECTION TITLE (index.php style) ---- */
.section-title .subtitle {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 8px;
}
/* Title divider dots */
.title-divider {
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 10px;
}
.title-divider span:nth-child(1) { width: 32px; height: 3px; background: var(--accent); border-radius: 2px; }
.title-divider span:nth-child(2) { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.title-divider span:nth-child(3) { width: 14px; height: 3px; background: var(--accent); border-radius: 2px; }

/* ---- ABOUT SECTION ---- */
#about { background: #fff; }
/* Highlight list */
.highlight-list { list-style: none; padding: 0; margin: 16px 0 22px; }
.highlight-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--body-txt);
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
}
.highlight-list li:last-child { border-bottom: none; }
.highlight-list li i { color: var(--accent); font-size: 15px; margin-top: 2px; flex-shrink: 0; }

/* ---- SERVICE CARDS (index.php uses .icon-wrap not .icon) ---- */
#services { background: var(--bg-light); }
/* .service-card already defined as alias, just add icon-wrap */
.service-card .icon-wrap {
  width: 58px; height: 58px;
  background: #fff5df;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--accent);
  margin: 0 auto 16px;
  transition: background .25s, color .25s;
}
.service-card:hover .icon-wrap { background: var(--accent); color: #fff; }
.service-card h3 { color: var(--primary); font-size: 17px; margin-bottom: 10px; }
.service-card p  { color: var(--muted-txt); font-size: 13px; margin-bottom: 14px; }
.service-card a  {
  font-size: 13px; font-weight: 700; color: var(--accent);
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
.service-card a:hover { color: var(--accent-dk); }

/* ---- WHY CHOOSE (choose-card) ---- */
#why-choose { background: linear-gradient(135deg, var(--primary), #0f1628); }
#why-choose .section-title h2,
#why-choose .section-title .subtitle { color: #fff; }
#why-choose .section-title .subtitle { color: var(--gold-lt); }
#why-choose .section-title p { color: rgba(255,255,255,.72); }

.choose-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 26px 20px;
  text-align: center;
  height: 100%;
  transition: background .25s, border-color .25s, transform .25s;
}
.choose-card:hover {
  background: rgba(240,165,0,.12);
  border-color: rgba(240,165,0,.35);
  transform: translateY(-5px);
}
.choose-card .icon {
  width: 54px; height: 54px;
  background: rgba(240,165,0,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--gold-lt);
  margin: 0 auto 14px;
  transition: background .25s;
}
.choose-card:hover .icon { background: var(--accent); color: #fff; }
/* White headings on dark bg */
.choose-card h4 { color: #ffffff !important; font-size: 15px; margin-bottom: 8px; }
.choose-card p  { color: rgba(255,255,255,.68); font-size: 13px; margin: 0; line-height: 1.7; }

/* ---- TESTIMONIALS ---- */
#testimonials { background: var(--bg-light); }

.testimonial-card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 26px;
  box-shadow: var(--sh-sm);
  border-left: 4px solid var(--accent);
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.testimonial-card .stars { color: var(--accent); margin-bottom: 12px; }
.testimonial-card .stars i { font-size: 13px; }
.testimonial-card blockquote {
  font-size: 14px; color: var(--muted-txt);
  font-style: italic; line-height: 1.8;
  margin: 0 0 16px; padding: 0; border: none;
}
.testimonial-card .author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-card .author img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  background: #ddd; /* placeholder if no image */
  flex-shrink: 0;
}
.testimonial-card .author .info strong {
  display: block; font-size: 14px; color: var(--primary);
}
.testimonial-card .author .info span {
  font-size: 12px; color: var(--muted-txt);
}

/* ---- CLIENTS ---- */
#clients {
  padding: 44px 0 !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.clients-heading {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--primary);
  margin-bottom: 28px;
}
.clients-heading span { color: var(--accent); }
/* Logo box */
.client-logo {
  padding: 8px;
  text-align: center;
}
.client-logo-placeholder {
  background: var(--bg-light);
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  padding: 14px 10px;
  font-size: 12px; font-weight: 700;
  color: var(--muted-txt);
  letter-spacing: .5px;
  transition: background .2s, border-color .2s;
}
.client-logo:hover .client-logo-placeholder {
  background: #fff5df;
  border-color: var(--accent);
  color: var(--accent);
}

/* ---- FAQ SECTION ---- */
#faq { background: #f9f9f9; }
.faq-accordion .accordion-item { margin-bottom: 8px; }

/* ---- CONTACT SECTION ---- */
#contact { background: #fff; }

.contact-info-box {
  background: linear-gradient(135deg, var(--primary), #0f1628);
  border-radius: var(--r-md);
  padding: 30px 24px;
  color: #fff;
  height: 100%;
}
.contact-info-box h3 {
  color: #ffffff !important;
  font-size: 20px;
  margin-bottom: 10px;
}
.contact-info-box > p {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  margin-bottom: 22px;
}
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px;
}
.contact-detail .icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(240,165,0,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold-lt);
}
.contact-detail .info {
  display: flex; flex-direction: column;
}
.contact-detail .info strong {
  font-size: 12px; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 2px;
}
.contact-detail .info a,
.contact-detail .info span {
  color: #ffffff;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.contact-detail .info a:hover { color: var(--gold-lt); text-decoration: underline; }

.contact-form-box {
  background: #fff;
  border-radius: var(--r-md);
  padding: 30px 24px;
  box-shadow: var(--sh-md);
  border: 1.5px solid var(--border);
  height: 100%;
}
.contact-form-box h3 {
  color: var(--primary) !important;
  font-size: 20px;
  margin-bottom: 18px;
}

.map-wrap { border-radius: var(--r-md); overflow: hidden; height: 250px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ---- CALLOUT (#callout on index.php) ---- */
#callout {
  background: linear-gradient(135deg, var(--primary) 0%, #2d1600 100%);
  padding: 60px 0;
}
#callout h2 { color: #ffffff !important; font-size: clamp(22px, 3vw, 34px); margin-bottom: 10px; }
#callout p  { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 0; }

.btn-callout-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #1a1a2e !important;
  font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 12px 26px; border-radius: var(--r-sm);
  border: 2px solid var(--accent);
  text-decoration: none !important;
  margin-right: 10px; margin-bottom: 8px;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-callout-white:hover { background: var(--accent-dk); border-color: var(--accent-dk); transform: translateY(-2px); }

.btn-callout-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #ffffff !important;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 11px 24px; border-radius: var(--r-sm);
  border: 2px solid rgba(255,255,255,.6);
  text-decoration: none !important;
  margin-bottom: 8px;
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.btn-callout-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---- RESPONSIVE fixes for index-specific sections ---- */
@media (max-width: 991px) {
  #about .about-img-wrap { max-width: 360px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .map-wrap { height: 200px; }
  .contact-info-box, .contact-form-box { padding: 22px 16px; }
}

/* ============================================================
   HOMEPAGE IMPROVEMENTS v6
   ============================================================ */

/* Hero overlay for better text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,30,0.82) 0%, rgba(10,10,30,0.45) 100%);
  pointer-events: none;
  z-index: 0;
}
.carousel-item { position: relative; }
.carousel-item .container { position: relative; z-index: 1; }

/* Carousel indicators styling */
.carousel-indicators button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
}
.carousel-indicators button.active { background: var(--gold); }

/* About stats row */
.about-stats-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0 22px;
}
.astat {
  text-align: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 18px;
  min-width: 90px;
}
.astat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--ff-head);
  line-height: 1;
}
.astat span {
  font-size: 11px;
  color: var(--muted-txt);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Author avatar circle (replaces broken img) */
.author-avatar-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Service card icon-wrap (already defined but ensure) */
.service-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: #fff7e6;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
  transition: background .3s, color .3s;
}
.service-card:hover .icon-wrap { background: var(--accent); color: #fff; }

/* Stat pill on about */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff7e6;
  border: 1px solid rgba(200,133,10,0.25);
  color: var(--accent-dk);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  margin: 4px 4px 4px 0;
}
