/* ═══════════════════════════════════════════════════════════
   SGS PRO — Premium Design System v3.0
   Saif Gulf Supplies Est. | gulfseksa.com
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --navy:       #08131F;
  --navy-2:     #0D1E30;
  --navy-3:     #142840;
  --navy-4:     #1a3352;
  --gold:       #f0a500;
  --gold-2:     #f0a500;
  --gold-dk:    #f0a500;
  --orange:     #D45E10;
  --amber:      #F0C050;
  --white:      #FFFFFF;
  --offwhite:   #F4F6FA;
  --light:      #EBF0F7;
  --muted:      #8096B0;
  --body:       #263545;
  --border:     rgba(255,255,255,0.07);
  --cborder:    #DDE6F0;
  --shadow:     0 24px 72px rgba(8,19,31,0.35);
  --shadow-md:  0 8px 32px rgba(8,19,31,0.14);
  --shadow-sm:  0 4px 16px rgba(8,19,31,0.08);
  --r:          12px;
  --r2:         24px;
  --r3:         40px;
  --tr:         0.3s cubic-bezier(0.4,0,0.2,1);
  --font-h:     'Plus Jakarta Sans', sans-serif;
  --font-b:     'Inter', sans-serif;
  --font-ar:    'Almarai', sans-serif;
}
.lang-ar {
  --font-h: 'Almarai', sans-serif;
  --font-b: 'Almarai', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; overflow-x:hidden; font-size:16px }
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
.lang-ar body, .lang-ar { font-family: var(--font-ar) }
.lang-ar p, .lang-ar span:not(.flag-icon), .lang-ar li {  line-height:2 }
.lang-ar h1,.lang-ar h2,.lang-ar h3,.lang-ar h4 { font-family:var(--font-ar) }
img { display:block; max-width:100% }
a { text-decoration:none; color:inherit }
ul { list-style:none }
button { cursor:pointer }
::-webkit-scrollbar { width:4px }
::-webkit-scrollbar-track { background:var(--navy) }
::-webkit-scrollbar-thumb { background:var(--gold); border-radius:4px }

/* ── Layout ──────────────────────────────────────────────── */
.wrap { width:100%; max-width:1260px; margin:0 auto; padding:0 32px }
.pad  { padding:104px 0 }
.pad-sm { padding:64px 0 }
.pad-lg { padding:140px 0 }
.bg-offwhite { background:var(--offwhite) }
.bg-navy  { background:var(--navy) }
.bg-navy2 { background:var(--navy-2) }
.bg-white { background:var(--white) }

/* ── Topbar ──────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 8px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  transition: transform 0.35s ease;
}
.topbar.hidden { transform: translateY(-100%); }
.topbar-inner {
  display: flex; align-items:center; justify-content:space-between;
  gap: 16px;
}
.topbar-left { display:flex; align-items:center; gap:20px; flex-wrap:wrap }
.topbar-left a, .topbar-left span {
  color: rgba(255,255,255,0.6);
  font-size: 12px; font-weight:500;
  display: flex; align-items:center; gap:6px;
  transition: color var(--tr);
}
.topbar-left a:hover { color: var(--gold) }
.topbar-left i { color: var(--gold); font-size:11px }
.topbar-addr { display:flex; align-items:center; gap:6px }
.topbar-right { display:flex; align-items:center; gap:14px }
.topbar-social { display:flex; gap:10px }
.topbar-social a {
  width:28px; height:28px; border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.5); font-size:12px;
  transition:var(--tr);
}
.topbar-social a:hover { background:var(--gold); color:#fff }

/* ── Header / Nav ────────────────────────────────────────── */
.site-header {
  background: #ffffff;
  position: fixed;
  top: 36px;   /* sits right below 36px topbar */
  left:0; right:0;
  z-index: 200;
  box-shadow: none;
  border-bottom: 1px solid rgba(8,19,31,0.08);
  transition: top 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(8,19,31,0.12);
  border-bottom-color: rgba(8,19,31,0.1);
}
/* Body offset — JS recalculates dynamically, this is the CSS fallback */
body { padding-top: 112px; }

.nav-inner {
  display:flex; align-items:center; justify-content:space-between;
  height: 72px; gap:24px;
}
.nav-logo img { height:48px; width:auto }

/* Desktop menu */
.nav-menu { display:flex; align-items:center; gap:4px }
.nav-menu li a {
  display:block; padding:9px 16px;
  color: var(--navy) !important;
  font-size: 13.5px; font-weight:600;
  border-radius:8px; transition:var(--tr);
  letter-spacing:0.2px;
}
.nav-menu li a:hover, .nav-menu li a.active {
  color:var(--gold-dk);;
}
.nav-menu li a.active { color:var(--gold-dk); font-weight:700; }

.nav-cta {
  display:flex; align-items:center; gap:12px;
}

/* Mobile menu toggle */
.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:transparent; border:none; padding:6px;
}
.nav-toggle span {
  width:24px; height:2px;
  background:var(--navy); border-radius:2px;
  transition:var(--tr);
}
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg) }
.nav-toggle.open span:nth-child(2) { opacity:0 }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg) }

/* Language Dropdown */
.lang-drop { position:relative }
.lang-drop-btn {
  display:flex; align-items:center; gap:8px;
  border:1px solid rgba(8,19,31,0.12);
  border-radius:8px; padding:7px 12px;
  color:var(--navy); font-size:13px; font-weight:600;
  cursor:pointer; transition:var(--tr);
  font-family:var(--font-b);
}
.lang-drop-btn:hover { border-color:rgba(8,19,31,0.2) }
.flag-icon { font-size:16px }
.lang-arrow { font-size:10px; transition:transform var(--tr) }
.lang-arrow.open { transform:rotate(180deg) }
.lang-drop-menu {
  position:absolute; top:calc(100%+8px); right:0;
  background:var(--navy-3); border:1px solid rgba(255,255,255,0.1);
  border-radius:12px; padding:6px; min-width:150px;
  box-shadow:var(--shadow); opacity:0; visibility:hidden;
  transform:translateY(8px); transition:var(--tr); z-index:500;
}
.lang-drop-menu.open { opacity:1; visibility:visible; transform:translateY(0) }
.lang-option {
  display:flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:8px;
  color:rgba(255,255,255,0.7); font-size:13px; font-weight:500;
  transition:var(--tr); cursor:pointer;
}
.lang-option:hover { ; color:#fff }
.lang-option.active { color:var(--gold);  }
.lang-check { margin-left:auto; color:var(--gold); font-size:11px }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; gap:9px;
  padding:13px 28px; border-radius:50px;
  font-size:14px; font-weight:700; letter-spacing:0.4px;
  font-family:var(--font-b); transition:all 0.28s cubic-bezier(0.4,0,0.2,1);
  white-space:nowrap; cursor:pointer; border:none;
  position:relative; overflow:hidden;
  text-decoration:none;
}
.btn::after {
  content:''; position:absolute; inset:0;
  background:rgba(255,255,255,0);
  transition:background 0.28s;
}
.btn:hover::after { background:rgba(255,255,255,0.08) }

.btn-gold {
  background: #f0a500;
  color:#fff; 
}
.btn-gold:hover { transform:translateY(-3px) scale(1.02); color:#fff }
.btn-gold:active { transform:translateY(-1px) scale(1); }

.btn-outline-white {
  border:2px solid rgba(255,255,255,0.35); color:#fff; background:transparent;
  backdrop-filter:blur(4px);
}
.btn-outline-white:hover { border-color:#fff; transform:translateY(-2px); color:#fff }

.btn-navy { background:var(--navy); color:#fff; box-shadow:0 4px 16px rgba(8,19,31,0.25); }
.btn-navy:hover { background:var(--navy-3); transform:translateY(-2px); box-shadow:0 8px 28px rgba(8,19,31,0.35); color:#fff }

.btn-wa {
  background:#f0a500;
  color:#fff; 
}
.btn-wa:hover { transform:translateY(-2px); color:#fff }

.btn-outline-navy {
  border:2px solid var(--navy); color:var(--navy); background:transparent;
}
.btn-outline-navy:hover { background:var(--navy); color:#fff; transform:translateY(-2px); }

.btn-sm { padding:9px 22px; font-size:12.5px; border-radius:50px; }
.btn-lg { padding:17px 40px; font-size:15px; border-radius:50px; }


/* ── Section Headers ─────────────────────────────────────── */
.sec-label {
  display:inline-flex; align-items:center; gap:10px;
  font-size:11px; font-weight:800; letter-spacing:3.5px;
  text-transform:uppercase; color:var(--gold); margin-bottom:14px;
}
.sec-label::before { content:''; width:28px; height:2px; background:var(--gold); flex-shrink:0 }
.lang-ar .sec-label::before { display:none }
.lang-ar .sec-label::after  { content:''; width:28px; height:2px; background:var(--gold); flex-shrink:0 }
.sec-h2 {
  font-family:var(--font-h);
  font-size:clamp(26px,4vw,36px); font-weight:900;
  color:var(--navy); line-height:1.08; margin-bottom:16px;
}
.lang-ar .sec-h2 { text-transform:none; letter-spacing:0 }
.sec-h2.white { color:#fff }
.sec-p { font-size:17px; color:#111; line-height:1.9; max-width:640px }
.lang-ar .sec-p { font-size:18px; line-height:2 }
.sec-p.light { color:rgba(255,255,255,0.6) }
.gold-bar { width:56px; height:3px; background:#f0a500; border-radius:2px; margin:18px 0 28px }
.gold-bar.center { margin:18px auto 28px }
.sec-center { text-align:center; max-width:720px; margin:0 auto 72px }
.sec-center .sec-label { justify-content:center }
.sec-center .sec-p { margin:0 auto }

/* ── Reveal Animation ────────────────────────────────────── */
[data-reveal] {
  opacity:0; transform:translateY(32px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity:1; transform:translateY(0) }

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  position:relative; min-height:100vh; display:flex;
  align-items:center; overflow:hidden;
  background:var(--navy);
}
.hero-bg {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center;
  filter:brightness(0.22) saturate(0.6);
}
.hero-overlay {
  position:absolute; inset:0;
  background:#f0a500;;
}
.hero-content { position:relative; z-index:2; padding:140px 0 100px }
.hero-tagline {
  display:inline-flex; align-items:center; gap:10px;
  background:rgba(232,160,32,0.12); border:1px solid rgba(232,160,32,0.3);
  border-radius:100px; padding:7px 16px;
  font-size:12px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:var(--gold-2); margin-bottom:28px;
}
.hero-tagline i { font-size:10px }
.hero-h1 {
  font-family:var(--font-h);
  font-size:clamp(36px,6vw,82px); font-weight:900;
  color:#fff; line-height:1.02; margin-bottom:28px;
}
.hero-h1 em { font-style:normal; color:var(--gold-2) }
.hero-sub {
  font-size:17px; color:rgba(255,255,255,0.68);
  line-height:1.9; max-width:620px; margin-bottom:44px;
}
.lang-ar .hero-sub { font-size:18px; line-height:2 }
.hero-btns { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:56px }
.hero-features {
  display:flex; flex-wrap:wrap; gap:12px;
}
.hero-feat {
  display:flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:100px; padding:8px 16px;
  font-size:13px; font-weight:600; color:rgba(255,255,255,0.8);
}
.hero-feat i { color:var(--gold); font-size:11px }

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar { background:var(--navy-3); border-top:1px solid var(--border); border-bottom:1px solid var(--border) }
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  divide-x: 1px solid var(--border);
}
.stat-item {
  text-align:center; padding:36px 24px;
  border-right:1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right:none }
.stat-num {
  font-family:var(--font-h);
  font-size:48px; font-weight:900;
  color:var(--gold); line-height:1; margin-bottom:8px;
}
.stat-lbl { font-size:13px; font-weight:600; color:#fff; text-transform:uppercase; letter-spacing:1.5px }

/* ── About Section ───────────────────────────────────────── */
.about-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}
.about-img-wrap { position:relative }
.about-img-main {
  border-radius:var(--r2); overflow:hidden;
  box-shadow:var(--shadow); aspect-ratio:3/3; object-fit:inherit; width:100%;
}
.about-badge {
  position:absolute; bottom:28px; right:-24px;
  background:#f0a500;
  border-radius:var(--r); padding:18px 22px; text-align:center;
}
.lang-ar .about-badge { right:auto; left:-24px }
.about-badge-num { font-family:var(--font-h); font-size:44px; font-weight:900; color:#fff; line-height:1 }
.about-badge-sub { font-size:11px; font-weight:700; color:rgba(255,255,255,0.85); letter-spacing:1.5px; text-transform:uppercase }
.about-img-sm {
  position:absolute; top:24px; right:-16px;
  width:120px; height:120px; border-radius:var(--r);
  object-fit:cover; box-shadow:var(--shadow-md);
  border:4px solid #fff;
}
.lang-ar .about-img-sm { right:auto; left:-16px }
.about-checks { margin:28px 0 36px; display:flex; flex-direction:column; gap:18px }
.about-check {
  display:flex; gap:16px; align-items:flex-start;
}
.about-check-icon {
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  border:1px solid #555;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:17px;
}
.about-check-title { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:3px }
.about-check-desc  { font-size:14px; color:var(--muted); line-height:1.6 }
.about-ctas { display:flex; flex-wrap:wrap; gap:12px }

/* ── Services Section ────────────────────────────────────── */
.services-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
}
.svc-card {
  background:#fff; border-radius:var(--r2);
  border:1.5px solid var(--cborder);
  overflow:hidden; transition:var(--tr);
  box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column;
}
.svc-card:hover {
  transform:translateY(-8px);
  box-shadow:0 28px 64px rgba(8,19,31,0.14);
  border-color:rgba(232,160,32,0.3);
}
.svc-card-img-wrap { position:relative; aspect-ratio:16/9; overflow:hidden }
.svc-card-img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease }
.svc-card:hover .svc-card-img { transform:scale(1.07) }
.svc-card-badge {
  position:absolute; top:16px; left:16px;
  background:#f0a500;
  border-radius:8px; padding:8px 12px;
  display:flex; align-items:center; gap:7px;
  font-size:11px; font-weight:700; color:#fff; letter-spacing:0.5px;
}
.lang-ar .svc-card-badge { left:auto; right:16px }
.svc-card-body { padding:28px; flex:1; display:flex; flex-direction:column }
.svc-card-title { font-family:var(--font-h); font-size:18px; font-weight:800; color:var(--navy); margin-bottom:10px }
.svc-card-desc { font-size:14px; color:var(--muted); line-height:1.75; margin-bottom:20px; flex:1 }
.svc-features { display:flex; flex-direction:column; gap:8px }
.svc-feat {
  display:flex; align-items:center; gap:9px;
  font-size:13px; color:var(--body); font-weight:500;
}
.svc-feat i { color:var(--gold); font-size:11px; flex-shrink:0 }

/* ── Sectors ─────────────────────────────────────────────── */
.sectors-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
  margin-top:48px;
}
.sector-pill {
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r); padding:28px 20px;
  text-align:center; transition:var(--tr); cursor:default;
}
.sector-pill:hover {
  border-color:rgba(232,160,32,0.3); transform:translateY(-4px);
}
.sector-icon {
  width:56px; height:56px; border-radius:14px; margin:0 auto 14px;
  background:#f0a500;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:22px; transition:var(--tr);
}

span.seo-rel-link-ic {
    background: none !important;
}

.sector-pill span { font-size:14px; font-weight:600; color:rgba(255,255,255,0.8) }

/* ── Why Choose Us ───────────────────────────────────────── */
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px }
.why-card {
  background:#fff; border-radius:var(--r2);
  border:1.5px solid #555;
  padding:36px 28px; transition:var(--tr);
  box-shadow:var(--shadow-sm);
}
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:#555; }
.why-num {
  font-family:var(--font-h); font-size:60px; font-weight:900;
  color:rgba(8,19,31,0.06); line-height:1; margin-bottom:16px;
  letter-spacing:-2px;
}
.why-icon {
  width:52px; height:52px; border-radius:14px; margin-bottom:18px;
  background:#f0a500;
  border:1px solid rgba(232,160,32,0.18);
  display:flex; align-items:center; justify-content:center;
  color:#fff !important; font-size:20px;
}
.why-title { font-family:var(--font-h); font-size:19px; font-weight:800; color:var(--navy); margin-bottom:10px }
.why-desc  { font-size:14px; color:var(--muted); line-height:1.8 }

/* ── Testimonials ────────────────────────────────────────── */
.testi-slider { position:relative; margin-top:48px; padding:0 32px; }
.testi-slider-viewport { overflow:hidden; border-radius:var(--r2); }
.testi-slider-track {
  display:flex; transition:transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change:transform;
}
/* Mobile: 1 card full width */
.testi-slider-track .testi-card {
  min-width:100%; flex-shrink:0;
  background:#fff; border-radius:var(--r2);
  border:1.5px solid var(--cborder);
  padding:36px 40px; box-shadow:var(--shadow-sm);
  box-sizing:border-box; position:relative;
  transition:box-shadow 0.3s,transform 0.3s;
}
.testi-slider-track .testi-card:hover {
  box-shadow:0 12px 40px rgba(8,19,31,0.10); transform:translateY(-2px);
}
/* Desktop: 2 cards per view with gap */
@media(min-width:900px){
  .testi-slider-track .testi-card {
    margin-right: 24px;
  }
  .testi-slider-track .testi-card:last-child {
    margin-right: 0;
  }
}
.testi-quote-icon { font-size:28px; color:var(--gold); opacity:0.25; margin-bottom:14px; line-height:1; }
.testi-stars { color:var(--gold); font-size:15px; margin-bottom:16px; letter-spacing:2px; }
.testi-text { font-size:15.5px; color:var(--body); line-height:1.85; font-style:italic; margin-bottom:24px; }
.testi-author { display:flex; align-items:center; gap:14px; }
.testi-author-info {}
.testi-avatar {
  width:50px; height:50px; border-radius:50%;
  background:#f0a500;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-h); font-size:16px; font-weight:900;
  color:#fff; flex-shrink:0;
}
.testi-name  { font-size:14.5px; font-weight:700; color:var(--navy) }
.testi-role  { font-size:12px; color:var(--muted) }
.quick-contact-text p {
    color: #fff !important;
}
/* Slider controls */
.testi-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%; border:none;
  background:#fff; color:var(--navy); cursor:pointer;
  box-shadow:0 4px 20px rgba(8,19,31,0.14);
  display:flex; align-items:center; justify-content:center;
  font-size:15px; transition:all 0.22s; z-index:10;
}
.testi-btn:hover { background:var(--gold); color:#fff; box-shadow:0 6px 24px rgba(232,160,32,0.35); }
.testi-prev { left:-22px; }
.testi-next { right:-22px; }
.lang-ar .testi-prev { left:auto; right:-22px; }
.lang-ar .testi-next { left:-22px; right:auto; }

.testi-dots {
  display:flex; justify-content:center; gap:8px; margin-top:28px;
}
.testi-dot {
  width:8px; height:8px; border-radius:50%; border:none;
  background:rgba(8,19,31,0.15); cursor:pointer; transition:all 0.22s; padding:0;
}
.testi-dot.active { background:var(--gold); width:24px; border-radius:4px; }

/* Keep testi-grid for possible other usage */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:48px }


/* ── Values ──────────────────────────────────────────────── */
.values-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center }
.values-img-wrap { position:relative }
.values-img-main { width:100%; border-radius:var(--r2); object-fit:inherit; aspect-ratio:4/4; box-shadow:var(--shadow) }
.values-img-accent {
  position:absolute; bottom:-20px; right:-20px;
  width:140px; height:140px; border-radius:var(--r);
  background:#f0a500;
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md);
}
.lang-ar .values-img-accent { right:auto; left:-20px }
.values-img-accent i { font-size:52px; color:#fff; }
.values-list { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:36px }
.val-item {
  padding:22px; border-radius:var(--r);
  border:1.5px solid var(--cborder);
  background:#fff; transition:var(--tr);
}
.val-item:hover { border-color:rgba(232,160,32,0.3); box-shadow:var(--shadow-sm) }
.val-item i { color:var(--gold); font-size:20px; margin-bottom:10px }
.val-title { font-size:14px; font-weight:800; color:var(--navy); margin-bottom:5px }
.val-desc  { font-size:13px; color:var(--muted); line-height:1.6 }

/* ── Process ─────────────────────────────────────────────── */
.process-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center }
.process-steps { display:flex; flex-direction:column; gap:0 }
.proc-step {
  display:flex; gap:20px; padding:28px 0;
  border-bottom:1px solid var(--cborder); position:relative;
}
.proc-step:last-child { border-bottom:none }
.proc-num {
  width:52px; height:52px; border-radius:50%; flex-shrink:0;
  border:2px solid var(--cborder);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-h); font-size:20px; font-weight:900;
  color:var(--muted); transition:var(--tr);
}
.proc-step:hover .proc-num { border-color:var(--gold); color:var(--gold); background:rgba(232,160,32,0.08) }
.proc-title { font-size:16px; font-weight:800; color:var(--navy); margin-bottom:6px }
.proc-desc  { font-size:14px; color:var(--muted); line-height:1.7 }
.process-img-wrap { position:relative }
.process-img { width:100%; border-radius:var(--r2); object-fit:inherit; aspect-ratio:4/5; box-shadow:var(--shadow) }

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band { position:relative; overflow:hidden; padding:100px 0 }
.cta-bg {
  position:absolute; inset:0;
  background:#f0a500;
}
.cta-bg img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; filter:brightness(0.18) saturate(0.5);
}
.cta-content { position:relative; z-index:2; text-align:center }
.cta-title {
  font-family:var(--font-h); font-size:clamp(28px,5vw,50px);
  font-weight:900; color:#fff; margin-bottom:16px;
}
.cta-sub { font-size:18px; color:rgba(255,255,255,0.65); margin-bottom:40px }
.cta-btns { display:flex; justify-content:center; flex-wrap:wrap; gap:14px }

/* ── Partners ────────────────────────────────────────────── */
.partners-strip {
  border-top:1px solid var(--cborder);
  border-bottom:1px solid var(--cborder);
  background:var(--offwhite);
  overflow:hidden;
}
.partners-label-row {
  padding: 20px 0 0;
}
.partners-label {
  font-size:11px; font-weight:800; letter-spacing:3px;
  text-transform:uppercase; color:var(--muted);
  text-align:center; display:block;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-outer {
  overflow: hidden;
  padding: 16px 0 24px;
  position: relative;
  width: 100%;
  -webkit-mask-image: #f0a500;
  mask-image: #f0a500;
}
.marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
[dir="rtl"] .marquee-track { animation-direction: reverse; }

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-right: 1px solid var(--cborder);
  flex-shrink: 0;
}
.marquee-item:last-child { border-right: none; }

.partner-logo {
  font-family: var(--font-h); font-size:16px; font-weight:900;
  color: var(--muted); letter-spacing:1.5px; opacity:0.55;
  transition: var(--tr); white-space: nowrap;
}
.partner-logo:hover { opacity:1; color:var(--navy) }

.partner-img {
  height: 60px; width: auto; max-width: 120px;
  min-width: 60px; flex-shrink: 0; display: block;
  object-fit: contain; opacity: 0.55; filter: grayscale(100%);
  transition: var(--tr);
}
.partner-img:hover { opacity:1; filter: grayscale(0%); }
.marquee-item { flex-shrink: 0; }


/* ── Contact Form ────────────────────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start }
.contact-info { display:flex; flex-direction:column; gap:24px }
.contact-info-item {
  display:flex; gap:16px; align-items:flex-start;
}
.contact-info-icon {
  width:48px; height:48px; border-radius:12px; flex-shrink:0;
  background:#f0a500;
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:18px;
}
.contact-info-label { font-size:12px; font-weight:700; color:#111; text-transform:uppercase; letter-spacing:1px; margin-bottom:4px }
.contact-info-value { font-size:14px; font-weight:600; color:#555 }
.contact-form { background:#fff; border-radius:var(--r2); border:1.5px solid var(--cborder); padding:40px; box-shadow:var(--shadow-sm) }
.form-group { margin-bottom:20px }
.form-group label { display:block; font-size:13px; font-weight:700; color:var(--navy); margin-bottom:8px }
.form-control {
  width:100%; padding:13px 16px;
  border:1.5px solid var(--cborder); border-radius:var(--r);
  font-size:14px; color:var(--body); font-family:var(--font-b);
  background:#fff; transition:var(--tr);
  outline:none;
}
.form-control:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(232,160,32,0.1) }
textarea.form-control { resize:vertical; min-height:130px }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px }
.form-msg { margin-top:16px; padding:12px 16px; border-radius:var(--r); font-size:14px; font-weight:600; display:none }
.form-msg.success { background:rgba(56,161,105,0.12); color:#276749; border:1px solid rgba(56,161,105,0.3) }
.form-msg.error   { background:rgba(229,62,62,0.1);  color:#c53030; border:1px solid rgba(229,62,62,0.25) }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start }
.faq-list { display:flex; flex-direction:column; gap:12px }
.faq-item {
  border:1.5px solid var(--cborder); border-radius:var(--r);
  overflow:hidden; background:#fff; transition:var(--tr);
}
.faq-item.open { border-color:rgba(232,160,32,0.35) }
.faq-q {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:20px 22px; cursor:pointer;
  font-size:15px; font-weight:700; color:var(--navy);
  transition:var(--tr);
}
.faq-q:hover { color:var(--gold-dk) }
.faq-q i { color:var(--gold); font-size:13px; transition:transform var(--tr); flex-shrink:0 }
.faq-item.open .faq-q i { transform:rotate(180deg) }
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height 0.4s ease, padding 0.3s ease;
  font-size:14px; color:var(--muted); line-height:1.85;
  padding:0 22px;
}
.faq-item.open .faq-a { max-height:400px; padding:0 22px 20px }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  background:var(--navy); padding:100px 0 80px; position:relative; overflow:hidden;
}
.page-hero-bg {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; filter:brightness(0.15) saturate(0.5);
}

.breadcrumb i , .breadcrumb span {
    color: #fff;
}

.page-hero-overlay {
  position:absolute; inset:0;
}
.page-hero-content { position:relative; z-index:2; text-align:center }
.page-hero h1 {
  font-family:var(--font-h); font-size:clamp(32px,5vw,50px);
  font-weight:900; color:#fff; margin-bottom:16px;
}
.page-hero p { font-size:18px; color:#fff; max-width:580px; margin:0 auto }
.breadcrumb {
  display:flex; align-items:center; justify-content:center; gap:8px;
  margin-bottom:20px; font-size:13px; color:rgba(255,255,255,0.5);
}
.breadcrumb a { color:var(--gold); }
.breadcrumb i { font-size:10px }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background:#0d1b2ad6; padding:80px 0 0 }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:48px; margin-bottom:56px;
}
.footer-brand .nav-logo img { height:44px; margin-bottom:18px }
.footer-tagline { font-size:14px; color:rgba(255,255,255,0.45); line-height:1.8; margin-bottom:24px }
.footer-socials { display:flex; gap:10px }
.footer-social {
  width:38px; height:38px; border-radius:10px;border:1px solid #fff;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.5); font-size:14px; transition:var(--tr);
}
.footer-social:hover { background:var(--gold); border-color:var(--gold); color:#fff }
.footer-col-title {
  font-family:var(--font-h); font-size:13px; font-weight:900;
  color:rgba(255,255,255,0.9); letter-spacing:2px;
  text-transform:uppercase; margin-bottom:20px;
}
.footer-links { display:flex; flex-direction:column; gap:10px }
.footer-links a {
  font-size:14px; color:rgba(255,255,255,0.45);
  transition:var(--tr); display:flex; align-items:center; gap:7px;
}
.footer-links a:hover { color:var(--gold); padding-left:4px }
.lang-ar .footer-links a:hover { padding-left:0; padding-right:4px }
.footer-contact-item {
  display:flex; gap:12px; margin-bottom:14px; align-items:flex-start;
}
.footer-contact-icon {
  width:34px; height:34px; border-radius:9px; flex-shrink:0;
  background:border:1px solid rgba(232,160,32,0.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); font-size:13px;
}
.footer-contact-val { font-size:13.5px; color:rgba(255,255,255,0.55); line-height:1.6 }
.footer-contact-val a { color:rgba(255,255,255,0.55); transition:var(--tr) }
.footer-contact-val a:hover { color:var(--gold) }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.06);
  padding:24px 0; display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer-rights { font-size:13px; color:rgba(255,255,255,0.3) }
.footer-credit { font-size:13px; color:rgba(255,255,255,0.3) }
.footer-credit a { color:var(--gold); font-weight:600 }

/* ── WhatsApp Float ──────────────────────────────────────── */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:58px; height:58px; border-radius:50%;
  background:#25D366; color:#fff; font-size:24px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 32px rgba(37,211,102,0.45);
  transition:var(--tr); animation:waPulse 2.5s infinite;
}
.lang-ar .wa-float { right:auto; left:28px }
.wa-float:hover { transform:scale(1.12); box-shadow:0 12px 40px rgba(37,211,102,0.55) }
@keyframes waPulse {
  0%,100% { box-shadow:0 8px 32px rgba(37,211,102,0.45) }
  50%      { box-shadow:0 8px 32px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.12) }
}

/* ── Contact Strip ───────────────────────────────────────── */
.contact-strip {
  background:#f0a500;
  border-top:1px solid var(--border); padding:24px 0;
}
.contact-strip-inner {
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.contact-strip-left { display:flex; gap:24px; flex-wrap:wrap; align-items:center }
.contact-strip-item {
  display:flex; align-items:center; gap:10px;
  font-size:14px; color:rgba(255,255,255,0.7);
}
.contact-strip-item i { color:var(--gold) }
.contact-strip-item a { color:rgba(255,255,255,0.7); transition:var(--tr) }
.contact-strip-item a:hover { color:var(--gold) }

/* ── Mobile Nav Overlay ──────────────────────────── */
.lang-drop-mobile { display:none }
@media(max-width:900px) {
  .lang-drop-mobile { display:block }
  .nav-menu {
    position:fixed;
    top: 112px;   /* JS will override dynamically */
    left:0; right:0; bottom:0;
    z-index: 250; /* above header(200) below topbar(300) */
    background: var(--navy);
    flex-direction:column;
    align-items:stretch;
    justify-content:flex-start;
    padding:16px 16px 40px;
    gap:4px;
    overflow-y:auto;
    display:none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.open { display:flex }
  .nav-menu li { width:100% }
  .nav-menu li a {
    padding:15px 18px;
    font-size:16px;
    border-radius:10px;
    width:100%;
    display:block;
    color: #ffffff !important;
    font-weight: 600;
    background: transparent;
  }
  .nav-menu li a:hover,
  .nav-menu li a.active {
    background: #f0a500 !important;
    color: var(--gold-2) !important;
  }
  .nav-toggle { display:flex }
  .nav-cta .btn-gold { display:none }
}

/* ── About Page Inline Fix ───────────────────────── */
.about-grid [style*="direction:rtl"] .about-img-sm { display:none }

/* ── Smooth page transitions ─────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > div { animation: fadeUp 0.9s ease both }
  @keyframes fadeUp { from { opacity:0; transform:translateY(40px) } to { opacity:1; transform:translateY(0) } }
}

/* ── Input select styling ────────────────────────── */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238096B0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
[dir="rtl"] select.form-control {
  background-position: left 14px center;
  padding-right: 16px; padding-left:36px;
}

/* ── Page transitions ────────────────────────────── */
/* scrolled state handled above */

/* ── Service Card Learn More btn ────────────────────── */
.svc-card-body .btn-outline-navy {
  background:transparent;
  border:2px solid var(--cborder);
  color:var(--navy);
  font-size:13px; padding:9px 18px;
}
.svc-card-body .btn-outline-navy:hover {
  border-color:var(--gold);
  color:var(--gold-dk);
  background:rgba(232,160,32,0.05);
  transform:translateY(-1px);
}

/* ── Process step connector line ────────────────────── */
.proc-step:not(:last-child)::after {
  content:'';
  display:block;
  width:2px; height:24px;
  background:#f0a500;
  margin:4px 0 0 24px;
}

/* ── Why card hover accent ──────────────────────────── */
.why-card:hover .why-icon {
  background:#f0a500;
  color:#fff;
  border-color:#555;
}

/* ── Sector grid hover glow ─────────────────────────── */
.sector-pill:hover {
}

/* ── Admin mobile warning ────────────────────────────── */
@media(max-width:768px) {
  .sidebar { transform:translateX(-100%); transition:transform 0.3s }
  .sidebar.open { transform:translateX(0) }
  .main { margin-left:0 }
}

/* ── Print styles ──────────────────────────────────── */
@media print {
  .topbar, .site-header, .wa-float, .contact-strip { display:none }
  .hero-section { min-height:auto; padding:40px 0 }
  .hero-bg, .hero-overlay { display:none }
  .hero-h1, .hero-sub { color:#000 !important }
}

/* ── Trust Badges Section ────────────────────────────── */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-badge {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 22px 20px;
  background: var(--offwhite);
  border-radius: var(--r);
  border: 1.5px solid var(--cborder);
  transition: var(--tr);
}
.trust-badge:hover {
  border-color: rgba(232,160,32,0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.trust-badge-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #f0a500;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
}
.trust-badge-title {
  font-size: 14px; font-weight: 800; color: var(--navy); margin-bottom: 4px;
}
.trust-badge-desc {
  font-size: 12.5px; color: var(--muted); line-height: 1.6;
}
@media (max-width:900px) {
  .trust-badges { grid-template-columns: 1fr 1fr; }
}
@media (max-width:640px) {
  .trust-badges { grid-template-columns: 1fr; gap: 12px; }
  .trust-badge { padding: 16px 14px; display:inline; }
}

.trust-badge-title {
    padding-top: 5px;
}

/* ── Quick Contact Strip ─────────────────────────────── */
.quick-contact-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.quick-contact-text { flex: 1; min-width: 280px; }
.quick-contact-actions {
  display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap;
}
@media (max-width:640px) {
  .quick-contact-inner { flex-direction: column; align-items: flex-start; }
  .quick-contact-actions { width: 100%; }
  .quick-contact-actions .btn { flex: 1; justify-content: center; }
}

/* ── Admin sections icon alignment ──────────────────── */
.nav-item i { min-width: 18px; text-align: center; }
/* ═══════════════════════════════════════════════════════════
   SGS PRO — Premium Design System v3.0
   Saif Gulf Supplies Est. | gulfseksa.com
   ═══════════════════════════════════════════════════════════ */


.lang-ar {
  --font-h: 'Almarai', sans-serif;
  --font-b: 'Almarai', sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }




/* ── Testimonials Split Layout ────────────────────────── */
.testimonials-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.testimonials-slider-col {
  flex: 0 0 60%;
  width: 60%;
}

.testimonials-media-col {
  flex: 0 0 40%;
  width: 40%;
}

/* Right side content styling */
.testi-side-content {
  background: #f0a500;
  border-radius: var(--r2);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-side-content img {
  width: 100%;
  height: auto;
  border-radius: var(--r);
  display: block;
  object-fit: cover;
}

/* Optional: side graphic content styling */
.side-graphic {
  color: #fff;
}

.side-graphic i {
  font-size: 64px;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-block;
}

.side-graphic h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.side-graphic p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
}

.side-stats {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.side-stats div {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.side-stats span {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-split {
    flex-direction: column;
    gap: 40px;
  }
  
  .testimonials-slider-col,
  .testimonials-media-col {
    flex: 0 0 100%;
    width: 100%;
  }
  
  /* চাইলে ডান সাইডের কন্টেন্ট উপরে আনতে পারেন */
  .testimonials-media-col {
    order: -1;
  }
  
  .testi-side-content {
    min-height: auto;
    padding: 30px;
  }
}

/* RTL Support */
.lang-ar .testimonials-slider-col {
  order: 2;
}

.lang-ar .testimonials-media-col {
  order: 1;
}

/* Adjust slider dots position */
.testi-dots {
  margin-top: 28px;
}

/* Testimonial Card - proper width control */
.testi-slider-track .testi-card {
  min-width: 100%;
  flex-shrink: 0;
  background: #fff;
  border-radius: var(--r2);
  border: 1.5px solid var(--cborder);
  padding: 36px 40px;
  box-sizing: border-box;
  height: auto;
  max-width: 100%;        /* যোগ করুন */
}

/* Text content ke control করুন */
.testi-text {
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 24px;
  max-width: 100%;
  word-break: break-word;    /* লম্বা word ভাঙবে */
  word-wrap: break-word;
}

/* Card er moddhe content er jonno max-width */
.testi-card > * {
  max-width: 100%;
}

/* বিশেষ করে paragraph টা ঠিক করুন */
.testi-card p {
  max-width: 100%;
  display: block;
}

/* ── Testimonials Mobile Version ────────────────────────── */
@media (max-width: 768px) {
  
  /* Section padding */
  .testimonials-split {
    flex-direction: column;
    gap: 30px;
  }
  
  .testimonials-slider-col,
  .testimonials-media-col {
    flex: 0 0 100%;
    width: 100%;
  }
  
  /* ডান পাশের কন্টেন্ট উপরে দেখাতে চাইলে */
  .testimonials-media-col {
    order: -1;
    margin-bottom: 20px;
  }
  
  /* Slider container */
  .testi-slider {
    margin-top: 24px;
    padding: 0 16px;
    position: relative;
  }
  
  /* Viewport */
  .testi-slider-viewport {
    overflow: hidden;
    border-radius: 16px;
  }
  
  /* Track */
  .testi-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 0;
  }
  
  /* Card styling - mobile */
  .testi-slider-track .testi-card {
    min-width: 100%;
    flex-shrink: 0;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--cborder);
    padding: 24px 20px;
    box-sizing: border-box;
    margin: 0;
  }
  
  /* Quote icon */
  .testi-quote-icon {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .testi-quote-icon i {
    font-size: 20px;
  }
  
  /* Stars */
  .testi-stars {
    font-size: 11px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }
  
  .testi-stars i {
    font-size: 11px;
  }
  
  /* Text content */
  .testi-text {
    font-size: 13.5px;
    line-height: 1.65;
    margin-bottom: 18px;
    word-break: break-word;
    overflow-wrap: break-word;
    /* 3 লাইনের বেশি হলে ... দেখাবে (optional) */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* Author section */
  .testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
  }
  
  /* Avatar */
  .testi-avatar {
    width: 44px;
    height: 44px;
    font-size: 14px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  /* Author info */
  .testi-author-info {
    flex: 1;
  }
  
  .testi-name {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--navy);
  }
  
  .testi-role {
    font-size: 10.5px;
    color: var(--muted);
    line-height: 1.4;
  }
  
  /* Navigation buttons - mobile */
  .testi-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(8,19,31,0.12);
    font-size: 12px;
  }
  
  .testi-prev {
    left: -12px;
  }
  
  .testi-next {
    right: -12px;
  }
  
  /* Dots navigation */
  .testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  
  .testi-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(8,19,31,0.2);
    border: none;
    padding: 0;
    transition: all 0.2s ease;
  }
  
  .testi-dot.active {
    width: 20px;
    border-radius: 3px;
    background: var(--gold);
  }
  
  /* Right side content - mobile */
  .testi-side-content {
    padding: 24px 20px;
    min-height: auto;
    border-radius: 20px;
  }
  
  .testi-side-content img {
    border-radius: 12px;
  }
  
  .side-graphic i {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .side-graphic h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .side-graphic p {
    font-size: 12px;
    line-height: 1.6;
  }
  
  .side-stats span {
    font-size: 24px;
  }
  
  .side-stats div {
    font-size: 11px;
  }
}

/* ছোট মোবাইলের জন্য (480px এর নিচে) */
@media (max-width: 480px) {
  .testi-slider {
    padding: 0 12px;
  }
  
  .testi-slider-track .testi-card {
    padding: 20px 16px;
  }
  
  .testi-text {
    font-size: 12.5px;
    line-height: 1.6;
    -webkit-line-clamp: 5;
  }
  
  .testi-name {
    font-size: 12px;
  }
  
  .testi-role {
    font-size: 10px;
  }
  
  .testi-avatar {
    width: 38px;
    height: 38px;
    font-size: 12px;
  }
  
  .testi-btn {
    width: 30px;
    height: 30px;
  }
  
  .testi-prev {
    left: -10px;
  }
  
  .testi-next {
    right: -10px;
  }
  
  .testi-dots {
    gap: 6px;
    margin-top: 16px;
  }
  
  .testi-dot {
    width: 5px;
    height: 5px;
  }
  
  .testi-dot.active {
    width: 16px;
  }
}

/* টাচ ডিভাইসের জন্য hover effects সরানো */
@media (hover: none) and (pointer: coarse) {
  .testi-slider-track .testi-card:hover {
    transform: none;
    box-shadow: none;
  }
  
  .testi-btn:hover {
    background: #fff;
    color: var(--navy);
  }
}

/* RTL মোবাইল সাপোর্ট */
.lang-ar @media (max-width: 768px) {
  .testi-prev {
    left: auto;
    right: -12px;
  }
  
  .testi-next {
    right: auto;
    left: -12px;
  }
  
  .testi-text {
    text-align: right;
  }
  
  .testi-author {
    flex-direction: row-reverse;
  }
}


/* যদি টেক্সট অনেক লম্বা হয় এবং স্ক্রল করতে চান */
@media (max-width: 768px) {
  .testi-card {
    max-height: 380px;
    overflow-y: auto;
  }
  
  /* কাস্টম স্ক্রলবার */
  .testi-card::-webkit-scrollbar {
    width: 3px;
  }
  
  .testi-card::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
  }
  
  .testi-card::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
  }
}

/* ── Back to Top Button ─────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 37px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0a500;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: #f0a500;
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.5);
}

.back-to-top:active {
  transform: translateY(0);
}

/* RTL Support */
.lang-ar .back-to-top {
  right: auto;
  left: 37px;
}

/* Mobile */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 80px;
    width: 42px;
    height: 42px;
    font-size: 18px;
    right: 30px;
  }
  .lang-ar .back-to-top {
    right: auto;
    left: 30px;
  }
}


.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}

.footer-brand .nav-logo img {
    height: 150px;
    width: auto;
    transition: all 0.3s ease;
    
    margin-right: -30px;
}

.footer-brand .nav-logo:hover img {
  transform: scale(1.02);
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(232,160,32,0.3));
}

/* Logo এর নিচে গোল্ডেন লাইন */
.footer-brand .nav-logo::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f0a500;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.footer-brand .nav-logo:hover::after {
  width: 80px;
}

/* RTL Support */
.lang-ar .footer-brand {
  text-align: right;
}

.lang-ar .footer-brand .nav-logo::after {
  left: auto;
  right: 0;
}


footer a, footer p, .footer-contact-val {
    color: #fff !important;
}

p.footer-credit a {
    color: #e8a020 !important;
}


div#siteTopbar a, div#siteTopbar p, div#siteTopbar span {
    color: #fff !important;
}

a[href^="tel"],
a[href^="mailto"] {
  direction: ltr;
  unicode-bidi: embed;
}

/* ═══════════════════════════════════════════════════════════
   MEGAMENU — Services Dropdown  (v2 — compact + hover-safe)
   ═══════════════════════════════════════════════════════════ */

/* ── Parent li: must be relative so panel anchors to it ── */
.has-mega {
  position: relative;
}

/* ── Trigger link ─────────────────────────────────────── */
.mega-trigger {
  display: flex !important;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  white-space: nowrap;
}
.mega-arrow {
  font-size: 10px;
  transition: transform 0.22s ease;
  color: var(--muted);
}
.has-mega:hover .mega-arrow,
.has-mega.mega-open .mega-arrow {
  transform: rotate(180deg);
  color: var(--gold-dk);
}

/* ── Invisible bridge: fills gap between trigger and panel ─ */
/* Prevents menu closing when mouse passes through the gap   */
.has-mega::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 12px;          /* covers the gap */
  z-index: 998;
  display: none;
}
.has-mega:hover::after { display: block; }

/* ── The dropdown panel ───────────────────────────────── */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);   /* small gap under trigger */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  z-index: 999;
  width: 680px;            /* fixed compact width */
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: 14px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 12px 48px rgba(8,19,31,0.16), 0 2px 8px rgba(8,19,31,0.06);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.has-mega:hover .mega-menu,
.has-mega.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ── Inner padding ────────────────────────────────────── */
.mega-inner {
  padding: 20px 20px 16px;
}

/* ── Header row ───────────────────────────────────────── */
.mega-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cborder);
}
.mega-header-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mega-header-label i { color: var(--gold); font-size: 11px; }
.mega-view-all {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-dk);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.18s;
  text-decoration: none;
}
.mega-view-all:hover { gap: 7px; }

/* ── 3-column grid ────────────────────────────────────── */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}

/* ── Each service row ─────────────────────────────────── */
.mega-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.18s ease;
  border: 1px solid transparent;
}
.mega-item:hover {
  background: var(--offwhite);
  border-color: var(--cborder);
}

.mega-item-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--gold-dk);
  transition: background 0.18s, color 0.18s;
}
.mega-item:hover .mega-item-icon {
  background: var(--gold);
  color: #fff;
}

.mega-item-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.mega-item-text strong {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  transition: color 0.18s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-item:hover .mega-item-text strong { color: var(--gold-dk); }
/* No description shown — clean & compact */
.mega-item-text em { display: none; }

/* ── Footer CTA strip ─────────────────────────────────── */
.mega-footer {
  border-top: 1px solid var(--cborder);
  padding-top: 12px;
}
.mega-cta-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  border-radius: 10px;
  padding: 11px 16px;
}
.mega-cta-block > i {
  font-size: 18px;
  color: var(--gold);
  min-width: 18px;
}
.mega-cta-block > div { flex: 1; }
.mega-cta-block strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.mega-cta-block span {
  font-size: 11px;
  color: #fff;
}
.mega-cta-block .btn-sm {
  white-space: nowrap;
  font-size: 12px;
  padding: 7px 14px;
}

/* ── RTL ──────────────────────────────────────────────── */
[dir="rtl"] .mega-menu {
  left: auto;
  right: 50%;
  transform: translateX(50%) translateY(-6px);
}
[dir="rtl"] .has-mega:hover .mega-menu,
[dir="rtl"] .has-mega.mega-open .mega-menu {
  transform: translateX(50%) translateY(0);
}
[dir="rtl"] .mega-view-all i { transform: scaleX(-1); }
[dir="rtl"] .mega-item { flex-direction: row; }

/* ── Mobile: hide desktop mega, show accordion ──────── */
@media (max-width: 900px) {
  .has-mega > a.mega-trigger { display: none !important; }
  .mega-menu { display: none !important; }
  .has-mega::after { display: none !important; }

  .mobile-svc-accordion { display: block !important; width: 100%; }

  .mobile-svc-toggle {
    width: 100%;
    text-align: inherit;
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
    display:block;
  }
  .mobile-svc-toggle:hover,
  .mobile-svc-toggle.open {
    color: var(--gold-2);
  }
  .mobile-svc-toggle i { transition: transform 0.25s; font-size: 12px; }
  .mobile-svc-toggle.open i { transform: rotate(180deg); }

  .mobile-svc-list {
    display: none;
    list-style: none;
    padding: 4px 0 4px 12px;
    flex-direction: column;
    gap: 2px;
  }
  .mobile-svc-list.open { display: flex; }
  .mobile-svc-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.85) !important;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-svc-list li a:hover {
    background: rgba(255,255,255,0.08) !important;
    color: var(--gold-2) !important;
  }
  .mobile-svc-list li a i {
    width: 16px;
    text-align: center;
    color: var(--gold);
    font-size: 13px;
  }
}

/* ── Desktop: hide mobile accordion ──────────────────── */
@media (min-width: 901px) {
  .mobile-svc-accordion { display: none !important; }
}

/* ── Arabic RTL Header ─────────────────────────────────── */
.lang-ar .nav-inner {
  flex-direction: row;
  direction: rtl;
}
.lang-ar .nav-logo   { order: unset; }
.lang-ar #langDropMob{ order: unset; }
.lang-ar .nav-menu   { order: unset; flex-direction: row-reverse; direction: rtl; }
.lang-ar .nav-cta    { order: unset; flex-direction: row; }
.lang-ar .nav-toggle { order: unset; }
.lang-ar .topbar-inner {
  flex-direction: row-reverse;
}

.hs-slide.active .hs-sub {    color: #fff;
}
.lang-ar .topbar-left {
  flex-direction: row-reverse;
}
.lang-ar .topbar-right {
  flex-direction: row-reverse;
}
.lang-ar .mega-header {
  flex-direction: row-reverse;
}
.lang-ar .mega-item {
  flex-direction: row-reverse;
  text-align: right;
}
.lang-ar .mega-item-text {
  text-align: right;
}
.lang-ar .mega-cta-block {
  flex-direction: row-reverse;
  text-align: right;
}
.lang-ar .mega-view-all {
  flex-direction: row-reverse;
}
.lang-ar .lang-drop-menu {
  left: auto;
  right: 0;
}

/* ── Hide language switcher from topbar only (mobile/header switcher #langDropMob stays visible) ── */
#langDrop {
  display: none !important;
}