/*
Theme Name: Noor Commercial Traders
Theme URI: https://noorcommercialtraders.com
Author: Noor Commercial Traders (SMC-Private) Limited
Author URI: https://noorcommercialtraders.com
Description: A premium, modern, dark-blue corporate WordPress theme for NOOR COMMERCIAL TRADERS (SMC-PRIVATE) LIMITED. Features glassmorphism cards, animated particles, smooth scroll animations, and fully responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: noor-commercial
Tags: business, corporate, e-commerce, dark, one-page, responsive, custom-colors
*/

/* ===================================
   CSS CUSTOM PROPERTIES
=================================== */
:root {
  --navy: #050d1a;
  --deep: #071428;
  --mid: #0a1f3d;
  --accent: #00c6ff;
  --accent2: #0072ff;
  --gold: #f5c842;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.10);
  --text: #e8f0fe;
  --muted: #8ba4c8;
  --card-bg: rgba(10,31,61,0.7);
  --radius: 20px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===================================
   LOADER
=================================== */
#noor-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#noor-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 60px; height: 60px;
  border: 3px solid rgba(255,255,255,0.06);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: noor-spin 1s linear infinite;
}
.loader-brand {
  margin-top: 20px;
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--muted);
  animation: noor-pulse 1.8s ease infinite;
}
@keyframes noor-spin { to { transform: rotate(360deg); } }
@keyframes noor-pulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ===================================
   PARTICLES CANVAS
=================================== */
#noor-particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
}

/* ===================================
   NAVIGATION
=================================== */
#noor-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 70px;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#noor-nav.scrolled {
  background: rgba(5,13,26,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--glass-border);
}
.nav-logo-wrap {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 900; color: #fff;
  box-shadow: 0 0 22px rgba(0,198,255,0.35);
  flex-shrink: 0;
}
.nav-logo-text { font-size: 13px; font-weight: 700; line-height: 1.25; max-width: 175px; }
.nav-logo-text small { display: block; font-size: 10px; font-weight: 400; color: var(--muted); letter-spacing: 1px; }

.nav-menu { display: flex; gap: 30px; }
.nav-menu a {
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  position: relative; transition: color .3s;
}
.nav-menu a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0); transition: transform .3s;
}
.nav-menu a:hover { color: var(--accent); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-btn {
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; padding: 9px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  transition: transform .3s, box-shadow .3s;
  display: inline-block;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,198,255,0.4);
}

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.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); }

/* Mobile Drawer */
.mobile-drawer {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; z-index: 999;
  background: rgba(5,13,26,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 24px 5%;
  flex-direction: column; gap: 20px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a { font-size: 15px; color: var(--muted); font-weight: 500; transition: color .3s; }
.mobile-drawer a:hover { color: var(--accent); }

/* ===================================
   HERO SECTION
=================================== */
#noor-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 5% 80px;
  overflow: hidden;
}
.hero-bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 40%, rgba(0,114,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 15% 75%, rgba(0,198,255,0.10) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--deep) 50%, #040c1e 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,198,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,198,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); z-index: 0;
  animation: noor-float 8s ease infinite;
}
.orb-1 { width: 520px; height: 520px; background: rgba(0,114,255,0.15); top: -120px; right: -80px; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(0,198,255,0.10); bottom: -40px; left: 3%; animation-delay: 3s; }
.orb-3 { width: 180px; height: 180px; background: rgba(245,200,66,0.05); top: 45%; right: 28%; animation-delay: 5.5s; }
@keyframes noor-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-28px)} }

.hero-content { position: relative; z-index: 1; max-width: 660px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 6px 18px; border-radius: 50px;
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 26px; backdrop-filter: blur(10px);
}
.hero-eyebrow::before { content:'●'; font-size:8px; animation: noor-pulse 1.6s ease infinite; }
.hero-company-name {
  font-size: clamp(13px, 1.8vw, 17px); font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 18px; opacity: .92;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px;
  background: linear-gradient(140deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--muted); line-height: 1.75;
  margin-bottom: 38px; max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  padding: 14px 32px; border-radius: 50px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  color: #fff; font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,114,255,0.35);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,198,255,0.42); color:#fff; }

.btn-ghost {
  padding: 14px 32px; border-radius: 50px;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text); font-weight: 600; font-size: 15px;
  cursor: pointer; backdrop-filter: blur(10px);
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: var(--accent); transform: translateY(-3px); color:var(--text); }

/* Hero floating card */
.hero-visual {
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38%, 500px);
  z-index: 1;
}
.hero-float-card {
  animation: noor-float 6s ease infinite;
  position: relative;
}
.dashboard-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: 22px; padding: 28px;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.55);
}
.dc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.dc-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 22px;
}
.dc-title { font-size: 14px; font-weight: 700; }
.dc-sub { font-size: 11px; color: var(--muted); margin-top: 2px; }
.dc-stats { display: flex; gap: 12px; margin-bottom: 18px; }
.dc-stat {
  flex: 1; background: rgba(0,198,255,0.06);
  border: 1px solid rgba(0,198,255,0.12);
  border-radius: 12px; padding: 12px; text-align: center;
}
.dc-stat-val { font-size: 18px; font-weight: 800; color: var(--accent); }
.dc-stat-lbl { font-size: 10px; color: var(--muted); margin-top: 2px; }
.dc-bar-row { margin-bottom: 10px; }
.dc-bar-lbl { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 5px; }
.dc-bar-track { height: 6px; background: rgba(255,255,255,0.07); border-radius: 6px; overflow: hidden; }
.dc-bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, var(--accent2), var(--accent)); }
.dc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,198,255,0.10); border: 1px solid rgba(0,198,255,0.2);
  padding: 5px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 600; color: var(--accent); margin-top: 6px;
}
.float-pill {
  position: absolute; background: var(--card-bg);
  border: 1px solid var(--glass-border); backdrop-filter: blur(16px);
  border-radius: 12px; padding: 9px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.pill-top { top: -16px; right: -20px; }
.pill-bot { bottom: -16px; left: -20px; }

/* ===================================
   SECTION COMMON
=================================== */
.noor-section { position: relative; z-index: 1; padding: 100px 0; }
.noor-section.alt-bg { background: linear-gradient(180deg, transparent 0%, rgba(0,20,50,0.28) 50%, transparent 100%); }
.section-wrap { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
.section-hd { text-align: center; margin-bottom: 60px; }
.section-tag-label {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px); font-weight: 800;
  line-height: 1.2; margin-bottom: 14px;
}
.section-title .hi { color: var(--accent); font-style: normal; }
.section-desc { font-size: 16px; color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.75; }
.divider-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ===================================
   ABOUT SECTION
=================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.about-logo-big {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border-radius: 20px; display: flex; align-items: center;
  justify-content: center; font-size: 30px; font-weight: 900;
  color: #fff; margin-bottom: 18px;
  box-shadow: 0 0 40px rgba(0,198,255,0.28);
}
.about-name { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.about-type { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-bottom: 22px; }
.about-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.about-row-icon { color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.about-row-body { font-size: 13px; color: var(--muted); line-height: 1.55; }
.about-row-body strong { display: block; font-size: 11px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }

.mini-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.mini-card {
  background: rgba(0,198,255,0.05); border: 1px solid rgba(0,198,255,0.10);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition);
}
.mini-card:hover { background: rgba(0,198,255,0.10); border-color: rgba(0,198,255,0.25); }
.mini-card-icon { font-size: 22px; width: 36px; text-align: center; flex-shrink: 0; }
.mini-card-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.mini-card-text { font-size: 12px; color: var(--muted); line-height: 1.45; }

.about-content-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
  margin-bottom: 18px; line-height: 1.2;
}
.about-content-col h2 em { font-style: normal; color: var(--accent); }
.about-content-col p { color: var(--muted); line-height: 1.8; font-size: 15px; margin-bottom: 16px; }
.chips-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip-tag {
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 7px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--accent);
  transition: var(--transition);
}
.chip-tag:hover { background: rgba(0,198,255,0.14); border-color: var(--accent); }

/* ===================================
   SERVICES SECTION
=================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 30px;
  backdrop-filter: blur(20px);
  transition: transform .4s, border-color .4s, box-shadow .4s;
  position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,114,255,0.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(0,198,255,0.30); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,198,255,0.10); }
.service-card:hover::before { opacity: 1; }
.svc-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,114,255,0.18), rgba(0,198,255,0.18));
  border: 1px solid rgba(0,198,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 23px; margin-bottom: 18px;
  transition: box-shadow .4s;
}
.service-card:hover .svc-icon { box-shadow: 0 0 30px rgba(0,198,255,0.30); }
.svc-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.svc-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-size: 12px; font-weight: 600;
  margin-top: 16px; opacity: 0;
  transform: translateX(-8px); transition: opacity .3s, transform .3s;
}
.service-card:hover .svc-arrow { opacity: 1; transform: translateX(0); }

/* ===================================
   STATS SECTION
=================================== */
.stats-band {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: 28px; padding: 56px 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 36px; position: relative; overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,114,255,0.05) 0%, transparent 50%, rgba(0,198,255,0.05) 100%);
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-emoji { font-size: 24px; margin-bottom: 12px; display: block; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 58px); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-suffix { font-size: .55em; }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 10px; font-weight: 500; }
.stat-sep { position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: var(--glass-border); }

/* ===================================
   WHY US SECTION
=================================== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  background: var(--card-bg); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); border-color: rgba(0,198,255,0.24); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 800;
  color: var(--accent); opacity: .25;
  line-height: 1; flex-shrink: 0; width: 48px;
}
.why-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.why-body { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ===================================
   CTA SECTION
=================================== */
.cta-box {
  background: linear-gradient(135deg, #0a1f3d 0%, #071020 50%, #050d1a 100%);
  border: 1px solid var(--glass-border);
  border-radius: 32px; padding: 80px 60px;
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(0,114,255,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(0,198,255,0.10) 0%, transparent 60%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 50px); font-weight: 800;
  margin-bottom: 18px; line-height: 1.2;
}
.cta-box h2 em { font-style: normal; color: var(--accent); }
.cta-box p { color: var(--muted); font-size: 16px; margin-bottom: 38px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================
   FOOTER
=================================== */
#noor-footer {
  background: linear-gradient(180deg, transparent, rgba(0,5,15,0.85));
  border-top: 1px solid var(--glass-border);
  padding: 70px 0 30px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-brand-name { font-size: 14px; font-weight: 800; line-height: 1.35; color: var(--text); margin-bottom: 12px; }
.footer-about-text { font-size: 13px; color: var(--muted); line-height: 1.75; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 14px;
  transition: var(--transition);
}
.social-link:hover { background: rgba(0,198,255,0.14); color: var(--accent); border-color: rgba(0,198,255,0.3); }
.footer-col-head { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text); margin-bottom: 18px; }
.footer-list { display: flex; flex-direction: column; gap: 10px; }
.footer-list a { font-size: 13px; color: var(--muted); transition: color .3s; }
.footer-list a:hover { color: var(--accent); }
.contact-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.contact-row-icon { color: var(--accent); font-size: 12px; margin-top: 3px; flex-shrink: 0; width: 16px; }
.contact-row-text { font-size: 13px; color: var(--muted); line-height: 1.55; }
.contact-row-text a { color: var(--muted); transition: color .3s; }
.contact-row-text a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--glass-border); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-copy span { color: var(--accent); }
.footer-legal { font-size: 11px; color: var(--muted); opacity: .55; }

/* ===================================
   BACK TO TOP
=================================== */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff;
  box-shadow: 0 8px 28px rgba(0,198,255,0.4);
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s, box-shadow .3s;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,198,255,0.55); }

/* ===================================
   SCROLL REVEAL
=================================== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ===================================
   WORDPRESS SPECIFIC
=================================== */
.wp-block-image img { border-radius: var(--radius); }
.wp-caption-text { font-size: 12px; color: var(--muted); text-align: center; margin-top: 6px; }
.aligncenter { margin: 0 auto; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1060px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-btn { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); padding: 36px 24px; gap: 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-box { padding: 48px 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-sep { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { justify-content: center; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
  #noor-hero { padding: 90px 5% 60px; }
}
